From fc424612270afdd9e84ca546ef394e58c957f339 Mon Sep 17 00:00:00 2001 From: Nivedita Singh Date: Mon, 13 Jul 2026 10:52:18 +0000 Subject: [PATCH 01/13] added golden for montly population --- .../golden_data/golden_summary_report.csv | 3 + .../monthly_population_estimate/manifest.json | 3 +- .../monthly_population_estimate/preprocess.py | 1420 ++++++++--------- .../validation_config.json | 21 + 4 files changed, 736 insertions(+), 711 deletions(-) create mode 100644 scripts/us_census/pep/monthly_population_estimate/golden_data/golden_summary_report.csv create mode 100644 scripts/us_census/pep/monthly_population_estimate/validation_config.json diff --git a/scripts/us_census/pep/monthly_population_estimate/golden_data/golden_summary_report.csv b/scripts/us_census/pep/monthly_population_estimate/golden_data/golden_summary_report.csv new file mode 100644 index 0000000000..2e6f7d2d57 --- /dev/null +++ b/scripts/us_census/pep/monthly_population_estimate/golden_data/golden_summary_report.csv @@ -0,0 +1,3 @@ +"NumPlaces","StatVar","ScalingFactors","observationPeriods","Units","MeasurementMethods","MinDate" +"1","Count_Person_Civilian_NonInstitutionalized","[]","[P1M]","[]","[CensusPEPSurvey]","1990-04" +"1","Count_Person_ResidesInHousehold","[]","[P1M]","[]","[CensusPEPSurvey]","2010-04" diff --git a/scripts/us_census/pep/monthly_population_estimate/manifest.json b/scripts/us_census/pep/monthly_population_estimate/manifest.json index 9af9b870fc..f071df9cfd 100644 --- a/scripts/us_census/pep/monthly_population_estimate/manifest.json +++ b/scripts/us_census/pep/monthly_population_estimate/manifest.json @@ -19,7 +19,8 @@ "cleaned_csv": "output/USA_Population_Count.csv" } ], - "cron_schedule": "0 7 * * 6" + "cron_schedule": "0 7 * * 6", + "validation_config_file": "validation_config.json" } ] } \ No newline at end of file diff --git a/scripts/us_census/pep/monthly_population_estimate/preprocess.py b/scripts/us_census/pep/monthly_population_estimate/preprocess.py index 401dbbd3fe..50ba9fc209 100644 --- a/scripts/us_census/pep/monthly_population_estimate/preprocess.py +++ b/scripts/us_census/pep/monthly_population_estimate/preprocess.py @@ -1,710 +1,710 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -""" A Script to process USA Census PEP monthly population data - from the datasets in the provided local path. - Typical usage: - 1. python3 preprocess.py - 2. python3 preprocess.py -mode='download' - 3. python3 preprocess.py -mode='process' -""" -from dataclasses import replace -import os -import re -import warnings -import requests -import numpy as np -import time -import json -import sys -from datetime import datetime as dt - -warnings.filterwarnings('ignore') -import pandas as pd -from absl import app -from absl import flags -from absl import logging - -pd.set_option("display.max_columns", None) - -FLAGS = flags.FLAGS -flags.DEFINE_string('mode', '', 'Options: download or process') -_MODULE_DIR = os.path.dirname(os.path.abspath(__file__)) -_INPUT_FILE_PATH = os.path.join(_MODULE_DIR, 'input_files') -default_input_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), - "input_files") -flags.DEFINE_string("input_path", default_input_path, "Import Data File's List") -_HEADER = 1 -_SCALING_FACTOR_TXT_FILE = 1000 - -#Creating folder to store the raw data from source -raw_data_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), - "raw_data") -if not os.path.exists(raw_data_path): - os.mkdir(raw_data_path) - -_MCF_TEMPLATE = ("Node: dcid:{dcid}\n" - "typeOf: dcs:StatisticalVariable\n" - "populationType: dcs:Person\n" - "statType: dcs:measuredValue\n" - "measuredProperty: dcs:count\n" - "{xtra_pvs}\n") - -_TMCF_TEMPLATE = ("Node: E:USA_Population_Count->E{}\n" - "typeOf: dcs:StatVarObservation\n" - "variableMeasured: dcs:{}\n" - "measurementMethod: dcs:{}\n" - "observationAbout: C:USA_Population_Count->Location\n" - "observationDate: C:USA_Population_Count->Date\n" - "observationPeriod: \"P1M\"\n" - "value: C:USA_Population_Count->{}\n") - - -def _extract_year(val: str) -> tuple: - """ - This Methods returns true,year from the value contains year. - Otherwise false,'' - - Arguments: - val (str) : A string value contains data below format - yyyy or yyyy [1] or .MM 1 - Returns: - res (tuple) : Tuple with boolean value and year value or None - """ - # Extracting 0th index value from the val. - # val contains yyyy or yyyy [1] or .MM 1 - val = str(val).strip().split(' ', maxsplit=1)[0] - if val.isnumeric() and len(val) == 4: - return True, val - # Exceptional Case: val contains 20091 - # 2009 is year and 1 is Date. - # Extracting just year from above format - if val.isnumeric() and len(val) == 5: - return True, val[:4] - return False, None - - -def _return_year(col: str) -> str: - """ - This Methods returns year value if col contains year. - Otherwise pandas NA value. - - Arguments: - col (str) : A string value contains data below format - yyyy or yyyy [1] or .MM 1 - Returns: - res (str) : String value with year yyyy or pandas NA value - """ - res, out = _extract_year(col) - if res: - return out - return pd.NA - - -def _return_month(col: str) -> str: - """ - This Methods returns month and date value if col contains month, date. - Otherwise pandas NA value. - - Arguments: - col (str) : A string value contains data below format - yyyy or yyyy [1] or .MM 1 - Returns: - res (str) : String value with month mm or pandas NA value - """ - res = _extract_year(col) - if res[0]: - return pd.NA - return col - - -def _year_range(col: pd.Series) -> str: - """ - This method returns year range from the dataframe - column. - Example: - col(input): - 2000-04 - 2000-05 - 2000-06 - 2000-07 - 2000-08 - ... - 2010-08 - 2010-09 - 2010-10 - 2010-11 - 2010-12 - output: - "2010-2000" - - Arguments: - col (Series) : DataFrame Column of dtype str - - Returns: - year_range (str) : String of Concatenated max and min year values - """ - year_range = None - max_year = max(pd.to_datetime(col, errors='coerce').dt.year) - min_year = min(pd.to_datetime(col, errors='coerce').dt.year) - year_range = str(max_year) + '-' + str(min_year) - return year_range - - -def _replace_name(final_cols: list) -> list: - """ - List provided inorder to change the name as required by output. - - Arguments: - final_cols (list) : List of dtype str - - Returns: - final_cols (list) : List of dtype str - """ - final_cols = [ - "Count_Person_" + (col.replace("Population ", "").replace( - "Population", "").replace(" Plus ", "Or").replace( - "Armed Forces Overseas", "InUSArmedForcesOverseas").replace( - "Household", "ResidesInHousehold").replace( - "Resident", "USResident").replace( - "Noninstitutionalized", - "NonInstitutionalized").strip().replace( - " ", "_").replace("__", "_")) - for col in final_cols - ] - - return final_cols - - -class CensusUSACountryPopulation: - """ - CensusUSACountryPopulation class provides methods - to load the data into dataframes, process, cleans - dataframes and finally creates single cleaned csv - file. - Also provides methods to generate MCF and TMCF - Files using pre-defined templates. - """ - - def __init__(self, input_path: str, csv_file_path: str, mcf_file_path: str, - tmcf_file_path: str) -> None: - self.input_path = input_path #added - self._cleaned_csv_file_path = csv_file_path - self._mcf_file_path = mcf_file_path - self._tmcf_file_path = tmcf_file_path - self._df = None - self._file_name = None - self._scaling_factor = 1 - # Finding the Dir Path - if not os.path.exists(os.path.dirname(self._cleaned_csv_file_path)): - os.mkdir(os.path.dirname(self._cleaned_csv_file_path)) - - def _load_data(self, file: str) -> pd.DataFrame: - """ - This Methods loads the data into pandas Dataframe - using the provided file path and Returns the Dataframe. - - Arguments: - file (str) : String of Dataset File Path - Returns: - df (DataFrame) : DataFrame with loaded dataset - """ - df = None - self._file_name = os.path.basename(file) - if ".xls" in file: - df = pd.read_excel(file) - return df - - def _transform_df(self, df: pd.DataFrame, file: str) -> pd.DataFrame: - """ - This method transforms Dataframe into cleaned DF. - Also, It Creates new columns, remove duplicates, - Standaradize headers to SV's, Mulitply with - scaling factor. - - Arguments: - df (DataFrame) : DataFrame - - Returns: - df (DataFrame) : DataFrame. - """ - final_cols = [col for col in df.columns if 'year' not in col.lower()] - # _return_year("1999") or _return_year("1999 [1]"): 1999 - # _return_year(".07 1"): pd.NA - df['Year'] = df['Year and Month'].apply(_return_year).fillna( - method='ffill', limit=12) - # _return_year("1999") or _return_year("1999 [1]"): pd.NA - # _return_year(".07 1"): 07 - df['Month'] = df['Year and Month'].apply(_return_month) - df.dropna(subset=['Year', 'Month'], inplace=True) - - # Creating new Date Column and Final Date format is yyyy-mm - df['Date'] = df['Year'] + df['Month'] - df['Date'] = df['Date'].str.replace(".", "").str.replace( - " ", "").str.replace("*", "") - df['Date'] = pd.to_datetime(df['Date'], - format='%Y%B%d', - errors="coerce") - # dropping 2010, 2020 overlapping values from different files - # dropping < 2000 files having some text in the value column - - if 'nat-total.xlsx' in file: - df = df[df['Resident Population Plus Armed Forces Overseas'] != - 'with'] - if 'na-est2009-01.xlsx' in file: - df = df[df['Date'] < dt(2010, 4, 1)] - if 'na-est2019-01.xlsx' in file: - df = df[df['Date'] < dt(2020, 4, 1)] - df.dropna(subset=['Date'], inplace=True) - df['Date'] = df['Date'].dt.strftime('%Y-%m') - df.drop_duplicates(subset=['Date'], inplace=True) - - # Deriving new SV Count_Person_InArmedForcesOverseas as - # subtracting Resident Population from - # Resident Population Plus Armed Forces Overseas - df['Count_Person_InUSArmedForcesOverseas'] = df[ - 'Resident Population Plus Armed Forces Overseas'].astype( - 'int') - df['Resident Population'].astype('int') - computed_cols = ["Date", "Count_Person_InUSArmedForcesOverseas"] - - # Selecting Computed and Final Columns from the DF. - df = df[computed_cols + final_cols] - - # Renaming DF Headers with ref to SV's Naming Standards. - final_cols_list = _replace_name(final_cols) - - final_cols_list = computed_cols + final_cols_list - df.columns = final_cols_list - - # Creating Location column with default value country/USA. - # as the dataset is all about USA country level only. - df.insert(1, "Location", "country/USA", True) - df.insert(0, 'date_range', _year_range(df['Date']), True) - return df - - def _transform_data(self, df: pd.DataFrame, file: str) -> None: - """ - This method calls the required functions to transform - the dataframe and saves the final cleaned data in - CSV file format. - - Arguments: - df (DataFrame): Input DataFrame containing the raw data to be transformed. - - Returns: - bool: Returns True if the transformation and file saving are successful, - False if an error occurs during processing. - """ - - try: - df = self._transform_df(df, file) - - if self._df is None: - self._df = df - else: - self._df = pd.concat([self._df, df], ignore_index=True) - - self._df.sort_values(by=['Date', 'date_range'], - ascending=False, - inplace=True) - # Data for 2020 exists in two sources, causing overlap. We'll eliminate duplicates - self._df.drop_duplicates("Date", keep="last", inplace=True) - self._df.drop(['date_range'], axis=1, inplace=True) - float_col = self._df.select_dtypes(include=['float64']) - for col in float_col.columns.values: - try: - self._df[col] = self._df[col].astype('int64') - except: - pass - self._df.to_csv(self._cleaned_csv_file_path, index=False) - except Exception as e: - logging.fatal(f'Error when processing file:-{e}') - return True - - def _generate_mcf(self, df_cols: list) -> None: - """ - This method generates MCF file w.r.t - dataframe headers and defined MCF template - - Arguments: - df_cols (list) : List of DataFrame Columns - - Returns: - None - """ - try: - mcf_nodes = [] - for col in df_cols: - pvs = [] - residence = "" - status = "" - armedf = "" - if col.lower() in ["date", "location"]: - continue - if re.findall('Resident', col): - if re.findall('InUSArmedForcesOverseas', col): - status = "USResident__InUSArmedForcesOverseas" - else: - status = "USResident" - residence = "residentStatus: dcs:" + status - pvs.append(residence) - elif re.findall('ArmedForces', col): - residence = "residentStatus: dcs:" + "InUSArmedForcesOverseas" - pvs.append(residence) - if re.findall('Resides', col): - if re.findall('Household', col): - residence = "residenceType: dcs:" + "Household" - pvs.append(residence) - if re.findall('Civilian', col): - armedf = "armedForcesStatus: dcs:Civilian" - pvs.append(armedf) - if re.findall('NonInstitutionalized', col): - residence = ("institutionalization: dcs:" + - "USC_NonInstitutionalized") - pvs.append(residence) - if re.findall('Count_Person_InUSArmedForcesOverseas', col): - armedf = "armedForcesStatus: dcs:InArmedForces" - pvs.append(armedf) - node = _MCF_TEMPLATE.format(dcid=col, xtra_pvs='\n'.join(pvs)) - mcf_nodes.append(node) - - mcf = '\n'.join(mcf_nodes) - - # Writing Genereated MCF to local path. - with open(self._mcf_file_path, 'w+', encoding='utf-8') as f_out: - f_out.write(mcf.rstrip('\n')) - except Exception as e: - logging.fatal(f'Error when Generating MCF file:-{e}') - - def _generate_tmcf(self, df_cols: list) -> None: - """ - This method generates TMCF file w.r.t - dataframe headers and defined TMCF template - - Arguments: - df_cols (list) : List of DataFrame Columns - - Returns: - None - """ - - i = 0 - measure = "" - tmcf = "" - for col in df_cols: - if col.lower() in ["date", "location"]: - continue - if re.findall('Count_Person_InUSArmedForcesOverseas', col): - measure = "dcAggregate/CensusPEPSurvey" - else: - measure = "CensusPEPSurvey" - tmcf = tmcf + _TMCF_TEMPLATE.format(i, col, measure, col) + "\n" - i = i + 1 - - # Writing Genereated TMCF to local path. - with open(self._tmcf_file_path, 'w+', encoding='utf-8') as f_out: - f_out.write(tmcf.rstrip('\n')) - - def process(self): - """ - This is main method to iterate on each file, - calls defined methods to clean, generate final - cleaned CSV file, MCF file and TMCF file. - """ - #input_path = FLAGS.input_path - ip_files = os.listdir(self.input_path) - self.input_files = [ - self.input_path + os.sep + file for file in ip_files - ] - if len(self.input_files) == 0: - logging.info("No files to process") - return - processed_count = 0 - total_files_to_process = len(self.input_files) - logging.info(f"No of files to be processed {len(self.input_files)}") - for file in self.input_files: - logging.info(f"Processing file: {file}") - df = self._load_data(file) - result = self._transform_data(df, file) - if result: - processed_count += 1 - else: - logging.fatal(f'Failed to process {file}') - logging.info(f"No of files processed {processed_count}") - if total_files_to_process > 0 & (processed_count - == total_files_to_process): - self._generate_mcf(self._df.columns) - self._generate_tmcf(self._df.columns) - else: - logging.fatal( - "Aborting output files as no of files to process not matching processed files" - ) - - -def add_future_year_urls(): - """ - This method scans the download URLs for future years. - """ - global _FILES_TO_DOWNLOAD - with open(os.path.join(_MODULE_DIR, 'input_url.json'), 'r') as inpit_file: - _FILES_TO_DOWNLOAD = json.load(inpit_file) - urls_to_scan = [ - "https://www2.census.gov/programs-surveys/popest/tables/2020-{YEAR}/national/totals/NA-EST{YEAR}-POP.xlsx" - ] - # This method checks for URLs from 2030 down to 2021. If a valid URL is found for any year, the method stops and adds it to the download URL. - # - for url in urls_to_scan: - for future_year in range(2030, 2021, -1): - YEAR = future_year - - url_to_check = url.format(YEAR=YEAR) - try: - check_url = requests.head(url_to_check) - if check_url.status_code == 200: - _FILES_TO_DOWNLOAD.append({"download_path": url_to_check}) - break - - except: - logging.error(f"URL is not accessable {url_to_check}") - - -def _clean_csv_file(df: pd.DataFrame) -> pd.DataFrame: - """ - This method cleans the dataframe loaded from a csv file format. - Also, Performs transformations on the data. - - Args: - df (DataFrame) : DataFrame of csv dataset - - Returns: - df (DataFrame) : Transformed DataFrame for txt dataset. - """ - # Removal of file description and headers in the initial lines of the input - # - # Input Data: - # table with row headers in column A and column headers in rows 3 through 5 (leading dots indicate sub-parts) - # Table 1. Monthly Population Estimates for the United States: April 1, 2000 to December 1, 2010 - # Year and Month Resident Population Resident Population Plus Armed Forces Overseas Civilian Population Civilian Noninstitutionalized Population - # 2000 - # .April 1 28,14,24,602 28,16,52,670 28,02,00,922 27,61,62,490 - # .May 1 28,16,46,806 28,18,76,634 28,04,28,534 27,63,89,920 - # - # Output Data: - # (Made Headers) Year and Month Resident Population Resident Population Plus Armed Forces Overseas Civilian Population Civilian Noninstitutionalized Population - # 2000 - # .April 1 28,14,24,602 28,16,52,670 28,02,00,922 27,61,62,490 - # .May 1 28,16,46,806 28,18,76,634 28,04,28,534 27,63,89,920 - - idx = df[df[0] == "Year and Month"].index - df = df.iloc[idx.values[0] + 1:][:] - df = df.dropna(axis=1, how='all') - cols = [ - "Year and Month", "Resident Population", - "Resident Population Plus Armed Forces Overseas", "Civilian Population", - "Civilian NonInstitutionalized Population" - ] - df.columns = cols - for col in df.columns: - df[col] = df[col].str.replace(",", "") - return df - - -def _clean_txt_file(df: pd.DataFrame) -> pd.DataFrame: - """ - This method cleans the dataframe loaded from a txt file format. - Also, Performs transformations on the data. - - Arguments: - df (DataFrame): DataFrame representing the loaded TXT dataset. - - Returns: - DataFrame: Transformed DataFrame after cleaning operations. - """ - df['Year and Month'] = df[['Year and Month', 'Date']]\ - .apply(_concat_cols, axis=1) - df.drop(columns=['Date'], inplace=True) - for col in df.columns: - df[col] = df[col].str.replace(",", "") - - # The index numbers alotted as per where the columns are present to - # move the columns left - resident_population = 1 - resident_population_plus_armed_forces_overseas = 2 - civilian_population = 3 - civilian_noninstitutionalized_population = 4 - # Moving the row data left upto one index value. - # As the text file has (census) mentioned in some rows and it makes the - # other column's data shift by one place, we need to shift it back to the - # original place. - idx = df[df['Resident Population'] == "(census)"].index - df.iloc[idx, resident_population] = df.iloc[idx][ - "Resident Population Plus Armed Forces Overseas"] - df.iloc[idx, resident_population_plus_armed_forces_overseas] = df.iloc[idx][ - "Civilian Population"] - df.iloc[idx, civilian_population] = df.iloc[idx][ - "Civilian NonInstitutionalized Population"] - df.iloc[idx, civilian_noninstitutionalized_population] = np.nan - return df - - -def _mulitply_scaling_factor(col: pd.Series) -> pd.Series: - """ - This method multiply dataframe column with scaling factor. - - Arguments: - col (Series): A DataFrame column of dtype int, containing the values to be scaled. - - Returns: - Series: A DataFrame column with values multiplied by the scaling factor. - """ - res = col - if col not in [None, np.nan]: - if col.isdigit(): - res = int(col) * _SCALING_FACTOR_TXT_FILE - return res - - -def _concat_cols(col: pd.Series) -> pd.Series: - """ - This method concats two DataFrame column values - with space in-between. - - Args: - col (Series): A pandas Series containing two values from the DataFrame. - - Returns: - res (Series) : Concatenated DataFrame Columns - """ - res = col[0] - if col[1] is None: - return res - res = col[0] + ' ' + col[1] - return res - - -def download_files(): - """ - This method allows to download the input files. - """ - global _FILES_TO_DOWNLOAD - session = requests.session() - max_retry = 5 - for file_to_dowload in _FILES_TO_DOWNLOAD: - file_name = None - url = file_to_dowload['download_path'] - if 'file_name' in file_to_dowload and len( - file_to_dowload['file_name'] > 5): - file_name = file_to_dowload['file_name'] - else: - file_name = url.split('/')[-1] - retry_number = 0 - - is_file_downloaded = False - while is_file_downloaded == False: - try: - df = None - file_name = url.split("/")[-1] - - if ".xls" in url: - df = pd.read_excel(url, header=_HEADER) - df.to_excel(os.path.join(raw_data_path, file_name), - index=False, - header=False, - engine='xlsxwriter') - df.to_excel(os.path.join(_INPUT_FILE_PATH, file_name), - index=False, - header=False, - engine='xlsxwriter') - elif ".csv" in url: - with requests.get(url, stream=True) as response: - response.raise_for_status() - if response.status_code == 200: - with open(os.path.join(raw_data_path, file_name), - 'wb') as f: - f.write(response.content) - file_name = file_name.replace(".csv", ".xlsx") - df = pd.read_csv(url, header=None) - df = _clean_csv_file(df) - df.to_excel(os.path.join(_INPUT_FILE_PATH, file_name), - index=False, - engine='xlsxwriter') - elif ".txt" in url: - with requests.get(url, stream=True) as response: - response.raise_for_status() - if response.status_code == 200: - with open(os.path.join(raw_data_path, file_name), - 'wb') as f: - f.write(response.content) - file_name = file_name.replace(".txt", ".xlsx") - cols = [ - "Year and Month", "Date", "Resident Population", - "Resident Population Plus Armed Forces Overseas", - "Civilian Population", - "Civilian NonInstitutionalized Population" - ] - df = pd.read_table(url, - index_col=False, - delim_whitespace=True, - engine='python', - skiprows=17, - names=cols) - # Skipping 17 rows as the initial 17 rows contains the information about - # the file being used, heading files spread accross multiple lines and - # other irrelevant information like source/contact details. - df = _clean_txt_file(df) - # Multiplying the data with scaling factor 1000. - for col in df.columns: - if "year" not in col.lower(): - df[col] = df[col].apply(_mulitply_scaling_factor) - df.to_excel(os.path.join(_INPUT_FILE_PATH, file_name), - index=False, - engine='xlsxwriter') - - is_file_downloaded = True - logging.info(f"Downloaded file : {url}") - - except Exception as e: - logging.error(f"Retry file download {url} - {e}") - time.sleep(5) - retry_number += 1 - if retry_number > max_retry: - logging.fatal(f"Error downloading {url}") - logging.error("Exit from script") - sys.exit(1) - return True - - -def main(_): - mode = FLAGS.mode - # Defining Output file names - output_path = os.path.join(_MODULE_DIR, "output") - input_path = os.path.join(_MODULE_DIR, "input_files") - if not os.path.exists(input_path): - os.mkdir(input_path) - if not os.path.exists(output_path): - os.mkdir(output_path) - cleaned_csv_path = os.path.join(output_path, "USA_Population_Count.csv") - mcf_path = os.path.join(output_path, "USA_Population_Count.mcf") - tmcf_path = os.path.join(output_path, "USA_Population_Count.tmcf") - download_status = True - if mode == "" or mode == "download": - add_future_year_urls() - download_status = download_files() - if download_status and (mode == "" or mode == "process"): - loader = CensusUSACountryPopulation(FLAGS.input_path, cleaned_csv_path, - mcf_path, tmcf_path) - loader.process() - - -if __name__ == "__main__": - app.run(main) +# Copyright 2022 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +""" A Script to process USA Census PEP monthly population data + from the datasets in the provided local path. + Typical usage: + 1. python3 preprocess.py + 2. python3 preprocess.py -mode='download' + 3. python3 preprocess.py -mode='process' +""" +from dataclasses import replace +import os +import re +import warnings +import requests +import numpy as np +import time +import json +import sys +from datetime import datetime as dt + +warnings.filterwarnings('ignore') +import pandas as pd +from absl import app +from absl import flags +from absl import logging + +pd.set_option("display.max_columns", None) + +FLAGS = flags.FLAGS +flags.DEFINE_string('mode', '', 'Options: download or process') +_MODULE_DIR = os.path.dirname(os.path.abspath(__file__)) +_INPUT_FILE_PATH = os.path.join(_MODULE_DIR, 'input_files') +default_input_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), + "input_files") +flags.DEFINE_string("input_path", default_input_path, "Import Data File's List") +_HEADER = 1 +_SCALING_FACTOR_TXT_FILE = 1000 + +#Creating folder to store the raw data from source +raw_data_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), + "raw_data") +if not os.path.exists(raw_data_path): + os.mkdir(raw_data_path) + +_MCF_TEMPLATE = ("Node: dcid:{dcid}\n" + "typeOf: dcs:StatisticalVariable\n" + "populationType: dcs:Person\n" + "statType: dcs:measuredValue\n" + "measuredProperty: dcs:count\n" + "{xtra_pvs}\n") + +_TMCF_TEMPLATE = ("Node: E:USA_Population_Count->E{}\n" + "typeOf: dcs:StatVarObservation\n" + "variableMeasured: dcs:{}\n" + "measurementMethod: dcs:{}\n" + "observationAbout: C:USA_Population_Count->Location\n" + "observationDate: C:USA_Population_Count->Date\n" + "observationPeriod: \"P1M\"\n" + "value: C:USA_Population_Count->{}\n") + + +def _extract_year(val: str) -> tuple: + """ + This Methods returns true,year from the value contains year. + Otherwise false,'' + + Arguments: + val (str) : A string value contains data below format + yyyy or yyyy [1] or .MM 1 + Returns: + res (tuple) : Tuple with boolean value and year value or None + """ + # Extracting 0th index value from the val. + # val contains yyyy or yyyy [1] or .MM 1 + val = str(val).strip().split(' ', maxsplit=1)[0] + if val.isnumeric() and len(val) == 4: + return True, val + # Exceptional Case: val contains 20091 + # 2009 is year and 1 is Date. + # Extracting just year from above format + if val.isnumeric() and len(val) == 5: + return True, val[:4] + return False, None + + +def _return_year(col: str) -> str: + """ + This Methods returns year value if col contains year. + Otherwise pandas NA value. + + Arguments: + col (str) : A string value contains data below format + yyyy or yyyy [1] or .MM 1 + Returns: + res (str) : String value with year yyyy or pandas NA value + """ + res, out = _extract_year(col) + if res: + return out + return pd.NA + + +def _return_month(col: str) -> str: + """ + This Methods returns month and date value if col contains month, date. + Otherwise pandas NA value. + + Arguments: + col (str) : A string value contains data below format + yyyy or yyyy [1] or .MM 1 + Returns: + res (str) : String value with month mm or pandas NA value + """ + res = _extract_year(col) + if res[0]: + return pd.NA + return col + + +def _year_range(col: pd.Series) -> str: + """ + This method returns year range from the dataframe + column. + Example: + col(input): + 2000-04 + 2000-05 + 2000-06 + 2000-07 + 2000-08 + ... + 2010-08 + 2010-09 + 2010-10 + 2010-11 + 2010-12 + output: + "2010-2000" + + Arguments: + col (Series) : DataFrame Column of dtype str + + Returns: + year_range (str) : String of Concatenated max and min year values + """ + year_range = None + max_year = max(pd.to_datetime(col, errors='coerce').dt.year) + min_year = min(pd.to_datetime(col, errors='coerce').dt.year) + year_range = str(max_year) + '-' + str(min_year) + return year_range + + +def _replace_name(final_cols: list) -> list: + """ + List provided inorder to change the name as required by output. + + Arguments: + final_cols (list) : List of dtype str + + Returns: + final_cols (list) : List of dtype str + """ + final_cols = [ + "Count_Person_" + (col.replace("Population ", "").replace( + "Population", "").replace(" Plus ", "Or").replace( + "Armed Forces Overseas", "InUSArmedForcesOverseas").replace( + "Household", "ResidesInHousehold").replace( + "Resident", "USResident").replace( + "Noninstitutionalized", + "NonInstitutionalized").strip().replace( + " ", "_").replace("__", "_")) + for col in final_cols + ] + + return final_cols + + +class CensusUSACountryPopulation: + """ + CensusUSACountryPopulation class provides methods + to load the data into dataframes, process, cleans + dataframes and finally creates single cleaned csv + file. + Also provides methods to generate MCF and TMCF + Files using pre-defined templates. + """ + + def __init__(self, input_path: str, csv_file_path: str, mcf_file_path: str, + tmcf_file_path: str) -> None: + self.input_path = input_path #added + self._cleaned_csv_file_path = csv_file_path + self._mcf_file_path = mcf_file_path + self._tmcf_file_path = tmcf_file_path + self._df = None + self._file_name = None + self._scaling_factor = 1 + # Finding the Dir Path + if not os.path.exists(os.path.dirname(self._cleaned_csv_file_path)): + os.mkdir(os.path.dirname(self._cleaned_csv_file_path)) + + def _load_data(self, file: str) -> pd.DataFrame: + """ + This Methods loads the data into pandas Dataframe + using the provided file path and Returns the Dataframe. + + Arguments: + file (str) : String of Dataset File Path + Returns: + df (DataFrame) : DataFrame with loaded dataset + """ + df = None + self._file_name = os.path.basename(file) + if ".xls" in file: + df = pd.read_excel(file) + return df + + def _transform_df(self, df: pd.DataFrame, file: str) -> pd.DataFrame: + """ + This method transforms Dataframe into cleaned DF. + Also, It Creates new columns, remove duplicates, + Standaradize headers to SV's, Mulitply with + scaling factor. + + Arguments: + df (DataFrame) : DataFrame + + Returns: + df (DataFrame) : DataFrame. + """ + final_cols = [col for col in df.columns if 'year' not in col.lower()] + # _return_year("1999") or _return_year("1999 [1]"): 1999 + # _return_year(".07 1"): pd.NA + df['Year'] = df['Year and Month'].apply(_return_year).fillna( + method='ffill', limit=12) + # _return_year("1999") or _return_year("1999 [1]"): pd.NA + # _return_year(".07 1"): 07 + df['Month'] = df['Year and Month'].apply(_return_month) + df.dropna(subset=['Year', 'Month'], inplace=True) + + # Creating new Date Column and Final Date format is yyyy-mm + df['Date'] = df['Year'] + df['Month'] + df['Date'] = df['Date'].str.replace(".", "").str.replace( + " ", "").str.replace("*", "") + df['Date'] = pd.to_datetime(df['Date'], + format='%Y%B%d', + errors="coerce") + # dropping 2010, 2020 overlapping values from different files + # dropping < 2000 files having some text in the value column + + if 'nat-total.xlsx' in file: + df = df[df['Resident Population Plus Armed Forces Overseas'] != + 'with'] + if 'na-est2009-01.xlsx' in file: + df = df[df['Date'] < dt(2010, 4, 1)] + if 'na-est2019-01.xlsx' in file: + df = df[df['Date'] < dt(2020, 4, 1)] + df.dropna(subset=['Date'], inplace=True) + df['Date'] = df['Date'].dt.strftime('%Y-%m') + df.drop_duplicates(subset=['Date'], inplace=True) + + # Deriving new SV Count_Person_InArmedForcesOverseas as + # subtracting Resident Population from + # Resident Population Plus Armed Forces Overseas + df['Count_Person_InUSArmedForcesOverseas'] = df[ + 'Resident Population Plus Armed Forces Overseas'].astype( + 'int') - df['Resident Population'].astype('int') + computed_cols = ["Date", "Count_Person_InUSArmedForcesOverseas"] + + # Selecting Computed and Final Columns from the DF. + df = df[computed_cols + final_cols] + + # Renaming DF Headers with ref to SV's Naming Standards. + final_cols_list = _replace_name(final_cols) + + final_cols_list = computed_cols + final_cols_list + df.columns = final_cols_list + + # Creating Location column with default value country/USA. + # as the dataset is all about USA country level only. + df.insert(1, "Location", "country/USA", True) + df.insert(0, 'date_range', _year_range(df['Date']), True) + return df + + def _transform_data(self, df: pd.DataFrame, file: str) -> None: + """ + This method calls the required functions to transform + the dataframe and saves the final cleaned data in + CSV file format. + + Arguments: + df (DataFrame): Input DataFrame containing the raw data to be transformed. + + Returns: + bool: Returns True if the transformation and file saving are successful, + False if an error occurs during processing. + """ + + try: + df = self._transform_df(df, file) + + if self._df is None: + self._df = df + else: + self._df = pd.concat([self._df, df], ignore_index=True) + + self._df.sort_values(by=['Date', 'date_range'], + ascending=False, + inplace=True) + # Data for 2020 exists in two sources, causing overlap. We'll eliminate duplicates + self._df.drop_duplicates("Date", keep="last", inplace=True) + self._df.drop(['date_range'], axis=1, inplace=True) + float_col = self._df.select_dtypes(include=['float64']) + for col in float_col.columns.values: + try: + self._df[col] = self._df[col].astype('int64') + except: + pass + self._df.to_csv(self._cleaned_csv_file_path, index=False) + except Exception as e: + logging.fatal(f'Error when processing file:-{e}') + return True + + def _generate_mcf(self, df_cols: list) -> None: + """ + This method generates MCF file w.r.t + dataframe headers and defined MCF template + + Arguments: + df_cols (list) : List of DataFrame Columns + + Returns: + None + """ + try: + mcf_nodes = [] + for col in df_cols: + pvs = [] + residence = "" + status = "" + armedf = "" + if col.lower() in ["date", "location"]: + continue + if re.findall('Resident', col): + if re.findall('InUSArmedForcesOverseas', col): + status = "USResident__InUSArmedForcesOverseas" + else: + status = "USResident" + residence = "residentStatus: dcs:" + status + pvs.append(residence) + elif re.findall('ArmedForces', col): + residence = "residentStatus: dcs:" + "InUSArmedForcesOverseas" + pvs.append(residence) + if re.findall('Resides', col): + if re.findall('Household', col): + residence = "residenceType: dcs:" + "Household" + pvs.append(residence) + if re.findall('Civilian', col): + armedf = "armedForcesStatus: dcs:Civilian" + pvs.append(armedf) + if re.findall('NonInstitutionalized', col): + residence = ("institutionalization: dcs:" + + "USC_NonInstitutionalized") + pvs.append(residence) + if re.findall('Count_Person_InUSArmedForcesOverseas', col): + armedf = "armedForcesStatus: dcs:InArmedForces" + pvs.append(armedf) + node = _MCF_TEMPLATE.format(dcid=col, xtra_pvs='\n'.join(pvs)) + mcf_nodes.append(node) + + mcf = '\n'.join(mcf_nodes) + + # Writing Genereated MCF to local path. + with open(self._mcf_file_path, 'w+', encoding='utf-8') as f_out: + f_out.write(mcf.rstrip('\n')) + except Exception as e: + logging.fatal(f'Error when Generating MCF file:-{e}') + + def _generate_tmcf(self, df_cols: list) -> None: + """ + This method generates TMCF file w.r.t + dataframe headers and defined TMCF template + + Arguments: + df_cols (list) : List of DataFrame Columns + + Returns: + None + """ + + i = 0 + measure = "" + tmcf = "" + for col in df_cols: + if col.lower() in ["date", "location"]: + continue + if re.findall('Count_Person_InUSArmedForcesOverseas', col): + measure = "dcAggregate/CensusPEPSurvey" + else: + measure = "CensusPEPSurvey" + tmcf = tmcf + _TMCF_TEMPLATE.format(i, col, measure, col) + "\n" + i = i + 1 + + # Writing Genereated TMCF to local path. + with open(self._tmcf_file_path, 'w+', encoding='utf-8') as f_out: + f_out.write(tmcf.rstrip('\n')) + + def process(self): + """ + This is main method to iterate on each file, + calls defined methods to clean, generate final + cleaned CSV file, MCF file and TMCF file. + """ + #input_path = FLAGS.input_path + ip_files = os.listdir(self.input_path) + self.input_files = [ + self.input_path + os.sep + file for file in ip_files + ] + if len(self.input_files) == 0: + logging.info("No files to process") + return + processed_count = 0 + total_files_to_process = len(self.input_files) + logging.info(f"No of files to be processed {len(self.input_files)}") + for file in self.input_files: + logging.info(f"Processing file: {file}") + df = self._load_data(file) + result = self._transform_data(df, file) + if result: + processed_count += 1 + else: + logging.fatal(f'Failed to process {file}') + logging.info(f"No of files processed {processed_count}") + if total_files_to_process > 0 & (processed_count + == total_files_to_process): + self._generate_mcf(self._df.columns) + self._generate_tmcf(self._df.columns) + else: + logging.fatal( + "Aborting output files as no of files to process not matching processed files" + ) + + +def add_future_year_urls(): + """ + This method scans the download URLs for future years. + """ + global _FILES_TO_DOWNLOAD + with open(os.path.join(_MODULE_DIR, 'input_url.json'), 'r') as inpit_file: + _FILES_TO_DOWNLOAD = json.load(inpit_file) + urls_to_scan = [ + "https://www2.census.gov/programs-surveys/popest/tables/2020-{YEAR}/national/totals/NA-EST{YEAR}-POP.xlsx" + ] + # This method checks for URLs from 2030 down to 2021. If a valid URL is found for any year, the method stops and adds it to the download URL. + # + for url in urls_to_scan: + for future_year in range(2030, 2021, -1): + YEAR = future_year + + url_to_check = url.format(YEAR=YEAR) + try: + check_url = requests.head(url_to_check) + if check_url.status_code == 200: + _FILES_TO_DOWNLOAD.append({"download_path": url_to_check}) + break + + except: + logging.error(f"URL is not accessable {url_to_check}") + + +def _clean_csv_file(df: pd.DataFrame) -> pd.DataFrame: + """ + This method cleans the dataframe loaded from a csv file format. + Also, Performs transformations on the data. + + Args: + df (DataFrame) : DataFrame of csv dataset + + Returns: + df (DataFrame) : Transformed DataFrame for txt dataset. + """ + # Removal of file description and headers in the initial lines of the input + # + # Input Data: + # table with row headers in column A and column headers in rows 3 through 5 (leading dots indicate sub-parts) + # Table 1. Monthly Population Estimates for the United States: April 1, 2000 to December 1, 2010 + # Year and Month Resident Population Resident Population Plus Armed Forces Overseas Civilian Population Civilian Noninstitutionalized Population + # 2000 + # .April 1 28,14,24,602 28,16,52,670 28,02,00,922 27,61,62,490 + # .May 1 28,16,46,806 28,18,76,634 28,04,28,534 27,63,89,920 + # + # Output Data: + # (Made Headers) Year and Month Resident Population Resident Population Plus Armed Forces Overseas Civilian Population Civilian Noninstitutionalized Population + # 2000 + # .April 1 28,14,24,602 28,16,52,670 28,02,00,922 27,61,62,490 + # .May 1 28,16,46,806 28,18,76,634 28,04,28,534 27,63,89,920 + + idx = df[df[0] == "Year and Month"].index + df = df.iloc[idx.values[0] + 1:][:] + df = df.dropna(axis=1, how='all') + cols = [ + "Year and Month", "Resident Population", + "Resident Population Plus Armed Forces Overseas", "Civilian Population", + "Civilian NonInstitutionalized Population" + ] + df.columns = cols + for col in df.columns: + df[col] = df[col].str.replace(",", "") + return df + + +def _clean_txt_file(df: pd.DataFrame) -> pd.DataFrame: + """ + This method cleans the dataframe loaded from a txt file format. + Also, Performs transformations on the data. + + Arguments: + df (DataFrame): DataFrame representing the loaded TXT dataset. + + Returns: + DataFrame: Transformed DataFrame after cleaning operations. + """ + df['Year and Month'] = df[['Year and Month', 'Date']]\ + .apply(_concat_cols, axis=1) + df.drop(columns=['Date'], inplace=True) + for col in df.columns: + df[col] = df[col].str.replace(",", "") + + # The index numbers alotted as per where the columns are present to + # move the columns left + resident_population = 1 + resident_population_plus_armed_forces_overseas = 2 + civilian_population = 3 + civilian_noninstitutionalized_population = 4 + # Moving the row data left upto one index value. + # As the text file has (census) mentioned in some rows and it makes the + # other column's data shift by one place, we need to shift it back to the + # original place. + idx = df[df['Resident Population'] == "(census)"].index + df.iloc[idx, resident_population] = df.iloc[idx][ + "Resident Population Plus Armed Forces Overseas"] + df.iloc[idx, resident_population_plus_armed_forces_overseas] = df.iloc[idx][ + "Civilian Population"] + df.iloc[idx, civilian_population] = df.iloc[idx][ + "Civilian NonInstitutionalized Population"] + df.iloc[idx, civilian_noninstitutionalized_population] = np.nan + return df + + +def _mulitply_scaling_factor(col: pd.Series) -> pd.Series: + """ + This method multiply dataframe column with scaling factor. + + Arguments: + col (Series): A DataFrame column of dtype int, containing the values to be scaled. + + Returns: + Series: A DataFrame column with values multiplied by the scaling factor. + """ + res = col + if col not in [None, np.nan]: + if col.isdigit(): + res = int(col) * _SCALING_FACTOR_TXT_FILE + return res + + +def _concat_cols(col: pd.Series) -> pd.Series: + """ + This method concats two DataFrame column values + with space in-between. + + Args: + col (Series): A pandas Series containing two values from the DataFrame. + + Returns: + res (Series) : Concatenated DataFrame Columns + """ + res = col[0] + if col[1] is None: + return res + res = col[0] + ' ' + col[1] + return res + + +def download_files(): + """ + This method allows to download the input files. + """ + global _FILES_TO_DOWNLOAD + session = requests.session() + max_retry = 5 + for file_to_dowload in _FILES_TO_DOWNLOAD: + file_name = None + url = file_to_dowload['download_path'] + if 'file_name' in file_to_dowload and len( + file_to_dowload['file_name'] > 5): + file_name = file_to_dowload['file_name'] + else: + file_name = url.split('/')[-1] + retry_number = 0 + + is_file_downloaded = False + while is_file_downloaded == False: + try: + df = None + file_name = url.split("/")[-1] + + if ".xls" in url: + df = pd.read_excel(url, header=_HEADER) + df.to_excel(os.path.join(raw_data_path, file_name), + index=False, + header=False, + engine='xlsxwriter') + df.to_excel(os.path.join(_INPUT_FILE_PATH, file_name), + index=False, + header=False, + engine='xlsxwriter') + elif ".csv" in url: + with requests.get(url, stream=True) as response: + response.raise_for_status() + if response.status_code == 200: + with open(os.path.join(raw_data_path, file_name), + 'wb') as f: + f.write(response.content) + file_name = file_name.replace(".csv", ".xlsx") + df = pd.read_csv(url, header=None) + df = _clean_csv_file(df) + df.to_excel(os.path.join(_INPUT_FILE_PATH, file_name), + index=False, + engine='xlsxwriter') + elif ".txt" in url: + with requests.get(url, stream=True) as response: + response.raise_for_status() + if response.status_code == 200: + with open(os.path.join(raw_data_path, file_name), + 'wb') as f: + f.write(response.content) + file_name = file_name.replace(".txt", ".xlsx") + cols = [ + "Year and Month", "Date", "Resident Population", + "Resident Population Plus Armed Forces Overseas", + "Civilian Population", + "Civilian NonInstitutionalized Population" + ] + df = pd.read_table(url, + index_col=False, + sep=r'\s+', + engine='python', + skiprows=17, + names=cols) + # Skipping 17 rows as the initial 17 rows contains the information about + # the file being used, heading files spread accross multiple lines and + # other irrelevant information like source/contact details. + df = _clean_txt_file(df) + # Multiplying the data with scaling factor 1000. + for col in df.columns: + if "year" not in col.lower(): + df[col] = df[col].apply(_mulitply_scaling_factor) + df.to_excel(os.path.join(_INPUT_FILE_PATH, file_name), + index=False, + engine='xlsxwriter') + + is_file_downloaded = True + logging.info(f"Downloaded file : {url}") + + except Exception as e: + logging.error(f"Retry file download {url} - {e}") + time.sleep(5) + retry_number += 1 + if retry_number > max_retry: + logging.fatal(f"Error downloading {url}") + logging.error("Exit from script") + sys.exit(1) + return True + + +def main(_): + mode = FLAGS.mode + # Defining Output file names + output_path = os.path.join(_MODULE_DIR, "output") + input_path = os.path.join(_MODULE_DIR, "input_files") + if not os.path.exists(input_path): + os.mkdir(input_path) + if not os.path.exists(output_path): + os.mkdir(output_path) + cleaned_csv_path = os.path.join(output_path, "USA_Population_Count.csv") + mcf_path = os.path.join(output_path, "USA_Population_Count.mcf") + tmcf_path = os.path.join(output_path, "USA_Population_Count.tmcf") + download_status = True + if mode == "" or mode == "download": + add_future_year_urls() + download_status = download_files() + if download_status and (mode == "" or mode == "process"): + loader = CensusUSACountryPopulation(FLAGS.input_path, cleaned_csv_path, + mcf_path, tmcf_path) + loader.process() + + +if __name__ == "__main__": + app.run(main) diff --git a/scripts/us_census/pep/monthly_population_estimate/validation_config.json b/scripts/us_census/pep/monthly_population_estimate/validation_config.json new file mode 100644 index 0000000000..e3f52fbeeb --- /dev/null +++ b/scripts/us_census/pep/monthly_population_estimate/validation_config.json @@ -0,0 +1,21 @@ +{ + "schema_version": "1.0", + "rules": [ + { + "rule_id": "check_deleted_records_percent", + "description": "Checks that the percentage of deleted points is within the threshold.", + "validator": "DELETED_RECORDS_PERCENT", + "params": { + "threshold": 0.1 + } + }, + { + "rule_id": "check_goldens_summary_report", + "validator": "GOLDENS_CHECK", + "params": { + "golden_files": "../../../../golden_data/golden_summary_report.csv" + } + } + ] +} + From 89417d73ba6b83a727a47b4b7e46f30183087580 Mon Sep 17 00:00:00 2001 From: Nivedita Singh Date: Mon, 13 Jul 2026 11:22:49 +0000 Subject: [PATCH 02/13] added golden for us_pep_sex --- .../us_census/pep/us_pep_sex/manifest.json | 3 +- .../output/new_rec_gen_sa/report.json | 66 + .../output/new_rec_gen_sa/summary_report.csv | 3 + .../output/new_rec_gen_sa/summary_report.html | 487 ++++ ...able_mcf_nodes_population_estimate_sex.mcf | 2442 +++++++++++++++++ .../output/population_estimate_sex.csv | 223 ++ .../output/population_estimate_sex.mcf | 13 + .../output/population_estimate_sex.tmcf | 8 + scripts/us_census/pep/us_pep_sex/process.py | 99 +- .../pep/us_pep_sex/validation_config.json | 22 + 10 files changed, 3325 insertions(+), 41 deletions(-) create mode 100644 scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/report.json create mode 100644 scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/summary_report.csv create mode 100644 scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/summary_report.html create mode 100644 scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/table_mcf_nodes_population_estimate_sex.mcf create mode 100644 scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.csv create mode 100644 scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.mcf create mode 100644 scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.tmcf create mode 100644 scripts/us_census/pep/us_pep_sex/validation_config.json diff --git a/scripts/us_census/pep/us_pep_sex/manifest.json b/scripts/us_census/pep/us_pep_sex/manifest.json index 4744566d3f..57568dcd5a 100644 --- a/scripts/us_census/pep/us_pep_sex/manifest.json +++ b/scripts/us_census/pep/us_pep_sex/manifest.json @@ -19,7 +19,8 @@ "cleaned_csv": "output/population_estimate_sex.csv" } ], - "cron_schedule": "0 03 * * 1" + "cron_schedule": "0 03 * * 1", + "validation_config_file": "validation_config.json" } ] } \ No newline at end of file diff --git a/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/report.json b/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/report.json new file mode 100644 index 0000000000..25038870d8 --- /dev/null +++ b/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/report.json @@ -0,0 +1,66 @@ +{ + "levelSummary": { + "LEVEL_INFO": { + "counters": { + "NumRowSuccesses": "222", + "NumPVSuccesses": "1998", + "Existence_NumChecks": "2220", + "NumNodeSuccesses": "222", + "Existence_NumDcCalls": "1" + } + }, + "LEVEL_WARNING": { + "counters": { + "StatsCheck_Data_Holes": "2" + } + } + }, + "statsCheckSummary": [{ + "placeDcid": "country/USA", + "statVarDcid": "Count_Person_Female", + "measurementMethod": "dcAggregate/CensusPEPSurvey_PartialAggregate", + "observationPeriod": "P1Y", + "scalingFactor": "", + "unit": "", + "validationCounters": [{ + "counterKey": "StatsCheck_Data_Holes", + "additionalDetails": "Possible data hole found. Dates in this series: 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1909, 1910, 1911, 1912, 1913, 1914, 1915, 1916, 1917, 1918, 1919, 1920, 1921, 1922, 1923, 1924, 1925, 1926, 1927, 1928, 1929, 1930, 1931, 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1946, 1947, 1948, 1949, 1950, 1951, 1952, 1953, 1954, 1955, 1956, 1957, 1958, 1959, 1960, 1961, 1962, 1963, 1964, 1965, 1966, 1967, 1968, 1969, 1970, 1971, 1972, 1973, 1974, 1975, 1976, 1977, 1978, 1979, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020" + }] + }, { + "placeDcid": "country/USA", + "statVarDcid": "Count_Person_Male", + "measurementMethod": "dcAggregate/CensusPEPSurvey_PartialAggregate", + "observationPeriod": "P1Y", + "scalingFactor": "", + "unit": "", + "validationCounters": [{ + "counterKey": "StatsCheck_Data_Holes", + "additionalDetails": "Possible data hole found. Dates in this series: 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1909, 1910, 1911, 1912, 1913, 1914, 1915, 1916, 1917, 1918, 1919, 1920, 1921, 1922, 1923, 1924, 1925, 1926, 1927, 1928, 1929, 1930, 1931, 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1946, 1947, 1948, 1949, 1950, 1951, 1952, 1953, 1954, 1955, 1956, 1957, 1958, 1959, 1960, 1961, 1962, 1963, 1964, 1965, 1966, 1967, 1968, 1969, 1970, 1971, 1972, 1973, 1974, 1975, 1976, 1977, 1978, 1979, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020" + }] + }], + "commandArgs": { + "existenceChecks": true, + "resolution": "RESOLUTION_MODE_LOCAL", + "numThreads": 1, + "statChecks": true, + "observationAbout": true, + "allowNanSvobs": false, + "checkMeasurementResult": false, + "coordinatesResolution": false, + "includeRuntimeMetadata": true, + "inputFiles": ["population_estimate_sex.tmcf", "population_estimate_sex.csv"], + "delimiter": "," + }, + "runtimeMetadata": { + "startTimeMillis": "1783925730493", + "endTimeMillis": "1783925732456", + "username": "niveditasing", + "hostname": "nivedita.c.googlers.com", + "osName": "Linux", + "osVersion": "6.18.14-1rodete3-amd64", + "javaVersion": "26.0.1", + "toolVersion": "0.1", + "toolBuildTimestamp": "2025-08-15T04:10:36+0000", + "toolGitCommitHash": "baee738" + } +} \ No newline at end of file diff --git a/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/summary_report.csv b/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/summary_report.csv new file mode 100644 index 0000000000..ffdf60e444 --- /dev/null +++ b/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/summary_report.csv @@ -0,0 +1,3 @@ +StatVar,NumPlaces,NumObservations,MinValue,MaxValue,NumObservationsDates,MinDate,MaxDate,MeasurementMethods,Units,ScalingFactors,observationPeriods +Count_Person_Female,1,111,3.7227E7,1.67227921E8,111,1900,2020,[dcAggregate/CensusPEPSurvey_PartialAggregate],[],[],[P1Y] +Count_Person_Male,1,111,3.8867E7,1.62256202E8,111,1900,2020,[dcAggregate/CensusPEPSurvey_PartialAggregate],[],[],[P1Y] diff --git a/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/summary_report.html b/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/summary_report.html new file mode 100644 index 0000000000..a6ba135007 --- /dev/null +++ b/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/summary_report.html @@ -0,0 +1,487 @@ + + + Summary Report + + + + + + + + + + +
+ Go to Top +
+

Summary Report

+

Table of Contents

+ + + + +
+

+ Import Run Details +

+ +

Runtime Information

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Report Generated AtJul 13, 2026
Generation Duration1.963 seconds
Generated Byniveditasing
Hostnivedita.c.googlers.com
Operating SystemLinux 6.18.14-1rodete3-amd64
Java Version26.0.1
Tool Version0.1
Tool Git Commit Hashbaee738
Tool Build Time2025-08-15T04:10:36+0000
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Existence Checks Enabledyes
Resolution ModeRESOLUTION_MODE_LOCAL
Num Threads1
Stat Checks Enabledyes
Sample Places Entered
Input Files +
population_estimate_sex.tmcf
+
population_estimate_sex.csv
+
CSV Delimiter,
+
+ + +
+

+ Counters +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Counter NameNum Occurences
LEVEL_INFO
NumRowSuccesses222
NumPVSuccesses1,998
Existence_NumChecks2,220
NumNodeSuccesses222
Existence_NumDcCalls1
LEVEL_WARNING
StatsCheck_Data_Holes2
+
+ +
+

+ StatVarObservations by StatVar +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
StatVarNum PlacesNum ObservationsMin ValueMax ValueNum Observation DatesMin DateMax DateMeasurement MethodsUnitsScaling FactorsObservation Periods
Count_Person_Female111137,227,000167,227,92111119002020 +
dcAggregate/CensusPEPSurvey_PartialAggregate
+
+
+
+
+
+
P1Y
+
Count_Person_Male111138,867,000162,256,20211119002020 +
dcAggregate/CensusPEPSurvey_PartialAggregate
+
+
+
+
+
+
P1Y
+
+
+
+

+ Series Summaries for Sample Places +

+ +
+ United States (country/USA) + Open this place (country/USA) in Data Commons browser. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
StatVarNum ObservationsDatesCorresponding ValuesMeasurement MethodUnitScaling FactorObservation PeriodTime Series Chart
Count_Person_Female1111900 | 1901 | 1902 | 1903 | 1904 | 1905 | 1906 | 1907 | 1908 | 1909 | 1910 | 1911 | 1912 | 1913 | 1914 | 1915 | 1916 | 1917 | 1918 | 1919 | 1920 | 1921 | 1922 | 1923 | 1924 | 1925 | 1926 | 1927 | 1928 | 1929 | 1930 | 1931 | 1932 | 1933 | 1934 | 1935 | 1936 | 1937 | 1938 | 1939 | 1940 | 1941 | 1942 | 1943 | 1944 | 1945 | 1946 | 1947 | 1948 | 1949 | 1950 | 1951 | 1952 | 1953 | 1954 | 1955 | 1956 | 1957 | 1958 | 1959 | 1960 | 1961 | 1962 | 1963 | 1964 | 1965 | 1966 | 1967 | 1968 | 1969 | 1970 | 1971 | 1972 | 1973 | 1974 | 1975 | 1976 | 1977 | 1978 | 1979 | 1990 | 1991 | 1992 | 1993 | 1994 | 1995 | 1996 | 1997 | 1998 | 1999 | 2000 | 2001 | 2002 | 2003 | 2004 | 2005 | 2006 | 2007 | 2008 | 2009 | 2010 | 2011 | 2012 | 2013 | 2014 | 2015 | 2016 | 2017 | 2018 | 2019 | 202037227000 | 37935000 | 38680000 | 39370000 | 40077000 | 40857000 | 41609000 | 42326000 | 43116000 | 43945000 | 44853000 | 45573000 | 46310000 | 47268000 | 48228000 | 48973000 | 49727000 | 50480000 | 51234000 | 51411000 | 52170000 | 53246000 | 54163000 | 55086000 | 56124000 | 57016000 | 57809000 | 58638000 | 59408000 | 60087000 | 60780224 | 61314145 | 61770334 | 62194754 | 62647577 | 63140344 | 63593797 | 64035032 | 64589578 | 65166379 | 65770083 | 66482338 | 67262824 | 68193612 | 69019626 | 69893092 | 70757395 | 72180179 | 73501618 | 74852695 | 76422405 | 77776626 | 79180550 | 80569882 | 82053150 | 83567564 | 85123526 | 86735704 | 88276799 | 89834194 | 91351647 | 92951562 | 94471618 | 95938865 | 97371039 | 98694462 | 99940627 | 101148174 | 102279795 | 103390000 | 104698298 | 106093671 | 107305289 | 108402337 | 109462818 | 110607234 | 111726560 | 112904877 | 114160965 | 115471526 | 127969673 | 129623972 | 131314217 | 132989513 | 134566414 | 136097660 | 137621440 | 139209099 | 140759913 | 142272592 | 143719004 | 145077463 | 146394634 | 147679036 | 148977286 | 150319521 | 151732647 | 153166353 | 154604015 | 155964075 | 157249665 | 158370501 | 159480635 | 160545893 | 161690519 | 162832151 | 163986062 | 165008683 | 165877686 | 166637617 | 167227921 +
dcAggregate/CensusPEPSurvey_PartialAggregate
+
+
+
+
+
+
P1Y
+
+ + + +19001910192019301940195019601970198019902000201020204E76E78E71E81.2E81.4E81.6E8
Count_Person_Male1111900 | 1901 | 1902 | 1903 | 1904 | 1905 | 1906 | 1907 | 1908 | 1909 | 1910 | 1911 | 1912 | 1913 | 1914 | 1915 | 1916 | 1917 | 1918 | 1919 | 1920 | 1921 | 1922 | 1923 | 1924 | 1925 | 1926 | 1927 | 1928 | 1929 | 1930 | 1931 | 1932 | 1933 | 1934 | 1935 | 1936 | 1937 | 1938 | 1939 | 1940 | 1941 | 1942 | 1943 | 1944 | 1945 | 1946 | 1947 | 1948 | 1949 | 1950 | 1951 | 1952 | 1953 | 1954 | 1955 | 1956 | 1957 | 1958 | 1959 | 1960 | 1961 | 1962 | 1963 | 1964 | 1965 | 1966 | 1967 | 1968 | 1969 | 1970 | 1971 | 1972 | 1973 | 1974 | 1975 | 1976 | 1977 | 1978 | 1979 | 1990 | 1991 | 1992 | 1993 | 1994 | 1995 | 1996 | 1997 | 1998 | 1999 | 2000 | 2001 | 2002 | 2003 | 2004 | 2005 | 2006 | 2007 | 2008 | 2009 | 2010 | 2011 | 2012 | 2013 | 2014 | 2015 | 2016 | 2017 | 2018 | 2019 | 202038867000 | 39649000 | 40483000 | 41262000 | 42089000 | 42965000 | 43841000 | 44682000 | 45594000 | 46545000 | 47554000 | 48290000 | 49025000 | 49957000 | 50883000 | 51573000 | 52234000 | 52788000 | 51974000 | 53103000 | 54291000 | 55292000 | 55886000 | 56861000 | 57985000 | 58813000 | 59588000 | 60397000 | 61101000 | 61680000 | 62296517 | 62725503 | 63070137 | 63384009 | 63726196 | 64109888 | 64459383 | 64789797 | 65235361 | 65713339 | 66352363 | 66920133 | 67596729 | 68545741 | 69377719 | 70035073 | 70631171 | 71945892 | 73129684 | 74335435 | 75849012 | 77101263 | 78372190 | 79614310 | 80972704 | 82363638 | 83779505 | 85248426 | 86605105 | 87995434 | 89319511 | 90739919 | 92066119 | 93302933 | 94517752 | 95608501 | 96619711 | 97563882 | 98426257 | 99286946 | 100353876 | 101567006 | 102590732 | 103506451 | 104391110 | 105365965 | 106308604 | 107334548 | 108423580 | 109583961 | 122162221 | 123868531 | 125579972 | 127265839 | 128869259 | 130459431 | 132045951 | 133702661 | 135355375 | 137022121 | 138443407 | 139891492 | 141230559 | 142428897 | 143828012 | 145197078 | 146647265 | 148064854 | 149489951 | 150807454 | 152077478 | 153212980 | 154397027 | 155514054 | 156695810 | 157906843 | 159085693 | 160113445 | 160960513 | 161692336 | 162256202 +
dcAggregate/CensusPEPSurvey_PartialAggregate
+
+
+
+
+
+
P1Y
+
+ + + +19001910192019301940195019601970198019902000201020204E76E78E71E81.2E81.4E81.6E8
+
+
+ + + + \ No newline at end of file diff --git a/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/table_mcf_nodes_population_estimate_sex.mcf b/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/table_mcf_nodes_population_estimate_sex.mcf new file mode 100644 index 0000000000..f6535818dd --- /dev/null +++ b/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/table_mcf_nodes_population_estimate_sex.mcf @@ -0,0 +1,2442 @@ +Node: population_estimate_sex/E0/736604b9-4425-bb7d-c788-9a8fde278f50 +observationDate: 1900 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 38867000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1900value=38867000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/gbwsvx3cq28nc" + +Node: population_estimate_sex/E0/95478b8e-9b15-7ea1-d9ac-a461fec317dd +observationDate: 1901 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 39649000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1901value=39649000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/23s5qjbflpzhc" + +Node: population_estimate_sex/E0/4938d26d-30e7-3bc3-2d73-6f183ce77e67 +observationDate: 1902 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 40483000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1902value=40483000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/y171j1c07xec1" + +Node: population_estimate_sex/E0/f7546b99-2ac9-998a-d369-59bd6c32ad62 +observationDate: 1903 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 41262000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1903value=41262000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/0jznt229e9ev1" + +Node: population_estimate_sex/E0/c38e7315-334b-2e47-34dd-9360aa44c6e2 +observationDate: 1904 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 42089000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1904value=42089000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/k1hfddv2endtg" + +Node: population_estimate_sex/E0/7bdea8d8-96ec-9ce0-f5d3-2df21ed03af3 +observationDate: 1905 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 42965000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1905value=42965000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/rdmj3w5d5y9vg" + +Node: population_estimate_sex/E0/6e836869-4e42-02e4-87b4-fbf38b39e623 +observationDate: 1906 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 43841000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1906value=43841000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/5gthkyp4x8343" + +Node: population_estimate_sex/E0/514e3066-5151-cfa7-0776-52b47550ebf7 +observationDate: 1907 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 44682000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1907value=44682000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/y9etrcn2ed1f5" + +Node: population_estimate_sex/E0/f9e603d4-cc76-5ee3-c32c-3f8aaad3d0f3 +observationDate: 1908 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 45594000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1908value=45594000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/ne2r3vd58se51" + +Node: population_estimate_sex/E0/338f8ab2-78f7-8a43-78c6-14ebecd2e109 +observationDate: 1909 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 46545000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1909value=46545000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/1x109c87vx19c" + +Node: population_estimate_sex/E0/f8232015-c89f-e96f-3648-38d85e7446b7 +observationDate: 1910 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 47554000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1910value=47554000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/8p48bgf9kspr6" + +Node: population_estimate_sex/E0/33d47208-1db0-3dcc-3c77-f459ddcb3663 +observationDate: 1911 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 48290000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1911value=48290000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/bez1zg3j84yff" + +Node: population_estimate_sex/E0/780d868e-233c-61c4-52e2-cb8a5a7c1c38 +observationDate: 1912 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 49025000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1912value=49025000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/rlcenmsygsme4" + +Node: population_estimate_sex/E0/1b116854-34e1-09c9-7a5b-2c86a4e5fbd5 +observationDate: 1913 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 49957000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1913value=49957000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/q12r1jnfd1myc" + +Node: population_estimate_sex/E0/0023a201-b5eb-ce29-e754-9c343038006e +observationDate: 1914 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 50883000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1914value=50883000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/yze1et1zlp3j4" + +Node: population_estimate_sex/E0/a0e20d63-1b09-e638-2bd7-1e0777228de0 +observationDate: 1915 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 51573000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1915value=51573000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/9yrccgk7befg6" + +Node: population_estimate_sex/E0/b7bb5768-d615-e914-6e1d-102208791e93 +observationDate: 1916 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 52234000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1916value=52234000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/l6g57s7m68ewh" + +Node: population_estimate_sex/E0/94b433d4-ad26-0982-5685-4e91519ca311 +observationDate: 1917 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 52788000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1917value=52788000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/mb7x5xhqmrrbh" + +Node: population_estimate_sex/E0/9b2ef32a-ffd9-2769-21a8-62261903481f +observationDate: 1918 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 51974000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1918value=51974000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/cfhgnzkkb93j5" + +Node: population_estimate_sex/E0/33d0d769-dc77-8466-59f2-0076dce15cd6 +observationDate: 1919 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 53103000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1919value=53103000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/bct70kr4lggf3" + +Node: population_estimate_sex/E0/4869a928-e627-9227-0a96-3a31fa155797 +observationDate: 1920 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 54291000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1920value=54291000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/9zb3vns1gvrn" + +Node: population_estimate_sex/E0/fa17abdd-4b9f-44dd-1347-923928290351 +observationDate: 1921 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 55292000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1921value=55292000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/ncyt7hwr120j6" + +Node: population_estimate_sex/E0/0318dee9-92a9-ff81-7508-ed6b6c8a05f0 +observationDate: 1922 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 55886000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1922value=55886000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/3f3hw9x9191s1" + +Node: population_estimate_sex/E0/0a91bd92-c917-4700-c427-5f23fff4d4a6 +observationDate: 1923 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 56861000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1923value=56861000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/mrmf30m8twqzg" + +Node: population_estimate_sex/E0/655aeb58-004c-7050-984c-95c7b453465d +observationDate: 1924 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 57985000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1924value=57985000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/mfthfrpcpbw24" + +Node: population_estimate_sex/E0/3d7f3249-5d62-e572-dd8a-cd4ec5511973 +observationDate: 1925 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 58813000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1925value=58813000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/l4eey234yfq8f" + +Node: population_estimate_sex/E0/4df76fbe-9c33-6d17-66d1-a1d1bc836f9f +observationDate: 1926 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 59588000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1926value=59588000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/151rxl9t70l43" + +Node: population_estimate_sex/E0/2521bd74-c1ef-b0be-a40d-9b4b84ab265a +observationDate: 1927 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 60397000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1927value=60397000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/h5lmsl6l9npdb" + +Node: population_estimate_sex/E0/d2d903b4-8aee-6948-fb67-e65e484fda90 +observationDate: 1928 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 61101000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1928value=61101000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/2p2mjq5k0xx45" + +Node: population_estimate_sex/E0/06d17688-9033-7556-865c-319f4d87078b +observationDate: 1929 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 61680000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1929value=61680000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/mctnjdzv163s7" + +Node: population_estimate_sex/E0/82d26a55-2ca5-e8e6-5a3c-e19c8934c4f7 +observationDate: 1930 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 62296517 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1930value=62296517observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/56mg4mxdpbxtg" + +Node: population_estimate_sex/E0/85085113-2f4d-021e-c11d-6893d9ed4b0e +observationDate: 1931 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 62725503 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1931value=62725503observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/ew3e189dczgy8" + +Node: population_estimate_sex/E0/ad5cd01a-55ff-ba59-175e-dfd69082058a +observationDate: 1932 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 63070137 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1932value=63070137observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/l1dwyq7zjv5w9" + +Node: population_estimate_sex/E0/f2a30a2d-0896-dbb3-c9df-a4395596914c +observationDate: 1933 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 63384009 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1933value=63384009observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/3rmvjz4302js2" + +Node: population_estimate_sex/E0/b97dde59-ec5e-7d82-9f60-7f1e1139a93b +observationDate: 1934 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 63726196 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1934value=63726196observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/t3v0jcr858t0b" + +Node: population_estimate_sex/E0/3de59e3c-dc3f-f6b1-4bf6-eb4f1ba7e6eb +observationDate: 1935 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 64109888 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1935value=64109888observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/qcdzp9503b8xc" + +Node: population_estimate_sex/E0/4b70dd8d-4fdd-4303-d832-aaf713748be2 +observationDate: 1936 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 64459383 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1936value=64459383observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/80z4vemghqy17" + +Node: population_estimate_sex/E0/062846a5-f33b-9ed0-ad34-d4199d977f95 +observationDate: 1937 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 64789797 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1937value=64789797observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/g08k5g3q4y416" + +Node: population_estimate_sex/E0/09784003-c19e-9704-ee00-b63a5664e8c4 +observationDate: 1938 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 65235361 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1938value=65235361observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/y7zqreqnvq5jg" + +Node: population_estimate_sex/E0/600c5fb4-c8a0-8c10-34d1-37541071f34b +observationDate: 1939 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 65713339 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1939value=65713339observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/qvc2lvmhet38b" + +Node: population_estimate_sex/E0/a4decf16-0639-b2ba-0177-089c19c71a02 +observationDate: 1940 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 66352363 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1940value=66352363observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/hkw3558k5xed5" + +Node: population_estimate_sex/E0/7a8d975c-1b84-e599-3861-85cd9b2c0beb +observationDate: 1941 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 66920133 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1941value=66920133observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/hnv9s192hwz5f" + +Node: population_estimate_sex/E0/bd66a898-644e-c801-08e6-da303380a437 +observationDate: 1942 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 67596729 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1942value=67596729observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/cv9h9bs5jfq73" + +Node: population_estimate_sex/E0/64294a5a-7d01-9352-7ac3-11aa068cabd8 +observationDate: 1943 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 68545741 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1943value=68545741observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/4fcj1rx2s8466" + +Node: population_estimate_sex/E0/86debe35-624a-8486-d596-18151698a81f +observationDate: 1944 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 69377719 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1944value=69377719observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/3qfm6xjew52gg" + +Node: population_estimate_sex/E0/3240599e-8346-397f-f516-1183c86699e7 +observationDate: 1945 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 70035073 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1945value=70035073observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/j4dvqvl1r30jd" + +Node: population_estimate_sex/E0/17463a08-ad17-ff1a-cac8-d416c202a383 +observationDate: 1946 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 70631171 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1946value=70631171observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/14l31n5xg2bd2" + +Node: population_estimate_sex/E0/12368817-bf5a-c9ba-caf7-d14b36c9c453 +observationDate: 1947 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 71945892 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1947value=71945892observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/zmhmnl214w3jf" + +Node: population_estimate_sex/E0/2cfac78d-8269-2252-c725-d45e30bd46e1 +observationDate: 1948 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 73129684 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1948value=73129684observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/98lfjqh3fvzt1" + +Node: population_estimate_sex/E0/fcd64f24-3b6c-28db-4718-0e8c39fc3644 +observationDate: 1949 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 74335435 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1949value=74335435observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/zmvz2s0q5d7l6" + +Node: population_estimate_sex/E0/01fc28bf-ae5f-9bf9-74c6-fbbdf93951a5 +observationDate: 1950 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 75849012 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1950value=75849012observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/5rx0c9s2x6bzb" + +Node: population_estimate_sex/E0/22825662-ac62-41db-98cd-14fe3cd16a10 +observationDate: 1951 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 77101263 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1951value=77101263observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/b4prprzhqdse9" + +Node: population_estimate_sex/E0/8f69a8df-1bc8-4fd8-0f40-42f6fc61221e +observationDate: 1952 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 78372190 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1952value=78372190observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/8m9vvexy8ezwb" + +Node: population_estimate_sex/E0/8019d492-8643-7c05-a0f2-2a12a9a53655 +observationDate: 1953 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 79614310 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1953value=79614310observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/hens90tpps3v5" + +Node: population_estimate_sex/E0/3e81af09-1cf9-deef-c351-253215e38503 +observationDate: 1954 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 80972704 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1954value=80972704observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/67brmewe7f0vf" + +Node: population_estimate_sex/E0/6e92e716-b07d-93b2-850c-3725f32578b1 +observationDate: 1955 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 82363638 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1955value=82363638observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/dp27yv00xgheh" + +Node: population_estimate_sex/E0/251e0d90-dde0-c5b7-7f9a-0a05b4f007a1 +observationDate: 1956 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 83779505 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1956value=83779505observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/66s734jrebm64" + +Node: population_estimate_sex/E0/99052cbf-2433-b855-cb20-881585037039 +observationDate: 1957 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 85248426 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1957value=85248426observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/1htrd73g6q616" + +Node: population_estimate_sex/E0/f7b91fbe-7548-6c44-1a91-afb156e6224f +observationDate: 1958 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 86605105 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1958value=86605105observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/kjlxfb8zfzl9b" + +Node: population_estimate_sex/E0/8729a75d-ea76-9b2a-f1ac-210422c670ae +observationDate: 1959 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 87995434 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1959value=87995434observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/t4nr3lqv47fx6" + +Node: population_estimate_sex/E0/ca0981c2-6dcc-1bd5-baae-d9858d40bb56 +observationDate: 1960 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 89319511 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1960value=89319511observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/hm2npdlc28wr9" + +Node: population_estimate_sex/E0/da95d007-cbaf-0c28-e6ac-21fff43d3b79 +observationDate: 1961 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 90739919 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1961value=90739919observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/b8l22jj7mhk2f" + +Node: population_estimate_sex/E0/606dc605-e939-8708-57c7-4eff34924ee6 +observationDate: 1962 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 92066119 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1962value=92066119observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/p0lehlxwf364c" + +Node: population_estimate_sex/E0/cdbad43b-1846-c0d9-1885-62825015d298 +observationDate: 1963 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 93302933 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1963value=93302933observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/f8c4k5p2vy546" + +Node: population_estimate_sex/E0/c292b84e-d162-abc5-d9be-c0cc11b0ed39 +observationDate: 1964 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 94517752 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1964value=94517752observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/bxmflv452v904" + +Node: population_estimate_sex/E0/8cfe837c-fa8d-7324-e953-cba908ff66fc +observationDate: 1965 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 95608501 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1965value=95608501observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/b9h62m4n9jv66" + +Node: population_estimate_sex/E0/9c1be884-fc20-8557-1aea-0614414e6f7a +observationDate: 1966 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 96619711 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1966value=96619711observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/489zwdql07jjg" + +Node: population_estimate_sex/E0/90d6868d-0317-9e09-cfb0-cc81e1c3ce3e +observationDate: 1967 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 97563882 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1967value=97563882observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/dnp8xxn3p9g5h" + +Node: population_estimate_sex/E0/1a76d992-2723-d6af-0661-4cf685122dbe +observationDate: 1968 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 98426257 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1968value=98426257observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/zngld9w955vc6" + +Node: population_estimate_sex/E0/72c4fea0-b6e6-5937-bcad-a7e1d659d953 +observationDate: 1969 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 99286946 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1969value=99286946observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/88h525y65dxj7" + +Node: population_estimate_sex/E0/74cb2f2a-7999-416f-5412-dbaa2dd05dde +observationDate: 1970 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 100353876 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1970value=100353876observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/5mgpj11hw9ppc" + +Node: population_estimate_sex/E0/62d1bb31-6e9b-eccb-c3ba-b98c08821aa6 +observationDate: 1971 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 101567006 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1971value=101567006observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/fmhcmvkjzrzr6" + +Node: population_estimate_sex/E0/4c5a0d47-22f8-0794-e937-b511b2b1ba30 +observationDate: 1972 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 102590732 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1972value=102590732observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/ln0lq9nt6jdd" + +Node: population_estimate_sex/E0/ee0a70b6-aa5c-e74c-5daa-64feb6b5c2ee +observationDate: 1973 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 103506451 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1973value=103506451observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/v9t7hr8xmz5j3" + +Node: population_estimate_sex/E0/39869871-a357-f0d8-9531-6f81ea84ed9c +observationDate: 1974 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 104391110 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1974value=104391110observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/jxd4l79dkgrq2" + +Node: population_estimate_sex/E0/6f1975d6-1031-02d4-eed3-7c5db1e7dc07 +observationDate: 1975 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 105365965 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1975value=105365965observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/lwpnqk5xdng12" + +Node: population_estimate_sex/E0/61b43097-9dc4-4182-2930-16963666dce0 +observationDate: 1976 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 106308604 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1976value=106308604observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/6z4k4w95pdlk9" + +Node: population_estimate_sex/E0/a0ca2065-4607-6be4-51c9-dd79c5a79fa7 +observationDate: 1977 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 107334548 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1977value=107334548observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/24d7exjd1epd5" + +Node: population_estimate_sex/E0/b3a94174-d318-f987-7e2b-747649c658ab +observationDate: 1978 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 108423580 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1978value=108423580observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/yw621p57zr9f8" + +Node: population_estimate_sex/E0/e86d8953-2015-2483-59ca-9f7102937888 +observationDate: 1979 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 109583961 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1979value=109583961observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/9pg0q6dhdbeg2" + +Node: population_estimate_sex/E0/0d5f34d9-b44f-f116-52c9-b6eb9d88dd83 +observationDate: 1990 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 122162221 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1990value=122162221observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/y5q8wsg4yv28h" + +Node: population_estimate_sex/E0/23885a08-63ab-8eb5-548c-73e443e99cee +observationDate: 1991 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 123868531 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1991value=123868531observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/8nx98jgfb5fjh" + +Node: population_estimate_sex/E0/22969c6a-2b55-ce2d-3e64-5dd3bf9b47a1 +observationDate: 1992 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 125579972 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1992value=125579972observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/k8724d4krhz3d" + +Node: population_estimate_sex/E0/db34101d-37ce-5d74-5497-4b25bfccffea +observationDate: 1993 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 127265839 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1993value=127265839observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/00tr6mvyk8yg5" + +Node: population_estimate_sex/E0/0f6026be-c409-3da1-19ed-4c2125bff412 +observationDate: 1994 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 128869259 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1994value=128869259observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/rjhkxdd2my2xc" + +Node: population_estimate_sex/E0/a65fe1d9-530a-c1de-ccb8-999770b17e33 +observationDate: 1995 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 130459431 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1995value=130459431observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/qwnqq0xdfb51" + +Node: population_estimate_sex/E0/61574ef7-c8ef-bcb8-2fd2-98d3d56fc104 +observationDate: 1996 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 132045951 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1996value=132045951observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/ld1dej0l4qz45" + +Node: population_estimate_sex/E0/9cd45e10-1093-b8db-0202-d409616475db +observationDate: 1997 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 133702661 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1997value=133702661observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/gwzkzjdq5f9d6" + +Node: population_estimate_sex/E0/d3a028df-cafb-bd34-39cf-df9ea1b8b108 +observationDate: 1998 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 135355375 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1998value=135355375observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/hywry53mwter1" + +Node: population_estimate_sex/E0/f8b3b43f-9592-e30a-0c26-85f04c8d0173 +observationDate: 1999 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 137022121 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1999value=137022121observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/x4mb9jfe0t5pg" + +Node: population_estimate_sex/E0/738a631f-27e2-dfd7-0ee1-990049660aee +observationDate: 2000 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 138443407 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2000value=138443407observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/tcwcv1lbdzdk9" + +Node: population_estimate_sex/E0/be666a54-5c28-49d1-f9fa-4f7af62c8ebe +observationDate: 2001 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 139891492 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2001value=139891492observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/whktyd603b2b1" + +Node: population_estimate_sex/E0/540556cc-75ae-1d56-2304-950c830cae7d +observationDate: 2002 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 141230559 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2002value=141230559observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/te04kfkrfknp2" + +Node: population_estimate_sex/E0/6a657fa2-395e-c928-315a-4155b25d381d +observationDate: 2003 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 142428897 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2003value=142428897observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/lghhhbqpx0v7f" + +Node: population_estimate_sex/E0/5a424b6c-cb03-1768-bf2e-0a2d0f4db56b +observationDate: 2004 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 143828012 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2004value=143828012observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/eqvxf5h6ew1k8" + +Node: population_estimate_sex/E0/7eccdb3e-79fe-665a-593e-2becbfa53241 +observationDate: 2005 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 145197078 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2005value=145197078observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/pn4ry0th7p0e3" + +Node: population_estimate_sex/E0/b003a9ad-8808-b2df-7e1f-49578ba7bb44 +observationDate: 2006 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 146647265 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2006value=146647265observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/e0wj7y0c1mvb1" + +Node: population_estimate_sex/E0/1ce93fd2-6b0d-f872-4880-3099b0e11da7 +observationDate: 2007 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 148064854 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2007value=148064854observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/q6envnxsvrhn4" + +Node: population_estimate_sex/E0/53a9e986-e58f-0fb7-1d11-e773d5ee33ab +observationDate: 2008 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 149489951 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2008value=149489951observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/4jqtrfd4539jd" + +Node: population_estimate_sex/E0/d07d2241-cfec-f9ba-1bb8-48834565185a +observationDate: 2009 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 150807454 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2009value=150807454observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/mty0wqy67lch7" + +Node: population_estimate_sex/E0/e16e2c84-2368-6b37-c683-010a9f81b31b +observationDate: 2010 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 152077478 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2010value=152077478observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/hyst2yvqq9vc3" + +Node: population_estimate_sex/E0/1ec4a5c3-bb63-4e16-f637-80aed0e22031 +observationDate: 2011 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 153212980 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2011value=153212980observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/qdv9ypzrmf335" + +Node: population_estimate_sex/E0/34522a00-faa8-29de-1cc2-849561cde764 +observationDate: 2012 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 154397027 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2012value=154397027observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/7ly8kd7vnmbv8" + +Node: population_estimate_sex/E0/8f1637de-49a2-82a2-cf2e-0751aa6a33b4 +observationDate: 2013 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 155514054 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2013value=155514054observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/t1qe78ztesq14" + +Node: population_estimate_sex/E0/dd25aa5e-542c-8f00-acf9-776b36a65f23 +observationDate: 2014 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 156695810 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2014value=156695810observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/fmr683p0jvsh4" + +Node: population_estimate_sex/E0/77f41236-cf11-1d90-da5c-76c234919c67 +observationDate: 2015 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 157906843 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2015value=157906843observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/5h40cr497vvrg" + +Node: population_estimate_sex/E0/1b5bf9ab-295c-69cb-f9f4-189d9960f0c4 +observationDate: 2016 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 159085693 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2016value=159085693observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/shv82m8k46zk7" + +Node: population_estimate_sex/E0/e3e3df93-2d3a-3264-bd6f-2a0c92450fed +observationDate: 2017 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 160113445 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2017value=160113445observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/9q55cnrkqy0rc" + +Node: population_estimate_sex/E0/3a050ffc-a02f-4365-9233-a386fbcf0c6b +observationDate: 2018 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 160960513 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2018value=160960513observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/xbcg3f7e8tb16" + +Node: population_estimate_sex/E0/995ca758-ff45-7203-5d39-086eae7917b0 +observationDate: 2019 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 161692336 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2019value=161692336observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/88kmqq2prpz37" + +Node: population_estimate_sex/E0/4f552d13-7ab8-5cbf-768f-f7df36d069e0 +observationDate: 2020 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Male +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 162256202 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2020value=162256202observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/0bg96jykxe2k" + +Node: population_estimate_sex/E0/7c071083-0450-04f3-385a-79717437cb5a +observationDate: 1900 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 37227000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1900value=37227000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/m6887g7fczsgb" + +Node: population_estimate_sex/E0/992b3bfe-9bba-7874-9ec0-18184044104e +observationDate: 1901 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 37935000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1901value=37935000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/9qle434ze6xp9" + +Node: population_estimate_sex/E0/a05d1833-7d77-9509-79ae-0d1f7fb4205b +observationDate: 1902 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 38680000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1902value=38680000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/7l9x789rkpthc" + +Node: population_estimate_sex/E0/e523484e-eeba-74f1-ef12-de24b23fe442 +observationDate: 1903 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 39370000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1903value=39370000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/ch9l5j23h7538" + +Node: population_estimate_sex/E0/b3674e1b-4df1-6add-bac0-9e026304128f +observationDate: 1904 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 40077000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1904value=40077000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/g2qn1p4wxdczc" + +Node: population_estimate_sex/E0/fac62ce1-84b1-0174-1213-c7144f5caf1f +observationDate: 1905 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 40857000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1905value=40857000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/nxnkqz63dvry" + +Node: population_estimate_sex/E0/f473bc5a-7379-8a3e-eb31-fb1bd2103765 +observationDate: 1906 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 41609000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1906value=41609000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/j9c5275synpfb" + +Node: population_estimate_sex/E0/9af77098-e000-a2f5-89bb-ac0cb5cc4ab7 +observationDate: 1907 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 42326000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1907value=42326000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/rmzykz6nrlbs5" + +Node: population_estimate_sex/E0/1ccfa267-94f5-2234-61fa-face27d84125 +observationDate: 1908 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 43116000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1908value=43116000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/7l849x6c5zw8" + +Node: population_estimate_sex/E0/e25bfebf-8af5-e08d-b343-ad735f497423 +observationDate: 1909 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 43945000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1909value=43945000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/hed8x3m855p03" + +Node: population_estimate_sex/E0/4dad3f61-1218-8a44-b927-5c4091b34c80 +observationDate: 1910 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 44853000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1910value=44853000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/smbvzkm11mv25" + +Node: population_estimate_sex/E0/914cdda6-ce03-c981-84d2-02830933b1f4 +observationDate: 1911 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 45573000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1911value=45573000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/kd3xj4n0b6ry" + +Node: population_estimate_sex/E0/026ffa47-b4a1-ec85-1c7a-9d044a158b81 +observationDate: 1912 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 46310000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1912value=46310000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/9148s6ed6kss5" + +Node: population_estimate_sex/E0/be47a97a-d1a6-6f0e-8d28-daf9d4b29e72 +observationDate: 1913 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 47268000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1913value=47268000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/zs1gvhs9wr4mg" + +Node: population_estimate_sex/E0/8d3947af-f9e4-cb71-0573-3efb1c0a9d73 +observationDate: 1914 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 48228000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1914value=48228000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/xne6z1n38lfe1" + +Node: population_estimate_sex/E0/b2db9ce2-415a-df4c-288a-042ada0da245 +observationDate: 1915 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 48973000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1915value=48973000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/80zmqjdb0thv9" + +Node: population_estimate_sex/E0/654f1eb5-27f5-234c-b72b-02350c644ff0 +observationDate: 1916 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 49727000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1916value=49727000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/bkjw4j222y8fg" + +Node: population_estimate_sex/E0/ceed1e77-e87d-ddc4-81b7-bdcf1e44ebe5 +observationDate: 1917 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 50480000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1917value=50480000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/mymh73cjz8eld" + +Node: population_estimate_sex/E0/49cb733b-c84f-da69-f4bf-47369447cc31 +observationDate: 1918 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 51234000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1918value=51234000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/ethwsj962nzr4" + +Node: population_estimate_sex/E0/c034d7af-f2f9-ed83-8783-b932e120b9fe +observationDate: 1919 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 51411000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1919value=51411000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/t0djyrwf09xlb" + +Node: population_estimate_sex/E0/be260719-116a-283c-4e7e-3f7d13bfa407 +observationDate: 1920 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 52170000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1920value=52170000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/j4xzchxq7lp25" + +Node: population_estimate_sex/E0/b303917e-0d9e-8d58-e0e2-4d7d1227dbe6 +observationDate: 1921 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 53246000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1921value=53246000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/3j75jnnv7ggk4" + +Node: population_estimate_sex/E0/037bdba1-8d40-be5f-dde4-733bfb93d3e5 +observationDate: 1922 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 54163000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1922value=54163000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/5n9pe49w378mc" + +Node: population_estimate_sex/E0/57c4bb56-75e5-8578-e106-6e06e08d9028 +observationDate: 1923 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 55086000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1923value=55086000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/7rwc9sdc1wj89" + +Node: population_estimate_sex/E0/caf0d8af-8c49-3365-35a9-9f8c467dcf04 +observationDate: 1924 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 56124000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1924value=56124000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/f0vy5tf24cxwd" + +Node: population_estimate_sex/E0/112b1af2-2088-0d6a-dac8-6f4b15e1bbb0 +observationDate: 1925 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 57016000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1925value=57016000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/mq5f28fwdt0t4" + +Node: population_estimate_sex/E0/14b084da-6cce-6a7d-0cbb-30f96ae570a7 +observationDate: 1926 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 57809000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1926value=57809000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/mhhpej6e045v6" + +Node: population_estimate_sex/E0/e5d09c47-0dd0-ea41-0071-df498a601393 +observationDate: 1927 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 58638000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1927value=58638000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/e586lp49gmgd3" + +Node: population_estimate_sex/E0/414eb024-90d8-33d8-f20f-a2a8115b3cb1 +observationDate: 1928 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 59408000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1928value=59408000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/ezdm84226dbqh" + +Node: population_estimate_sex/E0/c99f47db-d3f5-b3ad-814c-e1cd2a14e8ca +observationDate: 1929 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 60087000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1929value=60087000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/dkgen02gpnhb6" + +Node: population_estimate_sex/E0/41a78d6c-f989-d345-105f-f05b152ea332 +observationDate: 1930 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 60780224 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1930value=60780224observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/qvvpd51sxwmrb" + +Node: population_estimate_sex/E0/3de9b86b-d05b-fb02-3488-66b6114876fd +observationDate: 1931 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 61314145 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1931value=61314145observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/zl8hccswrp72b" + +Node: population_estimate_sex/E0/dd7da605-cb4b-45ab-fccf-588f24a38fc0 +observationDate: 1932 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 61770334 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1932value=61770334observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/0ksrwd9pxdfn7" + +Node: population_estimate_sex/E0/c7ed9777-3538-3760-134f-db71c5aadabd +observationDate: 1933 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 62194754 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1933value=62194754observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/n8zq5t4qwy6d9" + +Node: population_estimate_sex/E0/f76a70a8-c5f1-8b89-b6b0-7090a15382a6 +observationDate: 1934 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 62647577 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1934value=62647577observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/de69h0dw89vc9" + +Node: population_estimate_sex/E0/d9f4038e-9c97-f716-97b7-192e051a1cae +observationDate: 1935 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 63140344 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1935value=63140344observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/5t0qlx0r22eec" + +Node: population_estimate_sex/E0/926f603f-e233-816e-2d23-4e300f8ffa8f +observationDate: 1936 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 63593797 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1936value=63593797observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/4z9q5rwjf0xd9" + +Node: population_estimate_sex/E0/14cba252-c624-0d07-a547-14595016eedf +observationDate: 1937 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 64035032 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1937value=64035032observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/08zp0rtjbst6c" + +Node: population_estimate_sex/E0/880c5177-79e4-02bf-0f97-d3d4e7b66224 +observationDate: 1938 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 64589578 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1938value=64589578observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/ec3cz8vn7d92" + +Node: population_estimate_sex/E0/1695dde7-a36d-bc51-a883-411ca3fd1969 +observationDate: 1939 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 65166379 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1939value=65166379observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/d2pfg2zjhgtd8" + +Node: population_estimate_sex/E0/c00aafed-e401-d438-1f11-bad313b748e5 +observationDate: 1940 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 65770083 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1940value=65770083observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/f5fymrpwwh30h" + +Node: population_estimate_sex/E0/9cc941be-ce4f-d592-6c07-863a8c739937 +observationDate: 1941 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 66482338 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1941value=66482338observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/kss8yjk8lq8pc" + +Node: population_estimate_sex/E0/e583c6af-33d8-8ea9-0e11-5c5a10599933 +observationDate: 1942 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 67262824 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1942value=67262824observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/fkdv7k9hz89vc" + +Node: population_estimate_sex/E0/a185d895-234d-b20e-fab1-c4bf46af3011 +observationDate: 1943 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 68193612 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1943value=68193612observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/xk6wtj0stwkt9" + +Node: population_estimate_sex/E0/21bef9a6-cb7d-728a-95b1-cca97943710d +observationDate: 1944 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 69019626 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1944value=69019626observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/cmpgxmrwprl89" + +Node: population_estimate_sex/E0/64ec3afd-51e3-21e9-3ca1-759d4aa221bd +observationDate: 1945 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 69893092 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1945value=69893092observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/t4y9drt9h12tb" + +Node: population_estimate_sex/E0/8a17ad59-9971-62b3-9b2d-dc428a695df1 +observationDate: 1946 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 70757395 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1946value=70757395observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/6wf9107kjygp3" + +Node: population_estimate_sex/E0/4d530955-8f8d-14c2-6648-9217c421bdb0 +observationDate: 1947 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 72180179 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1947value=72180179observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/ss4tfxxsfl2x7" + +Node: population_estimate_sex/E0/2473537b-5fe2-6285-dc87-71d4cbc1fb02 +observationDate: 1948 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 73501618 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1948value=73501618observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/l8ttjnh1763cc" + +Node: population_estimate_sex/E0/525d00dc-b7ec-59ae-037d-e92fcc839b67 +observationDate: 1949 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 74852695 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1949value=74852695observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/8p6mwebvhb8q8" + +Node: population_estimate_sex/E0/d8641aa6-85b2-f2ad-80af-63e28d48f4ea +observationDate: 1950 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 76422405 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1950value=76422405observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/82vdpk3bzyt29" + +Node: population_estimate_sex/E0/9977efa4-b465-f53e-8e0d-2527195ecebe +observationDate: 1951 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 77776626 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1951value=77776626observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/36pl4wkqzmjt7" + +Node: population_estimate_sex/E0/4b48bac2-3f0a-5610-d012-04901fed62bb +observationDate: 1952 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 79180550 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1952value=79180550observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/rchdznsy35c66" + +Node: population_estimate_sex/E0/38b2440f-0ef9-3efb-fd3d-f9f01f0a34a4 +observationDate: 1953 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 80569882 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1953value=80569882observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/kl32yh1v767m4" + +Node: population_estimate_sex/E0/352d0ea3-7346-9df9-c45e-dfee936af16a +observationDate: 1954 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 82053150 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1954value=82053150observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/ydp5r02ypkp29" + +Node: population_estimate_sex/E0/747378de-0def-7b8a-0055-90ec52ffcd88 +observationDate: 1955 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 83567564 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1955value=83567564observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/y0gn7dst025l" + +Node: population_estimate_sex/E0/a92ed869-60db-025d-3ec6-fdf093d3c1cf +observationDate: 1956 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 85123526 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1956value=85123526observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/f34pq1mleg7s" + +Node: population_estimate_sex/E0/0b44b71d-63f5-a440-e155-6c201372c8c9 +observationDate: 1957 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 86735704 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1957value=86735704observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/gwejcbg7zvht6" + +Node: population_estimate_sex/E0/61a9d2a5-da1c-874b-a08c-d6e5f40b916e +observationDate: 1958 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 88276799 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1958value=88276799observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/1dvjgebjebx38" + +Node: population_estimate_sex/E0/ad715747-0f9e-6253-2ff6-7691aca278e3 +observationDate: 1959 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 89834194 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1959value=89834194observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/mb06l837v0hn4" + +Node: population_estimate_sex/E0/6ce6533b-dce0-fe96-5f55-99714f6fced2 +observationDate: 1960 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 91351647 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1960value=91351647observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/612tygmk488f" + +Node: population_estimate_sex/E0/07fc9e3d-3400-0f1d-db92-355df9301134 +observationDate: 1961 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 92951562 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1961value=92951562observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/9rn9gh3x4q1xg" + +Node: population_estimate_sex/E0/355c7c3d-34f9-93d9-6d61-edd3cea81c2e +observationDate: 1962 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 94471618 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1962value=94471618observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/bgwdcst4736g6" + +Node: population_estimate_sex/E0/eba21637-258d-6fd9-5308-a1c342415eaf +observationDate: 1963 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 95938865 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1963value=95938865observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/t6ckk5efd6m45" + +Node: population_estimate_sex/E0/63cefb44-e753-0b0e-50f4-5f0ada322933 +observationDate: 1964 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 97371039 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1964value=97371039observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/5qqyrmlb4bk1d" + +Node: population_estimate_sex/E0/da257e70-c895-85cf-0417-d90090d5c6eb +observationDate: 1965 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 98694462 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1965value=98694462observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/7ngqnp8hcql86" + +Node: population_estimate_sex/E0/10d92064-16aa-633c-b64e-ff34dae02010 +observationDate: 1966 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 99940627 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1966value=99940627observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/1xbbnj5qpb6v1" + +Node: population_estimate_sex/E0/3ad902a7-8efd-9854-39ea-95dfc1f318cc +observationDate: 1967 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 101148174 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1967value=101148174observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/dg241dsqwrz06" + +Node: population_estimate_sex/E0/f46d77cf-b256-916c-346a-7c75bbdfe3d4 +observationDate: 1968 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 102279795 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1968value=102279795observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/1vqzzw6ccp6b3" + +Node: population_estimate_sex/E0/57c989fd-e80d-3dc2-61be-76b502b477c2 +observationDate: 1969 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 103390000 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1969value=103390000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/qldr1c47wnz25" + +Node: population_estimate_sex/E0/3d4c4c11-acfe-5a0a-c5b4-edb49b31da90 +observationDate: 1970 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 104698298 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1970value=104698298observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/xgp6rbp81zhk2" + +Node: population_estimate_sex/E0/fe16120d-b748-800b-20af-adc6491ab4b6 +observationDate: 1971 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 106093671 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1971value=106093671observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/yrscj9kp652h5" + +Node: population_estimate_sex/E0/843b3774-3d7b-95e6-ee10-bbbf13ef596a +observationDate: 1972 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 107305289 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1972value=107305289observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/9b5ype24wt928" + +Node: population_estimate_sex/E0/6454c273-fbe7-83bb-eec9-4d25e46927db +observationDate: 1973 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 108402337 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1973value=108402337observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/emhxpgdwv71c3" + +Node: population_estimate_sex/E0/d58d4c36-7462-eeda-46f1-c17f63e00ae0 +observationDate: 1974 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 109462818 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1974value=109462818observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/2ctr9ebnfvr81" + +Node: population_estimate_sex/E0/2388bbb0-bc16-55b5-774b-45f188341bbc +observationDate: 1975 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 110607234 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1975value=110607234observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/t33jgh1byhx7b" + +Node: population_estimate_sex/E0/7ddbda2e-ee9f-9897-7344-bba9963fa904 +observationDate: 1976 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 111726560 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1976value=111726560observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/79pnl907lr2d4" + +Node: population_estimate_sex/E0/953fa438-e41e-aa07-6118-68538d3c064e +observationDate: 1977 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 112904877 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1977value=112904877observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/rhr5q7yxwr2z1" + +Node: population_estimate_sex/E0/5921de18-7dad-75ef-b69b-212281c2d389 +observationDate: 1978 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 114160965 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1978value=114160965observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/jvbmrhs3vskk5" + +Node: population_estimate_sex/E0/b6a2e158-6144-41c6-ed4c-51631ca9625d +observationDate: 1979 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 115471526 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1979value=115471526observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/6jbpgctvenkx4" + +Node: population_estimate_sex/E0/a81ef154-fdba-5adf-62a5-b2421cab181f +observationDate: 1990 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 127969673 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1990value=127969673observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/rxd5chwwv7d73" + +Node: population_estimate_sex/E0/962f293f-28bf-6e74-2e59-44e969028e06 +observationDate: 1991 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 129623972 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1991value=129623972observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/bfscw6msgddc1" + +Node: population_estimate_sex/E0/b27f7013-5746-f734-5b3f-71ec92798b35 +observationDate: 1992 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 131314217 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1992value=131314217observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/rd1zr08nbm8ld" + +Node: population_estimate_sex/E0/6d49b1c6-6790-5c56-854d-d87b708c50f8 +observationDate: 1993 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 132989513 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1993value=132989513observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/16jg4w68g2f8h" + +Node: population_estimate_sex/E0/94e1a0c4-5de6-e878-29f6-a3118cc578e3 +observationDate: 1994 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 134566414 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1994value=134566414observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/hlfd8emf03sm8" + +Node: population_estimate_sex/E0/be286f67-c7fb-3a59-cf88-9ba705638a1b +observationDate: 1995 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 136097660 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1995value=136097660observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/mdww0kbfzs1p4" + +Node: population_estimate_sex/E0/f1878372-6b0f-d2fc-5d44-8ef735526c91 +observationDate: 1996 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 137621440 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1996value=137621440observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/2hhbv1nmq3nqd" + +Node: population_estimate_sex/E0/36a84490-74db-359f-2f44-f7a57c1fd0de +observationDate: 1997 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 139209099 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1997value=139209099observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/kh5b4cm1p0fsf" + +Node: population_estimate_sex/E0/028614da-9b15-cdb5-7fff-578be9bad6b5 +observationDate: 1998 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 140759913 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1998value=140759913observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/7fm03x2bwxt1b" + +Node: population_estimate_sex/E0/d9714764-0b2b-25fb-fcd0-078b88eca7e7 +observationDate: 1999 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 142272592 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1999value=142272592observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/gg27pst4xb3l9" + +Node: population_estimate_sex/E0/623e4913-fcbd-7865-668d-3fb54228ceb8 +observationDate: 2000 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 143719004 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2000value=143719004observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/z9ywk9gfgsyy4" + +Node: population_estimate_sex/E0/b4fc979a-fcdf-101f-9e15-5ecd923b4232 +observationDate: 2001 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 145077463 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2001value=145077463observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/s2s4cyggkqyd8" + +Node: population_estimate_sex/E0/e97dad0a-0b89-8e60-e106-a6a9b64634f8 +observationDate: 2002 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 146394634 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2002value=146394634observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/yespndlhd92yc" + +Node: population_estimate_sex/E0/f25f80c5-f0ed-7017-7e5f-21df9f169a07 +observationDate: 2003 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 147679036 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2003value=147679036observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/1hztdh4rb2vrg" + +Node: population_estimate_sex/E0/35183462-7311-f2c9-3184-6831e3966dc8 +observationDate: 2004 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 148977286 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2004value=148977286observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/4n9bxl9vlvryg" + +Node: population_estimate_sex/E0/b96193b7-d7af-f7af-b0b8-8de97b8fc11c +observationDate: 2005 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 150319521 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2005value=150319521observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/0v2b35t6mrlc8" + +Node: population_estimate_sex/E0/10a9c01f-3685-bcc5-79ab-57894a0ce6f6 +observationDate: 2006 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 151732647 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2006value=151732647observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/3k1vvf9p95j48" + +Node: population_estimate_sex/E0/54a11b3f-8efc-f876-94d0-0cf5070e3ada +observationDate: 2007 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 153166353 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2007value=153166353observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/ldbql7s2meh68" + +Node: population_estimate_sex/E0/4769e20c-d302-d3b4-7673-2af32d19f825 +observationDate: 2008 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 154604015 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2008value=154604015observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/3r1jr1f9ejfrc" + +Node: population_estimate_sex/E0/c59d75c2-aef4-1795-60de-559f3086d83e +observationDate: 2009 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 155964075 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2009value=155964075observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/ervnbftn3xt2g" + +Node: population_estimate_sex/E0/abfa4914-435c-e7f7-22f4-2a2559d18af9 +observationDate: 2010 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 157249665 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2010value=157249665observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/bwhf2ncer37tb" + +Node: population_estimate_sex/E0/a3530c46-7885-d674-db54-85aa7cb67a93 +observationDate: 2011 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 158370501 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2011value=158370501observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/b9hby8c604shf" + +Node: population_estimate_sex/E0/f0d765f9-899f-3db0-eafc-464bcf1b090e +observationDate: 2012 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 159480635 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2012value=159480635observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/sl0bbnm07b291" + +Node: population_estimate_sex/E0/7991bbec-cfea-c952-6cb2-bcc01f45b531 +observationDate: 2013 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 160545893 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2013value=160545893observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/61lw2cetmhyfb" + +Node: population_estimate_sex/E0/fad41f1d-2797-f4de-d0d4-694ad80a0104 +observationDate: 2014 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 161690519 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2014value=161690519observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/y1rlm329ymg9b" + +Node: population_estimate_sex/E0/08483e6b-b08d-6bc9-28f7-1e53ad4b85b4 +observationDate: 2015 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 162832151 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2015value=162832151observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/njpxntxqs8z5" + +Node: population_estimate_sex/E0/0dfde911-3527-339a-1234-b75b577708ca +observationDate: 2016 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 163986062 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2016value=163986062observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/f3y0dxwevvrbd" + +Node: population_estimate_sex/E0/d47d0793-c13b-1354-c59a-6b100c64ffe6 +observationDate: 2017 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 165008683 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2017value=165008683observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/qxebdl1k0mplg" + +Node: population_estimate_sex/E0/e5869011-44b6-ff2e-7f9a-a46fe18000b2 +observationDate: 2018 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 165877686 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2018value=165877686observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/000djxym35y76" + +Node: population_estimate_sex/E0/c164d3fd-b0f0-7db9-2c27-afe8df25f7a1 +observationDate: 2019 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 166637617 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2019value=166637617observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/ddqvb8ct7pve9" + +Node: population_estimate_sex/E0/59af57c4-4efb-d4c9-b9ef-455407f350a5 +observationDate: 2020 +observationAbout: dcid:country/USA +variableMeasured: dcid:Count_Person_Female +measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate +value: 167227921 +typeOf: dcid:StatVarObservation +observationPeriod: "P1Y" +keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2020value=167227921observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" +dcid: "dc/o/nb0dqjfhm21g1" + diff --git a/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.csv b/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.csv new file mode 100644 index 0000000000..92c6baf467 --- /dev/null +++ b/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.csv @@ -0,0 +1,223 @@ +Year,geo_ID,Measurement_Method,SV,Observation +1900,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,38867000 +1901,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,39649000 +1902,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,40483000 +1903,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,41262000 +1904,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,42089000 +1905,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,42965000 +1906,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,43841000 +1907,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,44682000 +1908,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,45594000 +1909,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,46545000 +1910,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,47554000 +1911,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,48290000 +1912,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,49025000 +1913,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,49957000 +1914,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,50883000 +1915,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,51573000 +1916,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,52234000 +1917,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,52788000 +1918,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,51974000 +1919,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,53103000 +1920,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,54291000 +1921,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,55292000 +1922,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,55886000 +1923,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,56861000 +1924,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,57985000 +1925,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,58813000 +1926,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,59588000 +1927,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,60397000 +1928,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,61101000 +1929,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,61680000 +1930,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,62296517 +1931,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,62725503 +1932,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,63070137 +1933,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,63384009 +1934,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,63726196 +1935,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,64109888 +1936,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,64459383 +1937,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,64789797 +1938,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,65235361 +1939,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,65713339 +1940,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,66352363 +1941,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,66920133 +1942,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,67596729 +1943,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,68545741 +1944,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,69377719 +1945,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,70035073 +1946,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,70631171 +1947,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,71945892 +1948,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,73129684 +1949,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,74335435 +1950,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,75849012 +1951,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,77101263 +1952,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,78372190 +1953,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,79614310 +1954,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,80972704 +1955,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,82363638 +1956,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,83779505 +1957,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,85248426 +1958,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,86605105 +1959,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,87995434 +1960,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,89319511 +1961,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,90739919 +1962,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,92066119 +1963,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,93302933 +1964,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,94517752 +1965,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,95608501 +1966,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,96619711 +1967,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,97563882 +1968,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,98426257 +1969,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,99286946 +1970,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,100353876 +1971,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,101567006 +1972,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,102590732 +1973,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,103506451 +1974,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,104391110 +1975,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,105365965 +1976,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,106308604 +1977,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,107334548 +1978,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,108423580 +1979,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,109583961 +1990,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,122162221 +1991,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,123868531 +1992,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,125579972 +1993,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,127265839 +1994,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,128869259 +1995,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,130459431 +1996,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,132045951 +1997,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,133702661 +1998,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,135355375 +1999,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,137022121 +2000,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,138443407 +2001,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,139891492 +2002,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,141230559 +2003,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,142428897 +2004,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,143828012 +2005,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,145197078 +2006,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,146647265 +2007,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,148064854 +2008,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,149489951 +2009,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,150807454 +2010,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,152077478 +2011,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,153212980 +2012,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,154397027 +2013,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,155514054 +2014,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,156695810 +2015,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,157906843 +2016,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,159085693 +2017,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,160113445 +2018,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,160960513 +2019,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,161692336 +2020,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,162256202 +1900,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,37227000 +1901,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,37935000 +1902,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,38680000 +1903,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,39370000 +1904,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,40077000 +1905,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,40857000 +1906,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,41609000 +1907,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,42326000 +1908,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,43116000 +1909,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,43945000 +1910,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,44853000 +1911,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,45573000 +1912,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,46310000 +1913,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,47268000 +1914,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,48228000 +1915,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,48973000 +1916,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,49727000 +1917,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,50480000 +1918,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,51234000 +1919,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,51411000 +1920,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,52170000 +1921,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,53246000 +1922,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,54163000 +1923,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,55086000 +1924,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,56124000 +1925,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,57016000 +1926,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,57809000 +1927,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,58638000 +1928,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,59408000 +1929,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,60087000 +1930,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,60780224 +1931,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,61314145 +1932,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,61770334 +1933,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,62194754 +1934,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,62647577 +1935,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,63140344 +1936,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,63593797 +1937,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,64035032 +1938,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,64589578 +1939,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,65166379 +1940,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,65770083 +1941,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,66482338 +1942,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,67262824 +1943,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,68193612 +1944,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,69019626 +1945,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,69893092 +1946,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,70757395 +1947,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,72180179 +1948,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,73501618 +1949,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,74852695 +1950,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,76422405 +1951,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,77776626 +1952,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,79180550 +1953,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,80569882 +1954,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,82053150 +1955,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,83567564 +1956,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,85123526 +1957,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,86735704 +1958,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,88276799 +1959,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,89834194 +1960,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,91351647 +1961,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,92951562 +1962,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,94471618 +1963,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,95938865 +1964,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,97371039 +1965,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,98694462 +1966,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,99940627 +1967,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,101148174 +1968,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,102279795 +1969,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,103390000 +1970,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,104698298 +1971,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,106093671 +1972,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,107305289 +1973,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,108402337 +1974,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,109462818 +1975,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,110607234 +1976,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,111726560 +1977,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,112904877 +1978,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,114160965 +1979,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,115471526 +1990,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,127969673 +1991,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,129623972 +1992,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,131314217 +1993,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,132989513 +1994,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,134566414 +1995,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,136097660 +1996,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,137621440 +1997,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,139209099 +1998,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,140759913 +1999,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,142272592 +2000,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,143719004 +2001,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,145077463 +2002,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,146394634 +2003,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,147679036 +2004,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,148977286 +2005,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,150319521 +2006,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,151732647 +2007,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,153166353 +2008,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,154604015 +2009,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,155964075 +2010,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,157249665 +2011,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,158370501 +2012,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,159480635 +2013,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,160545893 +2014,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,161690519 +2015,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,162832151 +2016,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,163986062 +2017,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,165008683 +2018,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,165877686 +2019,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,166637617 +2020,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,167227921 diff --git a/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.mcf b/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.mcf new file mode 100644 index 0000000000..70fd7bb0dc --- /dev/null +++ b/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.mcf @@ -0,0 +1,13 @@ +Node: dcid:Count_Person_Female +typeOf: dcs:StatisticalVariable +populationType: dcs:Person +gender: dcs:Female +statType: dcs:measuredValue +measuredProperty: dcs:count + +Node: dcid:Count_Person_Male +typeOf: dcs:StatisticalVariable +populationType: dcs:Person +gender: dcs:Male +statType: dcs:measuredValue +measuredProperty: dcs:count \ No newline at end of file diff --git a/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.tmcf b/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.tmcf new file mode 100644 index 0000000000..34bc31744a --- /dev/null +++ b/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.tmcf @@ -0,0 +1,8 @@ +Node: E:population_estimate_sex->E0 +typeOf: dcs:StatVarObservation +variableMeasured: C:population_estimate_sex->SV +measurementMethod: C:population_estimate_sex->Measurement_Method +observationAbout: C:population_estimate_sex->geo_ID +observationDate: C:population_estimate_sex->Year +observationPeriod: "P1Y" +value: C:population_estimate_sex->Observation \ No newline at end of file diff --git a/scripts/us_census/pep/us_pep_sex/process.py b/scripts/us_census/pep/us_pep_sex/process.py index 8eda40aa4d..28337d0216 100644 --- a/scripts/us_census/pep/us_pep_sex/process.py +++ b/scripts/us_census/pep/us_pep_sex/process.py @@ -995,7 +995,7 @@ def process(self): Returns: None """ - ip_files = os.listdir(self._input_path) + ip_files = sorted(os.listdir(self._input_path)) ip_files = [self._input_path + os.sep + file for file in ip_files] # Creating Output Directory @@ -1213,7 +1213,8 @@ def add_future_year_urls(): try: check_url = requests.head(url_to_check, - allow_redirects=True) + allow_redirects=True, + timeout=10) if check_url.status_code == 200: _FILES_TO_DOWNLOAD.append( {"download_path": url_to_check}) @@ -1221,6 +1222,7 @@ def add_future_year_urls(): except requests.exceptions.RequestException as e: logging.error( f"URL is not accessible {url_to_check} due to {e}") + time.sleep(0.05) else: # This URL does not contain {i}, so we only need to process it once per year url_to_check = url.format(YEAR=YEAR) @@ -1231,7 +1233,8 @@ def add_future_year_urls(): try: check_url = requests.head(url_to_check, - allow_redirects=True) + allow_redirects=True, + timeout=10) if check_url.status_code == 200: _FILES_TO_DOWNLOAD.append( {"download_path": url_to_check}) @@ -1246,6 +1249,7 @@ def add_future_year_urls(): except requests.exceptions.RequestException as e: logging.error( f"URL is not accessible {url_to_check} due to {e}") + time.sleep(0.05) def cleanup(): @@ -1303,46 +1307,61 @@ def download_files(): continue headers = {'User-Agent': 'Mozilla/5.0'} - try: - with session.get(url, stream=True, timeout=120, - headers=headers) as response: - response.raise_for_status() - - content_type = response.headers.get('Content-Type', '') - - # Minimal fix: Log error and continue to skip HTML pages - if 'html' in content_type.lower(): - logging.error( - f"Server returned HTML error page for URL: {url}. Skipping." - ) - continue + max_file_retries = 3 + file_download_success = False - if response.status_code == 200: - with tempfile.NamedTemporaryFile(delete=False) as tmp_file: - for chunk in response.iter_content(chunk_size=8192): - if chunk: - tmp_file.write(chunk) - tmp_file_path = tmp_file.name + for attempt in range(max_file_retries): + try: + # Dynamically increase timeout on subsequent retries + current_timeout = 120 + (attempt * 60) + with session.get(url, stream=True, timeout=current_timeout, + headers=headers) as response: + response.raise_for_status() - # Copy to local destination - shutil.copy( - tmp_file_path, - os.path.join(_INPUT_FILE_PATH, file_name_to_save)) + content_type = response.headers.get('Content-Type', '') - # Move to gcs destination (optimized from shutil.copy + os.remove) - shutil.move( - tmp_file_path, - os.path.join(_GCS_FOLDER_PERSISTENT_PATH, - file_name_to_save)) - - file_to_download['is_downloaded'] = True - logging.info(f"Downloaded file: {url}") - - except Exception as e: - file_to_download['is_downloaded'] = False - logging.error(f"Error downloading {url}: {e}") - raise - time.sleep(1) + # Minimal fix: Log error and continue to skip HTML pages + if 'html' in content_type.lower(): + logging.error( + f"Server returned HTML error page for URL: {url}. Skipping." + ) + break + + if response.status_code == 200: + with tempfile.NamedTemporaryFile(delete=False) as tmp_file: + for chunk in response.iter_content(chunk_size=8192): + if chunk: + tmp_file.write(chunk) + tmp_file_path = tmp_file.name + + # Copy to local destination + shutil.copy( + tmp_file_path, + os.path.join(_INPUT_FILE_PATH, file_name_to_save)) + + # Move to gcs destination (optimized from shutil.copy + os.remove) + shutil.move( + tmp_file_path, + os.path.join(_GCS_FOLDER_PERSISTENT_PATH, + file_name_to_save)) + + file_to_download['is_downloaded'] = True + logging.info(f"Downloaded file: {url}") + file_download_success = True + break + + except Exception as e: + logging.warning(f"Attempt {attempt + 1} failed downloading {url}: {e}") + if attempt < max_file_retries - 1: + # Exponential backoff: 5s, 10s... + time.sleep(5 * (attempt + 1)) + else: + file_to_download['is_downloaded'] = False + logging.error(f"Failed to download {url} after {max_file_retries} attempts.") + raise + + if file_download_success: + time.sleep(1) return True diff --git a/scripts/us_census/pep/us_pep_sex/validation_config.json b/scripts/us_census/pep/us_pep_sex/validation_config.json new file mode 100644 index 0000000000..7dff19a4b8 --- /dev/null +++ b/scripts/us_census/pep/us_pep_sex/validation_config.json @@ -0,0 +1,22 @@ +{ + "schema_version": "1.0", + "rules": [ + { + "rule_id": "check_deleted_records_percent", + "description": "Checks that the percentage of deleted points is within the threshold.", + "validator": "DELETED_RECORDS_PERCENT", + "params": { + "threshold": 0.1 + } + }, + { + "rule_id": "check_goldens_summary_report", + "validator": "GOLDENS_CHECK", + "params": { + "golden_files": "../../../../golden_data/golden_summary_report.csv" + } + } + ] +} + + From 6ed8fb67888e518c913dfbd92c46cf69d993246a Mon Sep 17 00:00:00 2001 From: Nivedita Singh Date: Mon, 13 Jul 2026 11:27:58 +0000 Subject: [PATCH 03/13] remove output folder from us_pep_sex and update .gitignore --- .gitignore | 1 + .../output/new_rec_gen_sa/report.json | 66 - .../output/new_rec_gen_sa/summary_report.csv | 3 - .../output/new_rec_gen_sa/summary_report.html | 487 ---- ...able_mcf_nodes_population_estimate_sex.mcf | 2442 ----------------- .../output/population_estimate_sex.csv | 223 -- .../output/population_estimate_sex.mcf | 13 - .../output/population_estimate_sex.tmcf | 8 - 8 files changed, 1 insertion(+), 3242 deletions(-) delete mode 100644 scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/report.json delete mode 100644 scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/summary_report.csv delete mode 100644 scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/summary_report.html delete mode 100644 scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/table_mcf_nodes_population_estimate_sex.mcf delete mode 100644 scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.csv delete mode 100644 scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.mcf delete mode 100644 scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.tmcf diff --git a/.gitignore b/.gitignore index a05b550de3..3a0ebfcab1 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,4 @@ import-automation/executor/config_override.json .venv/ +output/ diff --git a/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/report.json b/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/report.json deleted file mode 100644 index 25038870d8..0000000000 --- a/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/report.json +++ /dev/null @@ -1,66 +0,0 @@ -{ - "levelSummary": { - "LEVEL_INFO": { - "counters": { - "NumRowSuccesses": "222", - "NumPVSuccesses": "1998", - "Existence_NumChecks": "2220", - "NumNodeSuccesses": "222", - "Existence_NumDcCalls": "1" - } - }, - "LEVEL_WARNING": { - "counters": { - "StatsCheck_Data_Holes": "2" - } - } - }, - "statsCheckSummary": [{ - "placeDcid": "country/USA", - "statVarDcid": "Count_Person_Female", - "measurementMethod": "dcAggregate/CensusPEPSurvey_PartialAggregate", - "observationPeriod": "P1Y", - "scalingFactor": "", - "unit": "", - "validationCounters": [{ - "counterKey": "StatsCheck_Data_Holes", - "additionalDetails": "Possible data hole found. Dates in this series: 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1909, 1910, 1911, 1912, 1913, 1914, 1915, 1916, 1917, 1918, 1919, 1920, 1921, 1922, 1923, 1924, 1925, 1926, 1927, 1928, 1929, 1930, 1931, 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1946, 1947, 1948, 1949, 1950, 1951, 1952, 1953, 1954, 1955, 1956, 1957, 1958, 1959, 1960, 1961, 1962, 1963, 1964, 1965, 1966, 1967, 1968, 1969, 1970, 1971, 1972, 1973, 1974, 1975, 1976, 1977, 1978, 1979, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020" - }] - }, { - "placeDcid": "country/USA", - "statVarDcid": "Count_Person_Male", - "measurementMethod": "dcAggregate/CensusPEPSurvey_PartialAggregate", - "observationPeriod": "P1Y", - "scalingFactor": "", - "unit": "", - "validationCounters": [{ - "counterKey": "StatsCheck_Data_Holes", - "additionalDetails": "Possible data hole found. Dates in this series: 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1909, 1910, 1911, 1912, 1913, 1914, 1915, 1916, 1917, 1918, 1919, 1920, 1921, 1922, 1923, 1924, 1925, 1926, 1927, 1928, 1929, 1930, 1931, 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1946, 1947, 1948, 1949, 1950, 1951, 1952, 1953, 1954, 1955, 1956, 1957, 1958, 1959, 1960, 1961, 1962, 1963, 1964, 1965, 1966, 1967, 1968, 1969, 1970, 1971, 1972, 1973, 1974, 1975, 1976, 1977, 1978, 1979, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020" - }] - }], - "commandArgs": { - "existenceChecks": true, - "resolution": "RESOLUTION_MODE_LOCAL", - "numThreads": 1, - "statChecks": true, - "observationAbout": true, - "allowNanSvobs": false, - "checkMeasurementResult": false, - "coordinatesResolution": false, - "includeRuntimeMetadata": true, - "inputFiles": ["population_estimate_sex.tmcf", "population_estimate_sex.csv"], - "delimiter": "," - }, - "runtimeMetadata": { - "startTimeMillis": "1783925730493", - "endTimeMillis": "1783925732456", - "username": "niveditasing", - "hostname": "nivedita.c.googlers.com", - "osName": "Linux", - "osVersion": "6.18.14-1rodete3-amd64", - "javaVersion": "26.0.1", - "toolVersion": "0.1", - "toolBuildTimestamp": "2025-08-15T04:10:36+0000", - "toolGitCommitHash": "baee738" - } -} \ No newline at end of file diff --git a/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/summary_report.csv b/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/summary_report.csv deleted file mode 100644 index ffdf60e444..0000000000 --- a/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/summary_report.csv +++ /dev/null @@ -1,3 +0,0 @@ -StatVar,NumPlaces,NumObservations,MinValue,MaxValue,NumObservationsDates,MinDate,MaxDate,MeasurementMethods,Units,ScalingFactors,observationPeriods -Count_Person_Female,1,111,3.7227E7,1.67227921E8,111,1900,2020,[dcAggregate/CensusPEPSurvey_PartialAggregate],[],[],[P1Y] -Count_Person_Male,1,111,3.8867E7,1.62256202E8,111,1900,2020,[dcAggregate/CensusPEPSurvey_PartialAggregate],[],[],[P1Y] diff --git a/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/summary_report.html b/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/summary_report.html deleted file mode 100644 index a6ba135007..0000000000 --- a/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/summary_report.html +++ /dev/null @@ -1,487 +0,0 @@ - - - Summary Report - - - - - - - - - - -
- Go to Top -
-

Summary Report

-

Table of Contents

- - - - -
-

- Import Run Details -

- -

Runtime Information

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Report Generated AtJul 13, 2026
Generation Duration1.963 seconds
Generated Byniveditasing
Hostnivedita.c.googlers.com
Operating SystemLinux 6.18.14-1rodete3-amd64
Java Version26.0.1
Tool Version0.1
Tool Git Commit Hashbaee738
Tool Build Time2025-08-15T04:10:36+0000
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Existence Checks Enabledyes
Resolution ModeRESOLUTION_MODE_LOCAL
Num Threads1
Stat Checks Enabledyes
Sample Places Entered
Input Files -
population_estimate_sex.tmcf
-
population_estimate_sex.csv
-
CSV Delimiter,
-
- - -
-

- Counters -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Counter NameNum Occurences
LEVEL_INFO
NumRowSuccesses222
NumPVSuccesses1,998
Existence_NumChecks2,220
NumNodeSuccesses222
Existence_NumDcCalls1
LEVEL_WARNING
StatsCheck_Data_Holes2
-
- -
-

- StatVarObservations by StatVar -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
StatVarNum PlacesNum ObservationsMin ValueMax ValueNum Observation DatesMin DateMax DateMeasurement MethodsUnitsScaling FactorsObservation Periods
Count_Person_Female111137,227,000167,227,92111119002020 -
dcAggregate/CensusPEPSurvey_PartialAggregate
-
-
-
-
-
-
P1Y
-
Count_Person_Male111138,867,000162,256,20211119002020 -
dcAggregate/CensusPEPSurvey_PartialAggregate
-
-
-
-
-
-
P1Y
-
-
-
-

- Series Summaries for Sample Places -

- -
- United States (country/USA) - Open this place (country/USA) in Data Commons browser. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
StatVarNum ObservationsDatesCorresponding ValuesMeasurement MethodUnitScaling FactorObservation PeriodTime Series Chart
Count_Person_Female1111900 | 1901 | 1902 | 1903 | 1904 | 1905 | 1906 | 1907 | 1908 | 1909 | 1910 | 1911 | 1912 | 1913 | 1914 | 1915 | 1916 | 1917 | 1918 | 1919 | 1920 | 1921 | 1922 | 1923 | 1924 | 1925 | 1926 | 1927 | 1928 | 1929 | 1930 | 1931 | 1932 | 1933 | 1934 | 1935 | 1936 | 1937 | 1938 | 1939 | 1940 | 1941 | 1942 | 1943 | 1944 | 1945 | 1946 | 1947 | 1948 | 1949 | 1950 | 1951 | 1952 | 1953 | 1954 | 1955 | 1956 | 1957 | 1958 | 1959 | 1960 | 1961 | 1962 | 1963 | 1964 | 1965 | 1966 | 1967 | 1968 | 1969 | 1970 | 1971 | 1972 | 1973 | 1974 | 1975 | 1976 | 1977 | 1978 | 1979 | 1990 | 1991 | 1992 | 1993 | 1994 | 1995 | 1996 | 1997 | 1998 | 1999 | 2000 | 2001 | 2002 | 2003 | 2004 | 2005 | 2006 | 2007 | 2008 | 2009 | 2010 | 2011 | 2012 | 2013 | 2014 | 2015 | 2016 | 2017 | 2018 | 2019 | 202037227000 | 37935000 | 38680000 | 39370000 | 40077000 | 40857000 | 41609000 | 42326000 | 43116000 | 43945000 | 44853000 | 45573000 | 46310000 | 47268000 | 48228000 | 48973000 | 49727000 | 50480000 | 51234000 | 51411000 | 52170000 | 53246000 | 54163000 | 55086000 | 56124000 | 57016000 | 57809000 | 58638000 | 59408000 | 60087000 | 60780224 | 61314145 | 61770334 | 62194754 | 62647577 | 63140344 | 63593797 | 64035032 | 64589578 | 65166379 | 65770083 | 66482338 | 67262824 | 68193612 | 69019626 | 69893092 | 70757395 | 72180179 | 73501618 | 74852695 | 76422405 | 77776626 | 79180550 | 80569882 | 82053150 | 83567564 | 85123526 | 86735704 | 88276799 | 89834194 | 91351647 | 92951562 | 94471618 | 95938865 | 97371039 | 98694462 | 99940627 | 101148174 | 102279795 | 103390000 | 104698298 | 106093671 | 107305289 | 108402337 | 109462818 | 110607234 | 111726560 | 112904877 | 114160965 | 115471526 | 127969673 | 129623972 | 131314217 | 132989513 | 134566414 | 136097660 | 137621440 | 139209099 | 140759913 | 142272592 | 143719004 | 145077463 | 146394634 | 147679036 | 148977286 | 150319521 | 151732647 | 153166353 | 154604015 | 155964075 | 157249665 | 158370501 | 159480635 | 160545893 | 161690519 | 162832151 | 163986062 | 165008683 | 165877686 | 166637617 | 167227921 -
dcAggregate/CensusPEPSurvey_PartialAggregate
-
-
-
-
-
-
P1Y
-
- - - -19001910192019301940195019601970198019902000201020204E76E78E71E81.2E81.4E81.6E8
Count_Person_Male1111900 | 1901 | 1902 | 1903 | 1904 | 1905 | 1906 | 1907 | 1908 | 1909 | 1910 | 1911 | 1912 | 1913 | 1914 | 1915 | 1916 | 1917 | 1918 | 1919 | 1920 | 1921 | 1922 | 1923 | 1924 | 1925 | 1926 | 1927 | 1928 | 1929 | 1930 | 1931 | 1932 | 1933 | 1934 | 1935 | 1936 | 1937 | 1938 | 1939 | 1940 | 1941 | 1942 | 1943 | 1944 | 1945 | 1946 | 1947 | 1948 | 1949 | 1950 | 1951 | 1952 | 1953 | 1954 | 1955 | 1956 | 1957 | 1958 | 1959 | 1960 | 1961 | 1962 | 1963 | 1964 | 1965 | 1966 | 1967 | 1968 | 1969 | 1970 | 1971 | 1972 | 1973 | 1974 | 1975 | 1976 | 1977 | 1978 | 1979 | 1990 | 1991 | 1992 | 1993 | 1994 | 1995 | 1996 | 1997 | 1998 | 1999 | 2000 | 2001 | 2002 | 2003 | 2004 | 2005 | 2006 | 2007 | 2008 | 2009 | 2010 | 2011 | 2012 | 2013 | 2014 | 2015 | 2016 | 2017 | 2018 | 2019 | 202038867000 | 39649000 | 40483000 | 41262000 | 42089000 | 42965000 | 43841000 | 44682000 | 45594000 | 46545000 | 47554000 | 48290000 | 49025000 | 49957000 | 50883000 | 51573000 | 52234000 | 52788000 | 51974000 | 53103000 | 54291000 | 55292000 | 55886000 | 56861000 | 57985000 | 58813000 | 59588000 | 60397000 | 61101000 | 61680000 | 62296517 | 62725503 | 63070137 | 63384009 | 63726196 | 64109888 | 64459383 | 64789797 | 65235361 | 65713339 | 66352363 | 66920133 | 67596729 | 68545741 | 69377719 | 70035073 | 70631171 | 71945892 | 73129684 | 74335435 | 75849012 | 77101263 | 78372190 | 79614310 | 80972704 | 82363638 | 83779505 | 85248426 | 86605105 | 87995434 | 89319511 | 90739919 | 92066119 | 93302933 | 94517752 | 95608501 | 96619711 | 97563882 | 98426257 | 99286946 | 100353876 | 101567006 | 102590732 | 103506451 | 104391110 | 105365965 | 106308604 | 107334548 | 108423580 | 109583961 | 122162221 | 123868531 | 125579972 | 127265839 | 128869259 | 130459431 | 132045951 | 133702661 | 135355375 | 137022121 | 138443407 | 139891492 | 141230559 | 142428897 | 143828012 | 145197078 | 146647265 | 148064854 | 149489951 | 150807454 | 152077478 | 153212980 | 154397027 | 155514054 | 156695810 | 157906843 | 159085693 | 160113445 | 160960513 | 161692336 | 162256202 -
dcAggregate/CensusPEPSurvey_PartialAggregate
-
-
-
-
-
-
P1Y
-
- - - -19001910192019301940195019601970198019902000201020204E76E78E71E81.2E81.4E81.6E8
-
-
- - - - \ No newline at end of file diff --git a/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/table_mcf_nodes_population_estimate_sex.mcf b/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/table_mcf_nodes_population_estimate_sex.mcf deleted file mode 100644 index f6535818dd..0000000000 --- a/scripts/us_census/pep/us_pep_sex/output/new_rec_gen_sa/table_mcf_nodes_population_estimate_sex.mcf +++ /dev/null @@ -1,2442 +0,0 @@ -Node: population_estimate_sex/E0/736604b9-4425-bb7d-c788-9a8fde278f50 -observationDate: 1900 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 38867000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1900value=38867000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/gbwsvx3cq28nc" - -Node: population_estimate_sex/E0/95478b8e-9b15-7ea1-d9ac-a461fec317dd -observationDate: 1901 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 39649000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1901value=39649000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/23s5qjbflpzhc" - -Node: population_estimate_sex/E0/4938d26d-30e7-3bc3-2d73-6f183ce77e67 -observationDate: 1902 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 40483000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1902value=40483000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/y171j1c07xec1" - -Node: population_estimate_sex/E0/f7546b99-2ac9-998a-d369-59bd6c32ad62 -observationDate: 1903 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 41262000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1903value=41262000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/0jznt229e9ev1" - -Node: population_estimate_sex/E0/c38e7315-334b-2e47-34dd-9360aa44c6e2 -observationDate: 1904 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 42089000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1904value=42089000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/k1hfddv2endtg" - -Node: population_estimate_sex/E0/7bdea8d8-96ec-9ce0-f5d3-2df21ed03af3 -observationDate: 1905 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 42965000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1905value=42965000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/rdmj3w5d5y9vg" - -Node: population_estimate_sex/E0/6e836869-4e42-02e4-87b4-fbf38b39e623 -observationDate: 1906 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 43841000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1906value=43841000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/5gthkyp4x8343" - -Node: population_estimate_sex/E0/514e3066-5151-cfa7-0776-52b47550ebf7 -observationDate: 1907 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 44682000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1907value=44682000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/y9etrcn2ed1f5" - -Node: population_estimate_sex/E0/f9e603d4-cc76-5ee3-c32c-3f8aaad3d0f3 -observationDate: 1908 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 45594000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1908value=45594000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/ne2r3vd58se51" - -Node: population_estimate_sex/E0/338f8ab2-78f7-8a43-78c6-14ebecd2e109 -observationDate: 1909 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 46545000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1909value=46545000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/1x109c87vx19c" - -Node: population_estimate_sex/E0/f8232015-c89f-e96f-3648-38d85e7446b7 -observationDate: 1910 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 47554000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1910value=47554000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/8p48bgf9kspr6" - -Node: population_estimate_sex/E0/33d47208-1db0-3dcc-3c77-f459ddcb3663 -observationDate: 1911 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 48290000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1911value=48290000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/bez1zg3j84yff" - -Node: population_estimate_sex/E0/780d868e-233c-61c4-52e2-cb8a5a7c1c38 -observationDate: 1912 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 49025000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1912value=49025000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/rlcenmsygsme4" - -Node: population_estimate_sex/E0/1b116854-34e1-09c9-7a5b-2c86a4e5fbd5 -observationDate: 1913 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 49957000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1913value=49957000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/q12r1jnfd1myc" - -Node: population_estimate_sex/E0/0023a201-b5eb-ce29-e754-9c343038006e -observationDate: 1914 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 50883000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1914value=50883000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/yze1et1zlp3j4" - -Node: population_estimate_sex/E0/a0e20d63-1b09-e638-2bd7-1e0777228de0 -observationDate: 1915 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 51573000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1915value=51573000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/9yrccgk7befg6" - -Node: population_estimate_sex/E0/b7bb5768-d615-e914-6e1d-102208791e93 -observationDate: 1916 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 52234000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1916value=52234000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/l6g57s7m68ewh" - -Node: population_estimate_sex/E0/94b433d4-ad26-0982-5685-4e91519ca311 -observationDate: 1917 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 52788000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1917value=52788000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/mb7x5xhqmrrbh" - -Node: population_estimate_sex/E0/9b2ef32a-ffd9-2769-21a8-62261903481f -observationDate: 1918 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 51974000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1918value=51974000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/cfhgnzkkb93j5" - -Node: population_estimate_sex/E0/33d0d769-dc77-8466-59f2-0076dce15cd6 -observationDate: 1919 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 53103000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1919value=53103000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/bct70kr4lggf3" - -Node: population_estimate_sex/E0/4869a928-e627-9227-0a96-3a31fa155797 -observationDate: 1920 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 54291000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1920value=54291000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/9zb3vns1gvrn" - -Node: population_estimate_sex/E0/fa17abdd-4b9f-44dd-1347-923928290351 -observationDate: 1921 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 55292000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1921value=55292000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/ncyt7hwr120j6" - -Node: population_estimate_sex/E0/0318dee9-92a9-ff81-7508-ed6b6c8a05f0 -observationDate: 1922 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 55886000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1922value=55886000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/3f3hw9x9191s1" - -Node: population_estimate_sex/E0/0a91bd92-c917-4700-c427-5f23fff4d4a6 -observationDate: 1923 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 56861000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1923value=56861000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/mrmf30m8twqzg" - -Node: population_estimate_sex/E0/655aeb58-004c-7050-984c-95c7b453465d -observationDate: 1924 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 57985000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1924value=57985000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/mfthfrpcpbw24" - -Node: population_estimate_sex/E0/3d7f3249-5d62-e572-dd8a-cd4ec5511973 -observationDate: 1925 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 58813000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1925value=58813000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/l4eey234yfq8f" - -Node: population_estimate_sex/E0/4df76fbe-9c33-6d17-66d1-a1d1bc836f9f -observationDate: 1926 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 59588000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1926value=59588000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/151rxl9t70l43" - -Node: population_estimate_sex/E0/2521bd74-c1ef-b0be-a40d-9b4b84ab265a -observationDate: 1927 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 60397000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1927value=60397000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/h5lmsl6l9npdb" - -Node: population_estimate_sex/E0/d2d903b4-8aee-6948-fb67-e65e484fda90 -observationDate: 1928 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 61101000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1928value=61101000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/2p2mjq5k0xx45" - -Node: population_estimate_sex/E0/06d17688-9033-7556-865c-319f4d87078b -observationDate: 1929 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 61680000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1929value=61680000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/mctnjdzv163s7" - -Node: population_estimate_sex/E0/82d26a55-2ca5-e8e6-5a3c-e19c8934c4f7 -observationDate: 1930 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 62296517 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1930value=62296517observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/56mg4mxdpbxtg" - -Node: population_estimate_sex/E0/85085113-2f4d-021e-c11d-6893d9ed4b0e -observationDate: 1931 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 62725503 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1931value=62725503observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/ew3e189dczgy8" - -Node: population_estimate_sex/E0/ad5cd01a-55ff-ba59-175e-dfd69082058a -observationDate: 1932 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 63070137 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1932value=63070137observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/l1dwyq7zjv5w9" - -Node: population_estimate_sex/E0/f2a30a2d-0896-dbb3-c9df-a4395596914c -observationDate: 1933 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 63384009 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1933value=63384009observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/3rmvjz4302js2" - -Node: population_estimate_sex/E0/b97dde59-ec5e-7d82-9f60-7f1e1139a93b -observationDate: 1934 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 63726196 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1934value=63726196observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/t3v0jcr858t0b" - -Node: population_estimate_sex/E0/3de59e3c-dc3f-f6b1-4bf6-eb4f1ba7e6eb -observationDate: 1935 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 64109888 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1935value=64109888observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/qcdzp9503b8xc" - -Node: population_estimate_sex/E0/4b70dd8d-4fdd-4303-d832-aaf713748be2 -observationDate: 1936 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 64459383 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1936value=64459383observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/80z4vemghqy17" - -Node: population_estimate_sex/E0/062846a5-f33b-9ed0-ad34-d4199d977f95 -observationDate: 1937 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 64789797 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1937value=64789797observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/g08k5g3q4y416" - -Node: population_estimate_sex/E0/09784003-c19e-9704-ee00-b63a5664e8c4 -observationDate: 1938 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 65235361 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1938value=65235361observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/y7zqreqnvq5jg" - -Node: population_estimate_sex/E0/600c5fb4-c8a0-8c10-34d1-37541071f34b -observationDate: 1939 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 65713339 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1939value=65713339observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/qvc2lvmhet38b" - -Node: population_estimate_sex/E0/a4decf16-0639-b2ba-0177-089c19c71a02 -observationDate: 1940 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 66352363 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1940value=66352363observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/hkw3558k5xed5" - -Node: population_estimate_sex/E0/7a8d975c-1b84-e599-3861-85cd9b2c0beb -observationDate: 1941 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 66920133 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1941value=66920133observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/hnv9s192hwz5f" - -Node: population_estimate_sex/E0/bd66a898-644e-c801-08e6-da303380a437 -observationDate: 1942 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 67596729 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1942value=67596729observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/cv9h9bs5jfq73" - -Node: population_estimate_sex/E0/64294a5a-7d01-9352-7ac3-11aa068cabd8 -observationDate: 1943 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 68545741 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1943value=68545741observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/4fcj1rx2s8466" - -Node: population_estimate_sex/E0/86debe35-624a-8486-d596-18151698a81f -observationDate: 1944 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 69377719 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1944value=69377719observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/3qfm6xjew52gg" - -Node: population_estimate_sex/E0/3240599e-8346-397f-f516-1183c86699e7 -observationDate: 1945 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 70035073 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1945value=70035073observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/j4dvqvl1r30jd" - -Node: population_estimate_sex/E0/17463a08-ad17-ff1a-cac8-d416c202a383 -observationDate: 1946 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 70631171 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1946value=70631171observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/14l31n5xg2bd2" - -Node: population_estimate_sex/E0/12368817-bf5a-c9ba-caf7-d14b36c9c453 -observationDate: 1947 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 71945892 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1947value=71945892observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/zmhmnl214w3jf" - -Node: population_estimate_sex/E0/2cfac78d-8269-2252-c725-d45e30bd46e1 -observationDate: 1948 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 73129684 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1948value=73129684observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/98lfjqh3fvzt1" - -Node: population_estimate_sex/E0/fcd64f24-3b6c-28db-4718-0e8c39fc3644 -observationDate: 1949 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 74335435 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1949value=74335435observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/zmvz2s0q5d7l6" - -Node: population_estimate_sex/E0/01fc28bf-ae5f-9bf9-74c6-fbbdf93951a5 -observationDate: 1950 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 75849012 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1950value=75849012observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/5rx0c9s2x6bzb" - -Node: population_estimate_sex/E0/22825662-ac62-41db-98cd-14fe3cd16a10 -observationDate: 1951 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 77101263 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1951value=77101263observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/b4prprzhqdse9" - -Node: population_estimate_sex/E0/8f69a8df-1bc8-4fd8-0f40-42f6fc61221e -observationDate: 1952 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 78372190 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1952value=78372190observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/8m9vvexy8ezwb" - -Node: population_estimate_sex/E0/8019d492-8643-7c05-a0f2-2a12a9a53655 -observationDate: 1953 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 79614310 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1953value=79614310observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/hens90tpps3v5" - -Node: population_estimate_sex/E0/3e81af09-1cf9-deef-c351-253215e38503 -observationDate: 1954 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 80972704 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1954value=80972704observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/67brmewe7f0vf" - -Node: population_estimate_sex/E0/6e92e716-b07d-93b2-850c-3725f32578b1 -observationDate: 1955 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 82363638 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1955value=82363638observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/dp27yv00xgheh" - -Node: population_estimate_sex/E0/251e0d90-dde0-c5b7-7f9a-0a05b4f007a1 -observationDate: 1956 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 83779505 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1956value=83779505observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/66s734jrebm64" - -Node: population_estimate_sex/E0/99052cbf-2433-b855-cb20-881585037039 -observationDate: 1957 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 85248426 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1957value=85248426observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/1htrd73g6q616" - -Node: population_estimate_sex/E0/f7b91fbe-7548-6c44-1a91-afb156e6224f -observationDate: 1958 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 86605105 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1958value=86605105observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/kjlxfb8zfzl9b" - -Node: population_estimate_sex/E0/8729a75d-ea76-9b2a-f1ac-210422c670ae -observationDate: 1959 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 87995434 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1959value=87995434observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/t4nr3lqv47fx6" - -Node: population_estimate_sex/E0/ca0981c2-6dcc-1bd5-baae-d9858d40bb56 -observationDate: 1960 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 89319511 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1960value=89319511observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/hm2npdlc28wr9" - -Node: population_estimate_sex/E0/da95d007-cbaf-0c28-e6ac-21fff43d3b79 -observationDate: 1961 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 90739919 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1961value=90739919observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/b8l22jj7mhk2f" - -Node: population_estimate_sex/E0/606dc605-e939-8708-57c7-4eff34924ee6 -observationDate: 1962 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 92066119 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1962value=92066119observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/p0lehlxwf364c" - -Node: population_estimate_sex/E0/cdbad43b-1846-c0d9-1885-62825015d298 -observationDate: 1963 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 93302933 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1963value=93302933observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/f8c4k5p2vy546" - -Node: population_estimate_sex/E0/c292b84e-d162-abc5-d9be-c0cc11b0ed39 -observationDate: 1964 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 94517752 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1964value=94517752observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/bxmflv452v904" - -Node: population_estimate_sex/E0/8cfe837c-fa8d-7324-e953-cba908ff66fc -observationDate: 1965 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 95608501 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1965value=95608501observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/b9h62m4n9jv66" - -Node: population_estimate_sex/E0/9c1be884-fc20-8557-1aea-0614414e6f7a -observationDate: 1966 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 96619711 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1966value=96619711observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/489zwdql07jjg" - -Node: population_estimate_sex/E0/90d6868d-0317-9e09-cfb0-cc81e1c3ce3e -observationDate: 1967 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 97563882 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1967value=97563882observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/dnp8xxn3p9g5h" - -Node: population_estimate_sex/E0/1a76d992-2723-d6af-0661-4cf685122dbe -observationDate: 1968 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 98426257 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1968value=98426257observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/zngld9w955vc6" - -Node: population_estimate_sex/E0/72c4fea0-b6e6-5937-bcad-a7e1d659d953 -observationDate: 1969 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 99286946 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1969value=99286946observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/88h525y65dxj7" - -Node: population_estimate_sex/E0/74cb2f2a-7999-416f-5412-dbaa2dd05dde -observationDate: 1970 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 100353876 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1970value=100353876observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/5mgpj11hw9ppc" - -Node: population_estimate_sex/E0/62d1bb31-6e9b-eccb-c3ba-b98c08821aa6 -observationDate: 1971 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 101567006 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1971value=101567006observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/fmhcmvkjzrzr6" - -Node: population_estimate_sex/E0/4c5a0d47-22f8-0794-e937-b511b2b1ba30 -observationDate: 1972 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 102590732 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1972value=102590732observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/ln0lq9nt6jdd" - -Node: population_estimate_sex/E0/ee0a70b6-aa5c-e74c-5daa-64feb6b5c2ee -observationDate: 1973 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 103506451 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1973value=103506451observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/v9t7hr8xmz5j3" - -Node: population_estimate_sex/E0/39869871-a357-f0d8-9531-6f81ea84ed9c -observationDate: 1974 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 104391110 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1974value=104391110observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/jxd4l79dkgrq2" - -Node: population_estimate_sex/E0/6f1975d6-1031-02d4-eed3-7c5db1e7dc07 -observationDate: 1975 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 105365965 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1975value=105365965observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/lwpnqk5xdng12" - -Node: population_estimate_sex/E0/61b43097-9dc4-4182-2930-16963666dce0 -observationDate: 1976 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 106308604 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1976value=106308604observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/6z4k4w95pdlk9" - -Node: population_estimate_sex/E0/a0ca2065-4607-6be4-51c9-dd79c5a79fa7 -observationDate: 1977 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 107334548 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1977value=107334548observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/24d7exjd1epd5" - -Node: population_estimate_sex/E0/b3a94174-d318-f987-7e2b-747649c658ab -observationDate: 1978 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 108423580 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1978value=108423580observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/yw621p57zr9f8" - -Node: population_estimate_sex/E0/e86d8953-2015-2483-59ca-9f7102937888 -observationDate: 1979 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 109583961 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1979value=109583961observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/9pg0q6dhdbeg2" - -Node: population_estimate_sex/E0/0d5f34d9-b44f-f116-52c9-b6eb9d88dd83 -observationDate: 1990 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 122162221 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1990value=122162221observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/y5q8wsg4yv28h" - -Node: population_estimate_sex/E0/23885a08-63ab-8eb5-548c-73e443e99cee -observationDate: 1991 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 123868531 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1991value=123868531observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/8nx98jgfb5fjh" - -Node: population_estimate_sex/E0/22969c6a-2b55-ce2d-3e64-5dd3bf9b47a1 -observationDate: 1992 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 125579972 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1992value=125579972observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/k8724d4krhz3d" - -Node: population_estimate_sex/E0/db34101d-37ce-5d74-5497-4b25bfccffea -observationDate: 1993 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 127265839 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1993value=127265839observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/00tr6mvyk8yg5" - -Node: population_estimate_sex/E0/0f6026be-c409-3da1-19ed-4c2125bff412 -observationDate: 1994 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 128869259 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1994value=128869259observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/rjhkxdd2my2xc" - -Node: population_estimate_sex/E0/a65fe1d9-530a-c1de-ccb8-999770b17e33 -observationDate: 1995 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 130459431 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1995value=130459431observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/qwnqq0xdfb51" - -Node: population_estimate_sex/E0/61574ef7-c8ef-bcb8-2fd2-98d3d56fc104 -observationDate: 1996 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 132045951 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1996value=132045951observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/ld1dej0l4qz45" - -Node: population_estimate_sex/E0/9cd45e10-1093-b8db-0202-d409616475db -observationDate: 1997 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 133702661 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1997value=133702661observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/gwzkzjdq5f9d6" - -Node: population_estimate_sex/E0/d3a028df-cafb-bd34-39cf-df9ea1b8b108 -observationDate: 1998 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 135355375 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1998value=135355375observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/hywry53mwter1" - -Node: population_estimate_sex/E0/f8b3b43f-9592-e30a-0c26-85f04c8d0173 -observationDate: 1999 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 137022121 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=1999value=137022121observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/x4mb9jfe0t5pg" - -Node: population_estimate_sex/E0/738a631f-27e2-dfd7-0ee1-990049660aee -observationDate: 2000 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 138443407 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2000value=138443407observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/tcwcv1lbdzdk9" - -Node: population_estimate_sex/E0/be666a54-5c28-49d1-f9fa-4f7af62c8ebe -observationDate: 2001 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 139891492 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2001value=139891492observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/whktyd603b2b1" - -Node: population_estimate_sex/E0/540556cc-75ae-1d56-2304-950c830cae7d -observationDate: 2002 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 141230559 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2002value=141230559observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/te04kfkrfknp2" - -Node: population_estimate_sex/E0/6a657fa2-395e-c928-315a-4155b25d381d -observationDate: 2003 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 142428897 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2003value=142428897observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/lghhhbqpx0v7f" - -Node: population_estimate_sex/E0/5a424b6c-cb03-1768-bf2e-0a2d0f4db56b -observationDate: 2004 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 143828012 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2004value=143828012observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/eqvxf5h6ew1k8" - -Node: population_estimate_sex/E0/7eccdb3e-79fe-665a-593e-2becbfa53241 -observationDate: 2005 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 145197078 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2005value=145197078observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/pn4ry0th7p0e3" - -Node: population_estimate_sex/E0/b003a9ad-8808-b2df-7e1f-49578ba7bb44 -observationDate: 2006 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 146647265 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2006value=146647265observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/e0wj7y0c1mvb1" - -Node: population_estimate_sex/E0/1ce93fd2-6b0d-f872-4880-3099b0e11da7 -observationDate: 2007 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 148064854 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2007value=148064854observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/q6envnxsvrhn4" - -Node: population_estimate_sex/E0/53a9e986-e58f-0fb7-1d11-e773d5ee33ab -observationDate: 2008 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 149489951 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2008value=149489951observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/4jqtrfd4539jd" - -Node: population_estimate_sex/E0/d07d2241-cfec-f9ba-1bb8-48834565185a -observationDate: 2009 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 150807454 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2009value=150807454observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/mty0wqy67lch7" - -Node: population_estimate_sex/E0/e16e2c84-2368-6b37-c683-010a9f81b31b -observationDate: 2010 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 152077478 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2010value=152077478observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/hyst2yvqq9vc3" - -Node: population_estimate_sex/E0/1ec4a5c3-bb63-4e16-f637-80aed0e22031 -observationDate: 2011 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 153212980 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2011value=153212980observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/qdv9ypzrmf335" - -Node: population_estimate_sex/E0/34522a00-faa8-29de-1cc2-849561cde764 -observationDate: 2012 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 154397027 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2012value=154397027observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/7ly8kd7vnmbv8" - -Node: population_estimate_sex/E0/8f1637de-49a2-82a2-cf2e-0751aa6a33b4 -observationDate: 2013 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 155514054 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2013value=155514054observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/t1qe78ztesq14" - -Node: population_estimate_sex/E0/dd25aa5e-542c-8f00-acf9-776b36a65f23 -observationDate: 2014 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 156695810 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2014value=156695810observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/fmr683p0jvsh4" - -Node: population_estimate_sex/E0/77f41236-cf11-1d90-da5c-76c234919c67 -observationDate: 2015 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 157906843 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2015value=157906843observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/5h40cr497vvrg" - -Node: population_estimate_sex/E0/1b5bf9ab-295c-69cb-f9f4-189d9960f0c4 -observationDate: 2016 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 159085693 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2016value=159085693observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/shv82m8k46zk7" - -Node: population_estimate_sex/E0/e3e3df93-2d3a-3264-bd6f-2a0c92450fed -observationDate: 2017 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 160113445 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2017value=160113445observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/9q55cnrkqy0rc" - -Node: population_estimate_sex/E0/3a050ffc-a02f-4365-9233-a386fbcf0c6b -observationDate: 2018 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 160960513 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2018value=160960513observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/xbcg3f7e8tb16" - -Node: population_estimate_sex/E0/995ca758-ff45-7203-5d39-086eae7917b0 -observationDate: 2019 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 161692336 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2019value=161692336observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/88kmqq2prpz37" - -Node: population_estimate_sex/E0/4f552d13-7ab8-5cbf-768f-f7df36d069e0 -observationDate: 2020 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Male -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 162256202 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_MaleobservationDate=2020value=162256202observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/0bg96jykxe2k" - -Node: population_estimate_sex/E0/7c071083-0450-04f3-385a-79717437cb5a -observationDate: 1900 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 37227000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1900value=37227000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/m6887g7fczsgb" - -Node: population_estimate_sex/E0/992b3bfe-9bba-7874-9ec0-18184044104e -observationDate: 1901 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 37935000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1901value=37935000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/9qle434ze6xp9" - -Node: population_estimate_sex/E0/a05d1833-7d77-9509-79ae-0d1f7fb4205b -observationDate: 1902 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 38680000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1902value=38680000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/7l9x789rkpthc" - -Node: population_estimate_sex/E0/e523484e-eeba-74f1-ef12-de24b23fe442 -observationDate: 1903 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 39370000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1903value=39370000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/ch9l5j23h7538" - -Node: population_estimate_sex/E0/b3674e1b-4df1-6add-bac0-9e026304128f -observationDate: 1904 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 40077000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1904value=40077000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/g2qn1p4wxdczc" - -Node: population_estimate_sex/E0/fac62ce1-84b1-0174-1213-c7144f5caf1f -observationDate: 1905 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 40857000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1905value=40857000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/nxnkqz63dvry" - -Node: population_estimate_sex/E0/f473bc5a-7379-8a3e-eb31-fb1bd2103765 -observationDate: 1906 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 41609000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1906value=41609000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/j9c5275synpfb" - -Node: population_estimate_sex/E0/9af77098-e000-a2f5-89bb-ac0cb5cc4ab7 -observationDate: 1907 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 42326000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1907value=42326000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/rmzykz6nrlbs5" - -Node: population_estimate_sex/E0/1ccfa267-94f5-2234-61fa-face27d84125 -observationDate: 1908 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 43116000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1908value=43116000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/7l849x6c5zw8" - -Node: population_estimate_sex/E0/e25bfebf-8af5-e08d-b343-ad735f497423 -observationDate: 1909 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 43945000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1909value=43945000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/hed8x3m855p03" - -Node: population_estimate_sex/E0/4dad3f61-1218-8a44-b927-5c4091b34c80 -observationDate: 1910 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 44853000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1910value=44853000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/smbvzkm11mv25" - -Node: population_estimate_sex/E0/914cdda6-ce03-c981-84d2-02830933b1f4 -observationDate: 1911 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 45573000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1911value=45573000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/kd3xj4n0b6ry" - -Node: population_estimate_sex/E0/026ffa47-b4a1-ec85-1c7a-9d044a158b81 -observationDate: 1912 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 46310000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1912value=46310000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/9148s6ed6kss5" - -Node: population_estimate_sex/E0/be47a97a-d1a6-6f0e-8d28-daf9d4b29e72 -observationDate: 1913 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 47268000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1913value=47268000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/zs1gvhs9wr4mg" - -Node: population_estimate_sex/E0/8d3947af-f9e4-cb71-0573-3efb1c0a9d73 -observationDate: 1914 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 48228000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1914value=48228000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/xne6z1n38lfe1" - -Node: population_estimate_sex/E0/b2db9ce2-415a-df4c-288a-042ada0da245 -observationDate: 1915 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 48973000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1915value=48973000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/80zmqjdb0thv9" - -Node: population_estimate_sex/E0/654f1eb5-27f5-234c-b72b-02350c644ff0 -observationDate: 1916 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 49727000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1916value=49727000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/bkjw4j222y8fg" - -Node: population_estimate_sex/E0/ceed1e77-e87d-ddc4-81b7-bdcf1e44ebe5 -observationDate: 1917 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 50480000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1917value=50480000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/mymh73cjz8eld" - -Node: population_estimate_sex/E0/49cb733b-c84f-da69-f4bf-47369447cc31 -observationDate: 1918 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 51234000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1918value=51234000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/ethwsj962nzr4" - -Node: population_estimate_sex/E0/c034d7af-f2f9-ed83-8783-b932e120b9fe -observationDate: 1919 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 51411000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1919value=51411000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/t0djyrwf09xlb" - -Node: population_estimate_sex/E0/be260719-116a-283c-4e7e-3f7d13bfa407 -observationDate: 1920 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 52170000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1920value=52170000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/j4xzchxq7lp25" - -Node: population_estimate_sex/E0/b303917e-0d9e-8d58-e0e2-4d7d1227dbe6 -observationDate: 1921 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 53246000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1921value=53246000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/3j75jnnv7ggk4" - -Node: population_estimate_sex/E0/037bdba1-8d40-be5f-dde4-733bfb93d3e5 -observationDate: 1922 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 54163000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1922value=54163000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/5n9pe49w378mc" - -Node: population_estimate_sex/E0/57c4bb56-75e5-8578-e106-6e06e08d9028 -observationDate: 1923 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 55086000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1923value=55086000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/7rwc9sdc1wj89" - -Node: population_estimate_sex/E0/caf0d8af-8c49-3365-35a9-9f8c467dcf04 -observationDate: 1924 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 56124000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1924value=56124000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/f0vy5tf24cxwd" - -Node: population_estimate_sex/E0/112b1af2-2088-0d6a-dac8-6f4b15e1bbb0 -observationDate: 1925 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 57016000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1925value=57016000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/mq5f28fwdt0t4" - -Node: population_estimate_sex/E0/14b084da-6cce-6a7d-0cbb-30f96ae570a7 -observationDate: 1926 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 57809000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1926value=57809000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/mhhpej6e045v6" - -Node: population_estimate_sex/E0/e5d09c47-0dd0-ea41-0071-df498a601393 -observationDate: 1927 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 58638000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1927value=58638000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/e586lp49gmgd3" - -Node: population_estimate_sex/E0/414eb024-90d8-33d8-f20f-a2a8115b3cb1 -observationDate: 1928 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 59408000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1928value=59408000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/ezdm84226dbqh" - -Node: population_estimate_sex/E0/c99f47db-d3f5-b3ad-814c-e1cd2a14e8ca -observationDate: 1929 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 60087000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1929value=60087000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/dkgen02gpnhb6" - -Node: population_estimate_sex/E0/41a78d6c-f989-d345-105f-f05b152ea332 -observationDate: 1930 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 60780224 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1930value=60780224observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/qvvpd51sxwmrb" - -Node: population_estimate_sex/E0/3de9b86b-d05b-fb02-3488-66b6114876fd -observationDate: 1931 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 61314145 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1931value=61314145observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/zl8hccswrp72b" - -Node: population_estimate_sex/E0/dd7da605-cb4b-45ab-fccf-588f24a38fc0 -observationDate: 1932 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 61770334 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1932value=61770334observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/0ksrwd9pxdfn7" - -Node: population_estimate_sex/E0/c7ed9777-3538-3760-134f-db71c5aadabd -observationDate: 1933 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 62194754 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1933value=62194754observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/n8zq5t4qwy6d9" - -Node: population_estimate_sex/E0/f76a70a8-c5f1-8b89-b6b0-7090a15382a6 -observationDate: 1934 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 62647577 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1934value=62647577observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/de69h0dw89vc9" - -Node: population_estimate_sex/E0/d9f4038e-9c97-f716-97b7-192e051a1cae -observationDate: 1935 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 63140344 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1935value=63140344observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/5t0qlx0r22eec" - -Node: population_estimate_sex/E0/926f603f-e233-816e-2d23-4e300f8ffa8f -observationDate: 1936 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 63593797 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1936value=63593797observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/4z9q5rwjf0xd9" - -Node: population_estimate_sex/E0/14cba252-c624-0d07-a547-14595016eedf -observationDate: 1937 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 64035032 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1937value=64035032observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/08zp0rtjbst6c" - -Node: population_estimate_sex/E0/880c5177-79e4-02bf-0f97-d3d4e7b66224 -observationDate: 1938 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 64589578 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1938value=64589578observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/ec3cz8vn7d92" - -Node: population_estimate_sex/E0/1695dde7-a36d-bc51-a883-411ca3fd1969 -observationDate: 1939 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 65166379 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1939value=65166379observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/d2pfg2zjhgtd8" - -Node: population_estimate_sex/E0/c00aafed-e401-d438-1f11-bad313b748e5 -observationDate: 1940 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 65770083 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1940value=65770083observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/f5fymrpwwh30h" - -Node: population_estimate_sex/E0/9cc941be-ce4f-d592-6c07-863a8c739937 -observationDate: 1941 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 66482338 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1941value=66482338observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/kss8yjk8lq8pc" - -Node: population_estimate_sex/E0/e583c6af-33d8-8ea9-0e11-5c5a10599933 -observationDate: 1942 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 67262824 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1942value=67262824observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/fkdv7k9hz89vc" - -Node: population_estimate_sex/E0/a185d895-234d-b20e-fab1-c4bf46af3011 -observationDate: 1943 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 68193612 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1943value=68193612observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/xk6wtj0stwkt9" - -Node: population_estimate_sex/E0/21bef9a6-cb7d-728a-95b1-cca97943710d -observationDate: 1944 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 69019626 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1944value=69019626observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/cmpgxmrwprl89" - -Node: population_estimate_sex/E0/64ec3afd-51e3-21e9-3ca1-759d4aa221bd -observationDate: 1945 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 69893092 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1945value=69893092observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/t4y9drt9h12tb" - -Node: population_estimate_sex/E0/8a17ad59-9971-62b3-9b2d-dc428a695df1 -observationDate: 1946 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 70757395 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1946value=70757395observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/6wf9107kjygp3" - -Node: population_estimate_sex/E0/4d530955-8f8d-14c2-6648-9217c421bdb0 -observationDate: 1947 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 72180179 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1947value=72180179observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/ss4tfxxsfl2x7" - -Node: population_estimate_sex/E0/2473537b-5fe2-6285-dc87-71d4cbc1fb02 -observationDate: 1948 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 73501618 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1948value=73501618observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/l8ttjnh1763cc" - -Node: population_estimate_sex/E0/525d00dc-b7ec-59ae-037d-e92fcc839b67 -observationDate: 1949 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 74852695 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1949value=74852695observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/8p6mwebvhb8q8" - -Node: population_estimate_sex/E0/d8641aa6-85b2-f2ad-80af-63e28d48f4ea -observationDate: 1950 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 76422405 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1950value=76422405observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/82vdpk3bzyt29" - -Node: population_estimate_sex/E0/9977efa4-b465-f53e-8e0d-2527195ecebe -observationDate: 1951 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 77776626 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1951value=77776626observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/36pl4wkqzmjt7" - -Node: population_estimate_sex/E0/4b48bac2-3f0a-5610-d012-04901fed62bb -observationDate: 1952 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 79180550 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1952value=79180550observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/rchdznsy35c66" - -Node: population_estimate_sex/E0/38b2440f-0ef9-3efb-fd3d-f9f01f0a34a4 -observationDate: 1953 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 80569882 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1953value=80569882observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/kl32yh1v767m4" - -Node: population_estimate_sex/E0/352d0ea3-7346-9df9-c45e-dfee936af16a -observationDate: 1954 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 82053150 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1954value=82053150observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/ydp5r02ypkp29" - -Node: population_estimate_sex/E0/747378de-0def-7b8a-0055-90ec52ffcd88 -observationDate: 1955 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 83567564 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1955value=83567564observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/y0gn7dst025l" - -Node: population_estimate_sex/E0/a92ed869-60db-025d-3ec6-fdf093d3c1cf -observationDate: 1956 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 85123526 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1956value=85123526observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/f34pq1mleg7s" - -Node: population_estimate_sex/E0/0b44b71d-63f5-a440-e155-6c201372c8c9 -observationDate: 1957 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 86735704 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1957value=86735704observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/gwejcbg7zvht6" - -Node: population_estimate_sex/E0/61a9d2a5-da1c-874b-a08c-d6e5f40b916e -observationDate: 1958 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 88276799 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1958value=88276799observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/1dvjgebjebx38" - -Node: population_estimate_sex/E0/ad715747-0f9e-6253-2ff6-7691aca278e3 -observationDate: 1959 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 89834194 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1959value=89834194observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/mb06l837v0hn4" - -Node: population_estimate_sex/E0/6ce6533b-dce0-fe96-5f55-99714f6fced2 -observationDate: 1960 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 91351647 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1960value=91351647observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/612tygmk488f" - -Node: population_estimate_sex/E0/07fc9e3d-3400-0f1d-db92-355df9301134 -observationDate: 1961 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 92951562 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1961value=92951562observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/9rn9gh3x4q1xg" - -Node: population_estimate_sex/E0/355c7c3d-34f9-93d9-6d61-edd3cea81c2e -observationDate: 1962 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 94471618 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1962value=94471618observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/bgwdcst4736g6" - -Node: population_estimate_sex/E0/eba21637-258d-6fd9-5308-a1c342415eaf -observationDate: 1963 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 95938865 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1963value=95938865observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/t6ckk5efd6m45" - -Node: population_estimate_sex/E0/63cefb44-e753-0b0e-50f4-5f0ada322933 -observationDate: 1964 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 97371039 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1964value=97371039observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/5qqyrmlb4bk1d" - -Node: population_estimate_sex/E0/da257e70-c895-85cf-0417-d90090d5c6eb -observationDate: 1965 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 98694462 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1965value=98694462observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/7ngqnp8hcql86" - -Node: population_estimate_sex/E0/10d92064-16aa-633c-b64e-ff34dae02010 -observationDate: 1966 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 99940627 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1966value=99940627observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/1xbbnj5qpb6v1" - -Node: population_estimate_sex/E0/3ad902a7-8efd-9854-39ea-95dfc1f318cc -observationDate: 1967 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 101148174 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1967value=101148174observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/dg241dsqwrz06" - -Node: population_estimate_sex/E0/f46d77cf-b256-916c-346a-7c75bbdfe3d4 -observationDate: 1968 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 102279795 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1968value=102279795observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/1vqzzw6ccp6b3" - -Node: population_estimate_sex/E0/57c989fd-e80d-3dc2-61be-76b502b477c2 -observationDate: 1969 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 103390000 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1969value=103390000observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/qldr1c47wnz25" - -Node: population_estimate_sex/E0/3d4c4c11-acfe-5a0a-c5b4-edb49b31da90 -observationDate: 1970 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 104698298 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1970value=104698298observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/xgp6rbp81zhk2" - -Node: population_estimate_sex/E0/fe16120d-b748-800b-20af-adc6491ab4b6 -observationDate: 1971 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 106093671 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1971value=106093671observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/yrscj9kp652h5" - -Node: population_estimate_sex/E0/843b3774-3d7b-95e6-ee10-bbbf13ef596a -observationDate: 1972 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 107305289 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1972value=107305289observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/9b5ype24wt928" - -Node: population_estimate_sex/E0/6454c273-fbe7-83bb-eec9-4d25e46927db -observationDate: 1973 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 108402337 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1973value=108402337observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/emhxpgdwv71c3" - -Node: population_estimate_sex/E0/d58d4c36-7462-eeda-46f1-c17f63e00ae0 -observationDate: 1974 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 109462818 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1974value=109462818observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/2ctr9ebnfvr81" - -Node: population_estimate_sex/E0/2388bbb0-bc16-55b5-774b-45f188341bbc -observationDate: 1975 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 110607234 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1975value=110607234observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/t33jgh1byhx7b" - -Node: population_estimate_sex/E0/7ddbda2e-ee9f-9897-7344-bba9963fa904 -observationDate: 1976 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 111726560 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1976value=111726560observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/79pnl907lr2d4" - -Node: population_estimate_sex/E0/953fa438-e41e-aa07-6118-68538d3c064e -observationDate: 1977 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 112904877 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1977value=112904877observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/rhr5q7yxwr2z1" - -Node: population_estimate_sex/E0/5921de18-7dad-75ef-b69b-212281c2d389 -observationDate: 1978 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 114160965 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1978value=114160965observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/jvbmrhs3vskk5" - -Node: population_estimate_sex/E0/b6a2e158-6144-41c6-ed4c-51631ca9625d -observationDate: 1979 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 115471526 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1979value=115471526observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/6jbpgctvenkx4" - -Node: population_estimate_sex/E0/a81ef154-fdba-5adf-62a5-b2421cab181f -observationDate: 1990 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 127969673 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1990value=127969673observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/rxd5chwwv7d73" - -Node: population_estimate_sex/E0/962f293f-28bf-6e74-2e59-44e969028e06 -observationDate: 1991 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 129623972 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1991value=129623972observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/bfscw6msgddc1" - -Node: population_estimate_sex/E0/b27f7013-5746-f734-5b3f-71ec92798b35 -observationDate: 1992 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 131314217 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1992value=131314217observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/rd1zr08nbm8ld" - -Node: population_estimate_sex/E0/6d49b1c6-6790-5c56-854d-d87b708c50f8 -observationDate: 1993 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 132989513 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1993value=132989513observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/16jg4w68g2f8h" - -Node: population_estimate_sex/E0/94e1a0c4-5de6-e878-29f6-a3118cc578e3 -observationDate: 1994 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 134566414 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1994value=134566414observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/hlfd8emf03sm8" - -Node: population_estimate_sex/E0/be286f67-c7fb-3a59-cf88-9ba705638a1b -observationDate: 1995 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 136097660 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1995value=136097660observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/mdww0kbfzs1p4" - -Node: population_estimate_sex/E0/f1878372-6b0f-d2fc-5d44-8ef735526c91 -observationDate: 1996 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 137621440 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1996value=137621440observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/2hhbv1nmq3nqd" - -Node: population_estimate_sex/E0/36a84490-74db-359f-2f44-f7a57c1fd0de -observationDate: 1997 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 139209099 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1997value=139209099observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/kh5b4cm1p0fsf" - -Node: population_estimate_sex/E0/028614da-9b15-cdb5-7fff-578be9bad6b5 -observationDate: 1998 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 140759913 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1998value=140759913observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/7fm03x2bwxt1b" - -Node: population_estimate_sex/E0/d9714764-0b2b-25fb-fcd0-078b88eca7e7 -observationDate: 1999 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 142272592 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=1999value=142272592observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/gg27pst4xb3l9" - -Node: population_estimate_sex/E0/623e4913-fcbd-7865-668d-3fb54228ceb8 -observationDate: 2000 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 143719004 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2000value=143719004observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/z9ywk9gfgsyy4" - -Node: population_estimate_sex/E0/b4fc979a-fcdf-101f-9e15-5ecd923b4232 -observationDate: 2001 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 145077463 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2001value=145077463observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/s2s4cyggkqyd8" - -Node: population_estimate_sex/E0/e97dad0a-0b89-8e60-e106-a6a9b64634f8 -observationDate: 2002 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 146394634 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2002value=146394634observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/yespndlhd92yc" - -Node: population_estimate_sex/E0/f25f80c5-f0ed-7017-7e5f-21df9f169a07 -observationDate: 2003 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 147679036 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2003value=147679036observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/1hztdh4rb2vrg" - -Node: population_estimate_sex/E0/35183462-7311-f2c9-3184-6831e3966dc8 -observationDate: 2004 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 148977286 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2004value=148977286observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/4n9bxl9vlvryg" - -Node: population_estimate_sex/E0/b96193b7-d7af-f7af-b0b8-8de97b8fc11c -observationDate: 2005 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 150319521 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2005value=150319521observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/0v2b35t6mrlc8" - -Node: population_estimate_sex/E0/10a9c01f-3685-bcc5-79ab-57894a0ce6f6 -observationDate: 2006 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 151732647 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2006value=151732647observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/3k1vvf9p95j48" - -Node: population_estimate_sex/E0/54a11b3f-8efc-f876-94d0-0cf5070e3ada -observationDate: 2007 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 153166353 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2007value=153166353observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/ldbql7s2meh68" - -Node: population_estimate_sex/E0/4769e20c-d302-d3b4-7673-2af32d19f825 -observationDate: 2008 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 154604015 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2008value=154604015observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/3r1jr1f9ejfrc" - -Node: population_estimate_sex/E0/c59d75c2-aef4-1795-60de-559f3086d83e -observationDate: 2009 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 155964075 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2009value=155964075observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/ervnbftn3xt2g" - -Node: population_estimate_sex/E0/abfa4914-435c-e7f7-22f4-2a2559d18af9 -observationDate: 2010 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 157249665 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2010value=157249665observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/bwhf2ncer37tb" - -Node: population_estimate_sex/E0/a3530c46-7885-d674-db54-85aa7cb67a93 -observationDate: 2011 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 158370501 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2011value=158370501observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/b9hby8c604shf" - -Node: population_estimate_sex/E0/f0d765f9-899f-3db0-eafc-464bcf1b090e -observationDate: 2012 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 159480635 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2012value=159480635observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/sl0bbnm07b291" - -Node: population_estimate_sex/E0/7991bbec-cfea-c952-6cb2-bcc01f45b531 -observationDate: 2013 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 160545893 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2013value=160545893observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/61lw2cetmhyfb" - -Node: population_estimate_sex/E0/fad41f1d-2797-f4de-d0d4-694ad80a0104 -observationDate: 2014 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 161690519 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2014value=161690519observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/y1rlm329ymg9b" - -Node: population_estimate_sex/E0/08483e6b-b08d-6bc9-28f7-1e53ad4b85b4 -observationDate: 2015 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 162832151 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2015value=162832151observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/njpxntxqs8z5" - -Node: population_estimate_sex/E0/0dfde911-3527-339a-1234-b75b577708ca -observationDate: 2016 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 163986062 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2016value=163986062observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/f3y0dxwevvrbd" - -Node: population_estimate_sex/E0/d47d0793-c13b-1354-c59a-6b100c64ffe6 -observationDate: 2017 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 165008683 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2017value=165008683observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/qxebdl1k0mplg" - -Node: population_estimate_sex/E0/e5869011-44b6-ff2e-7f9a-a46fe18000b2 -observationDate: 2018 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 165877686 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2018value=165877686observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/000djxym35y76" - -Node: population_estimate_sex/E0/c164d3fd-b0f0-7db9-2c27-afe8df25f7a1 -observationDate: 2019 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 166637617 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2019value=166637617observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/ddqvb8ct7pve9" - -Node: population_estimate_sex/E0/59af57c4-4efb-d4c9-b9ef-455407f350a5 -observationDate: 2020 -observationAbout: dcid:country/USA -variableMeasured: dcid:Count_Person_Female -measurementMethod: dcid:dcAggregate/CensusPEPSurvey_PartialAggregate -value: 167227921 -typeOf: dcid:StatVarObservation -observationPeriod: "P1Y" -keyString: "observationAbout=country/USAvariableMeasured=Count_Person_FemaleobservationDate=2020value=167227921observationPeriod=P1YmeasurementMethod=dcAggregate/CensusPEPSurvey_PartialAggregate" -dcid: "dc/o/nb0dqjfhm21g1" - diff --git a/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.csv b/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.csv deleted file mode 100644 index 92c6baf467..0000000000 --- a/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.csv +++ /dev/null @@ -1,223 +0,0 @@ -Year,geo_ID,Measurement_Method,SV,Observation -1900,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,38867000 -1901,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,39649000 -1902,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,40483000 -1903,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,41262000 -1904,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,42089000 -1905,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,42965000 -1906,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,43841000 -1907,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,44682000 -1908,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,45594000 -1909,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,46545000 -1910,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,47554000 -1911,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,48290000 -1912,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,49025000 -1913,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,49957000 -1914,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,50883000 -1915,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,51573000 -1916,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,52234000 -1917,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,52788000 -1918,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,51974000 -1919,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,53103000 -1920,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,54291000 -1921,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,55292000 -1922,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,55886000 -1923,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,56861000 -1924,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,57985000 -1925,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,58813000 -1926,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,59588000 -1927,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,60397000 -1928,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,61101000 -1929,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,61680000 -1930,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,62296517 -1931,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,62725503 -1932,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,63070137 -1933,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,63384009 -1934,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,63726196 -1935,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,64109888 -1936,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,64459383 -1937,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,64789797 -1938,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,65235361 -1939,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,65713339 -1940,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,66352363 -1941,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,66920133 -1942,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,67596729 -1943,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,68545741 -1944,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,69377719 -1945,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,70035073 -1946,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,70631171 -1947,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,71945892 -1948,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,73129684 -1949,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,74335435 -1950,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,75849012 -1951,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,77101263 -1952,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,78372190 -1953,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,79614310 -1954,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,80972704 -1955,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,82363638 -1956,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,83779505 -1957,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,85248426 -1958,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,86605105 -1959,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,87995434 -1960,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,89319511 -1961,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,90739919 -1962,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,92066119 -1963,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,93302933 -1964,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,94517752 -1965,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,95608501 -1966,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,96619711 -1967,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,97563882 -1968,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,98426257 -1969,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,99286946 -1970,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,100353876 -1971,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,101567006 -1972,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,102590732 -1973,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,103506451 -1974,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,104391110 -1975,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,105365965 -1976,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,106308604 -1977,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,107334548 -1978,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,108423580 -1979,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,109583961 -1990,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,122162221 -1991,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,123868531 -1992,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,125579972 -1993,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,127265839 -1994,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,128869259 -1995,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,130459431 -1996,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,132045951 -1997,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,133702661 -1998,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,135355375 -1999,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,137022121 -2000,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,138443407 -2001,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,139891492 -2002,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,141230559 -2003,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,142428897 -2004,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,143828012 -2005,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,145197078 -2006,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,146647265 -2007,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,148064854 -2008,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,149489951 -2009,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,150807454 -2010,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,152077478 -2011,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,153212980 -2012,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,154397027 -2013,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,155514054 -2014,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,156695810 -2015,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,157906843 -2016,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,159085693 -2017,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,160113445 -2018,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,160960513 -2019,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,161692336 -2020,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Male,162256202 -1900,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,37227000 -1901,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,37935000 -1902,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,38680000 -1903,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,39370000 -1904,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,40077000 -1905,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,40857000 -1906,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,41609000 -1907,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,42326000 -1908,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,43116000 -1909,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,43945000 -1910,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,44853000 -1911,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,45573000 -1912,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,46310000 -1913,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,47268000 -1914,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,48228000 -1915,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,48973000 -1916,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,49727000 -1917,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,50480000 -1918,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,51234000 -1919,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,51411000 -1920,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,52170000 -1921,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,53246000 -1922,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,54163000 -1923,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,55086000 -1924,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,56124000 -1925,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,57016000 -1926,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,57809000 -1927,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,58638000 -1928,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,59408000 -1929,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,60087000 -1930,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,60780224 -1931,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,61314145 -1932,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,61770334 -1933,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,62194754 -1934,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,62647577 -1935,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,63140344 -1936,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,63593797 -1937,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,64035032 -1938,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,64589578 -1939,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,65166379 -1940,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,65770083 -1941,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,66482338 -1942,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,67262824 -1943,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,68193612 -1944,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,69019626 -1945,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,69893092 -1946,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,70757395 -1947,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,72180179 -1948,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,73501618 -1949,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,74852695 -1950,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,76422405 -1951,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,77776626 -1952,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,79180550 -1953,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,80569882 -1954,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,82053150 -1955,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,83567564 -1956,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,85123526 -1957,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,86735704 -1958,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,88276799 -1959,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,89834194 -1960,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,91351647 -1961,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,92951562 -1962,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,94471618 -1963,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,95938865 -1964,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,97371039 -1965,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,98694462 -1966,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,99940627 -1967,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,101148174 -1968,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,102279795 -1969,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,103390000 -1970,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,104698298 -1971,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,106093671 -1972,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,107305289 -1973,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,108402337 -1974,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,109462818 -1975,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,110607234 -1976,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,111726560 -1977,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,112904877 -1978,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,114160965 -1979,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,115471526 -1990,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,127969673 -1991,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,129623972 -1992,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,131314217 -1993,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,132989513 -1994,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,134566414 -1995,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,136097660 -1996,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,137621440 -1997,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,139209099 -1998,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,140759913 -1999,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,142272592 -2000,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,143719004 -2001,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,145077463 -2002,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,146394634 -2003,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,147679036 -2004,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,148977286 -2005,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,150319521 -2006,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,151732647 -2007,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,153166353 -2008,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,154604015 -2009,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,155964075 -2010,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,157249665 -2011,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,158370501 -2012,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,159480635 -2013,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,160545893 -2014,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,161690519 -2015,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,162832151 -2016,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,163986062 -2017,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,165008683 -2018,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,165877686 -2019,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,166637617 -2020,country/USA,dcAggregate/CensusPEPSurvey_PartialAggregate,Count_Person_Female,167227921 diff --git a/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.mcf b/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.mcf deleted file mode 100644 index 70fd7bb0dc..0000000000 --- a/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.mcf +++ /dev/null @@ -1,13 +0,0 @@ -Node: dcid:Count_Person_Female -typeOf: dcs:StatisticalVariable -populationType: dcs:Person -gender: dcs:Female -statType: dcs:measuredValue -measuredProperty: dcs:count - -Node: dcid:Count_Person_Male -typeOf: dcs:StatisticalVariable -populationType: dcs:Person -gender: dcs:Male -statType: dcs:measuredValue -measuredProperty: dcs:count \ No newline at end of file diff --git a/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.tmcf b/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.tmcf deleted file mode 100644 index 34bc31744a..0000000000 --- a/scripts/us_census/pep/us_pep_sex/output/population_estimate_sex.tmcf +++ /dev/null @@ -1,8 +0,0 @@ -Node: E:population_estimate_sex->E0 -typeOf: dcs:StatVarObservation -variableMeasured: C:population_estimate_sex->SV -measurementMethod: C:population_estimate_sex->Measurement_Method -observationAbout: C:population_estimate_sex->geo_ID -observationDate: C:population_estimate_sex->Year -observationPeriod: "P1Y" -value: C:population_estimate_sex->Observation \ No newline at end of file From a94722385f3a52f047ee837646b083d7a965ffe4 Mon Sep 17 00:00:00 2001 From: Nivedita Singh Date: Mon, 13 Jul 2026 11:30:16 +0000 Subject: [PATCH 04/13] revert changes to .gitignore --- .gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitignore b/.gitignore index 3a0ebfcab1..a05b550de3 100644 --- a/.gitignore +++ b/.gitignore @@ -25,4 +25,3 @@ import-automation/executor/config_override.json .venv/ -output/ From 69cc3f877fb43c15bd0fe9bce8a5409876512b27 Mon Sep 17 00:00:00 2001 From: Nivedita Singh Date: Mon, 13 Jul 2026 11:31:43 +0000 Subject: [PATCH 05/13] added goldns --- .../pep/us_pep_sex/golden_data/golden_summary_report.csv | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 scripts/us_census/pep/us_pep_sex/golden_data/golden_summary_report.csv diff --git a/scripts/us_census/pep/us_pep_sex/golden_data/golden_summary_report.csv b/scripts/us_census/pep/us_pep_sex/golden_data/golden_summary_report.csv new file mode 100644 index 0000000000..95ec5962c3 --- /dev/null +++ b/scripts/us_census/pep/us_pep_sex/golden_data/golden_summary_report.csv @@ -0,0 +1,3 @@ +"observationPeriods","MinDate","MeasurementMethods","Units","StatVar","NumPlaces","ScalingFactors" +"[P1Y]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate]","[]","Count_Person_Female","1","[]" +"[P1Y]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate]","[]","Count_Person_Male","1","[]" From 75b7a374021f56d96f85467fea04c46076af94f2 Mon Sep 17 00:00:00 2001 From: Nivedita Singh Date: Mon, 13 Jul 2026 11:33:43 +0000 Subject: [PATCH 06/13] added goldns --- .../golden_summary_report_national_after.csv | 23 ++++++++ .../golden_summary_report_national_before.csv | 11 ++++ .../golden_summary_report_state_after.csv | 23 ++++++++ .../golden_summary_report_state_before.csv | 9 +++ .../pep/us_pep_sexrace/manifest.json | 3 +- .../pep/us_pep_sexrace/preprocess.py | 57 ++++++++++++------- .../pep/us_pep_sexrace/validation_config.json | 47 +++++++++++++++ 7 files changed, 152 insertions(+), 21 deletions(-) create mode 100644 scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_national_after.csv create mode 100644 scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_national_before.csv create mode 100644 scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_state_after.csv create mode 100644 scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_state_before.csv create mode 100644 scripts/us_census/pep/us_pep_sexrace/validation_config.json diff --git a/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_national_after.csv b/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_national_after.csv new file mode 100644 index 0000000000..9386de7793 --- /dev/null +++ b/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_national_after.csv @@ -0,0 +1,23 @@ +"MeasurementMethods","NumPlaces","ScalingFactors","observationPeriods","Units","MinDate","StatVar" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2010","Count_Person_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Male_NativeHawaiianAndOtherPacificIslanderAlone" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Female_NativeHawaiianAndOtherPacificIslanderAlone" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Female_AsianAlone" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Female_BlackOrAfricanAmericanAlone" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2010","Count_Person_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Male_TwoOrMoreRaces" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2010","Count_Person_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Male_AsianAlone" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Female_TwoOrMoreRaces" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2010","Count_Person_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2010","Count_Person_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Male_AmericanIndianAndAlaskaNativeAlone" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2010","Count_Person_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2010","Count_Person_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Male_WhiteAlone" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Female_AmericanIndianAndAlaskaNativeAlone" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2010","Count_Person_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Male_BlackOrAfricanAmericanAlone" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Female_WhiteAlone" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2010","Count_Person_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2010","Count_Person_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces" diff --git a/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_national_before.csv b/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_national_before.csv new file mode 100644 index 0000000000..965c1402ce --- /dev/null +++ b/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_national_before.csv @@ -0,0 +1,11 @@ +"Units","NumPlaces","observationPeriods","ScalingFactors","MinDate","MeasurementMethods","StatVar" +"[]","1","[P1Y]","[]","1981","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_Male_AsianOrPacificIslander" +"[]","1","[P1Y]","[]","1981","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_Male_AmericanIndianAndAlaskaNativeAlone" +"[]","1","[P1Y]","[]","1981","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_Female_AmericanIndianAndAlaskaNativeAlone" +"[]","1","[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_Male_WhiteAlone" +"[]","1","[P1Y]","[]","1960","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_Female_BlackOrAfricanAmericanAlone" +"[]","1","[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_Female_NonWhite" +"[]","1","[P1Y]","[]","1960","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_Male_BlackOrAfricanAmericanAlone" +"[]","1","[P1Y]","[]","1981","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_Female_AsianOrPacificIslander" +"[]","1","[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_Female_WhiteAlone" +"[]","1","[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_Male_NonWhite" diff --git a/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_state_after.csv b/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_state_after.csv new file mode 100644 index 0000000000..92df5957ae --- /dev/null +++ b/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_state_after.csv @@ -0,0 +1,23 @@ +"StatVar","Units","observationPeriods","MinDate","ScalingFactors","MeasurementMethods","NumPlaces" +"Count_Person_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","[P1Y]","2010","[]","[CensusPEPSurvey_Race2000Onwards]","3203" +"Count_Person_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" +"Count_Person_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" +"Count_Person_Female_AsianAlone","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" +"Count_Person_Female_BlackOrAfricanAmericanAlone","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" +"Count_Person_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","[P1Y]","2010","[]","[CensusPEPSurvey_Race2000Onwards]","3203" +"Count_Person_Male_TwoOrMoreRaces","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" +"Count_Person_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","[P1Y]","2010","[]","[CensusPEPSurvey_Race2000Onwards]","3203" +"Count_Person_Male_AsianAlone","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" +"Count_Person_Female_TwoOrMoreRaces","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" +"Count_Person_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","[P1Y]","2010","[]","[CensusPEPSurvey_Race2000Onwards]","3203" +"Count_Person_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","[P1Y]","2010","[]","[CensusPEPSurvey_Race2000Onwards]","3203" +"Count_Person_Male_AmericanIndianAndAlaskaNativeAlone","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" +"Count_Person_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","[P1Y]","2010","[]","[CensusPEPSurvey_Race2000Onwards]","3203" +"Count_Person_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","[P1Y]","2010","[]","[CensusPEPSurvey_Race2000Onwards]","3203" +"Count_Person_Male_WhiteAlone","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" +"Count_Person_Female_AmericanIndianAndAlaskaNativeAlone","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" +"Count_Person_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","[P1Y]","2010","[]","[CensusPEPSurvey_Race2000Onwards]","3203" +"Count_Person_Male_BlackOrAfricanAmericanAlone","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" +"Count_Person_Female_WhiteAlone","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" +"Count_Person_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","[P1Y]","2010","[]","[CensusPEPSurvey_Race2000Onwards]","3203" +"Count_Person_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","[P1Y]","2010","[]","[CensusPEPSurvey_Race2000Onwards]","3203" diff --git a/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_state_before.csv b/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_state_before.csv new file mode 100644 index 0000000000..a52f73701f --- /dev/null +++ b/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_state_before.csv @@ -0,0 +1,9 @@ +"ScalingFactors","observationPeriods","MeasurementMethods","StatVar","NumPlaces","Units","MinDate" +"[]","[P1Y]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_Male_AsianOrPacificIslander","3192","[]","1981" +"[]","[P1Y]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_Male_AmericanIndianAndAlaskaNativeAlone","3192","[]","1981" +"[]","[P1Y]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_Female_AmericanIndianAndAlaskaNativeAlone","3192","[]","1981" +"[]","[P1Y]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_Male_WhiteAlone","3212","[]","1970" +"[]","[P1Y]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_Female_BlackOrAfricanAmericanAlone","3212","[]","1970" +"[]","[P1Y]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_Male_BlackOrAfricanAmericanAlone","3212","[]","1970" +"[]","[P1Y]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_Female_AsianOrPacificIslander","3192","[]","1981" +"[]","[P1Y]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_Female_WhiteAlone","3212","[]","1970" diff --git a/scripts/us_census/pep/us_pep_sexrace/manifest.json b/scripts/us_census/pep/us_pep_sexrace/manifest.json index 52be2bb440..d169819bbb 100644 --- a/scripts/us_census/pep/us_pep_sexrace/manifest.json +++ b/scripts/us_census/pep/us_pep_sexrace/manifest.json @@ -31,7 +31,8 @@ "source_files": [ "input_files/*" ], - "cron_schedule": "0 10 * * 1" + "cron_schedule": "0 10 * * 1", + "validation_config_file": "validation_config.json" } ] } \ No newline at end of file diff --git a/scripts/us_census/pep/us_pep_sexrace/preprocess.py b/scripts/us_census/pep/us_pep_sexrace/preprocess.py index 0bdbfc82ef..63244ed243 100644 --- a/scripts/us_census/pep/us_pep_sexrace/preprocess.py +++ b/scripts/us_census/pep/us_pep_sexrace/preprocess.py @@ -123,6 +123,10 @@ def downloadFiles(config_files: list, test=False): test=False ''' flag = None + if test: + shutil.rmtree(os.path.join(_MODULE_DIR, _OUTPUTFINAL), ignore_errors=True) + shutil.rmtree(os.path.join(_MODULE_DIR, _OUTPUTINTERMEDIATE), ignore_errors=True) + shutil.rmtree(os.path.join(_MODULE_DIR, __INPUTFILES), ignore_errors=True) os.system("mkdir -p " + os.path.join(_MODULE_DIR, _OUTPUTFINAL)) os.system("mkdir -p " + os.path.join(_MODULE_DIR, _OUTPUTINTERMEDIATE)) os.system("mkdir -p " + os.path.join(_MODULE_DIR, __INPUTFILES)) @@ -172,26 +176,27 @@ def downloadFiles(config_files: list, test=False): except Exception as e: logging.error(f"Failed to process {config_file}: {e}") - global _FILES_TO_DOWNLOAD - for file in _FILES_TO_DOWNLOAD: - file_name_to_save = None - url = file['download_path'] - #Calling 2023 onwards methods - try: - process_national_2020_2029(url) - except Exception as e: - logging.error( - f"Failed to process national 2020-2029 for {url}: {e}") - try: - process_county_2020_2029(url) - except Exception as e: - logging.error( - f"Failed to process county 2020-2029 for {url}: {e}") - try: - process_state_2020_2029(url) - except Exception as e: - logging.error( - f"Failed to process state 2020-2029 for {url}: {e}") + if not test: + global _FILES_TO_DOWNLOAD + for file in _FILES_TO_DOWNLOAD: + file_name_to_save = None + url = file['download_path'] + #Calling 2023 onwards methods + try: + process_national_2020_2029(url) + except Exception as e: + logging.error( + f"Failed to process national 2020-2029 for {url}: {e}") + try: + process_county_2020_2029(url) + except Exception as e: + logging.error( + f"Failed to process county 2020-2029 for {url}: {e}") + try: + process_state_2020_2029(url) + except Exception as e: + logging.error( + f"Failed to process state 2020-2029 for {url}: {e}") except Exception as e: logging.fatal(f"There is an error while downloading the files {e}") @@ -225,6 +230,9 @@ def process(config_files: list, test=False): "nationals_result_1900_1959.csv", "nationals_result_1960_1979.csv", "nationals_result_1980_1990.csv", "nationals_result_1990_2000.csv" ] + national_before_2000 = [ + f for f in national_before_2000 if os.path.exists(os.path.join(_INPUT_FILE_PATH, f)) + ] # list of state and county output files before year 2000 state_county_before_2000 = [ @@ -232,6 +240,9 @@ def process(config_files: list, test=False): "state_result_1990_2000.csv", "county_result_1970_1979.csv", "county_result_1980_1989.csv", "county_result_1990_2000.csv" ] + state_county_before_2000 = [ + f for f in state_county_before_2000 if os.path.exists(os.path.join(_INPUT_FILE_PATH, f)) + ] # list of state and county output files before after 2000 state_county_after_2000 = [ @@ -240,12 +251,18 @@ def process(config_files: list, test=False): "state_result_2020_2022.csv", "state_result_2020_2029.csv", "county_result_2020_2022.csv", "county_result_2020_2029.csv" ] + state_county_after_2000 = [ + f for f in state_county_after_2000 if os.path.exists(os.path.join(_INPUT_FILE_PATH, f)) + ] # list of national output files after year 2000 national_after_2000 = [ "nationals_result_2000_2010.csv", "nationals_result_2010_2020.csv", "nationals_result_2020_2022.csv", "nationals_result_2020_2029.csv" ] + national_after_2000 = [ + f for f in national_after_2000 if os.path.exists(os.path.join(_INPUT_FILE_PATH, f)) + ] output_files_names = { Outputfiles.NationalBefore2000.value: national_before_2000, diff --git a/scripts/us_census/pep/us_pep_sexrace/validation_config.json b/scripts/us_census/pep/us_pep_sexrace/validation_config.json new file mode 100644 index 0000000000..cd9c86f206 --- /dev/null +++ b/scripts/us_census/pep/us_pep_sexrace/validation_config.json @@ -0,0 +1,47 @@ +{ + "schema_version": "1.0", + "rules": [ + { + "rule_id": "check_deleted_records_percent", + "description": "Checks that the percentage of deleted records for the entire import is within threshold.", + "validator": "DELETED_RECORDS_PERCENT", + "params": { "threshold": 0.1} + }, + { + "rule_id": "check_goldens_national", + "description": "Validates national and state-level 2000+ data against its golden summary report.", + "validator": "GOLDENS_CHECK", + "params": { + "golden_files": "../../../../golden_data/golden_summary_report_national_after.csv", + "input_files": "../../input0/genmcf/summary_report.csv" + } + }, + { + "rule_id": "check_goldens_before_2000", + "description": "Validates data before 2000 against its golden summary report.", + "validator": "GOLDENS_CHECK", + "params": { + "golden_files": "../../../../golden_data/golden_summary_report_national_before.csv", + "input_files": "../../input1/genmcf/summary_report.csv" + } + }, + { + "rule_id": "check_goldens_after_2000", + "description": "Validates county-level 2000+ data against its golden summary report.", + "validator": "GOLDENS_CHECK", + "params": { + "golden_files": "../../../../golden_data/golden_summary_report_state_after.csv", + "input_files": "../../input2/genmcf/summary_report.csv" + } + }, + { + "rule_id": "check_goldens_after_2000", + "description": "Validates county-level 2000+ data against its golden summary report.", + "validator": "GOLDENS_CHECK", + "params": { + "golden_files": "../../../../golden_data/golden_summary_report_state_before.csv", + "input_files": "../../input3/genmcf/summary_report.csv" + } + } + ] +} From 2cdb80769d17c84f303baba8ad453a96e0f76de8 Mon Sep 17 00:00:00 2001 From: Nivedita Singh Date: Mon, 13 Jul 2026 17:04:45 +0000 Subject: [PATCH 07/13] added goldns --- .../golden_data/golden_summary_report.csv | 3420 +++++++++++++++++ .../population_estimates_by_asr/manifest.json | 1 + .../validation_config.json | 23 + 3 files changed, 3444 insertions(+) create mode 100644 scripts/us_census/pep/population_estimates_by_asr/golden_data/golden_summary_report.csv create mode 100644 scripts/us_census/pep/population_estimates_by_asr/validation_config.json diff --git a/scripts/us_census/pep/population_estimates_by_asr/golden_data/golden_summary_report.csv b/scripts/us_census/pep/population_estimates_by_asr/golden_data/golden_summary_report.csv new file mode 100644 index 0000000000..aa5d0eaab8 --- /dev/null +++ b/scripts/us_census/pep/population_estimates_by_asr/golden_data/golden_summary_report.csv @@ -0,0 +1,3420 @@ +"NumPlaces","observationPeriods","ScalingFactors","MeasurementMethods","StatVar","Units","MinDate" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_75To79Years_Female","[]","1970" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_45To49Years_Female_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_53Years_Female_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_95Years_Female_WhiteAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0To4Years_Female_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_81Years_Female_NonWhite","[]","1940" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_45Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_32Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_63Years_Female","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_60To64Years_Female","[]","1970" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_67Years_Female","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_AsianOrPacificIslander","[]","1980" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_15To19Years_Female","[]","1970" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_44Years_Female_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_5Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_70Years_Female","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_82Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_56Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_19Years_Male_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_74Years_Female","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_58Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_34Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_57Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_52Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_72Years_Female_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_90Years_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_84Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_BlackOrAfricanAmericanAlone","[]","1960" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_68Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_87Years_Male_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_79Years_Male_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_81Years_Female","[]","1940" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_66Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_82Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_45Years_Female","[]","1900" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_27Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_85Years_Female","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_19Years_Male_AsianAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20To24Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_41Years_Female","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_17Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_30Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_16Years_Male_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_24Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_78Years_Female","[]","1940" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_89Years_Female","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_58Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_19Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_38Years_Female","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_49Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_79Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_63Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_73Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_71Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_Female_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_88Years_BlackOrAfricanAmericanAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65To69Years_Male_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_55Years_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_40Years_AsianAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10To14Years_Female_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_37Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_50Years_Male_NonWhite","[]","1900" +"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_22Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_42Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_47Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_56Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_21Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_19Years_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_16Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_23Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_44Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_77Years_Male","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_86Years_Male","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_78Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_25To29Years_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75Years_NonWhite","[]","1940" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_89Years_Female_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_13Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_84Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_27Years_Female","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_16Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_31Years_Female_AsianAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25To29Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_92Years_Female","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_79Years_NonWhite","[]","1940" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_6Years_Male_NonWhite","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_12Years_Female","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_34Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_28Years_Female_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_8Years_Male_NonWhite","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_96Years_Female","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_87Years_Male","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_30Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_73Years_Male_AsianAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_80To84Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15To19Years_Male_WhiteAlone","[]","1970" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_93Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_59Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_68Years_Female_AsianAlone","[]","2000" +"3193","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_Female_AsianOrPacificIslander","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_24Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_4Years_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_91Years_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_21Years_Male_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_38Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_17Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_12Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_Female_WhiteAlone","[]","1900" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_65To69Years_Male_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_Male_AsianOrPacificIslander","[]","1980" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_30To34Years_Male_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_37Years_Male_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35To39Years_BlackOrAfricanAmericanAlone","[]","1970" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30To34Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_Male_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_61Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_67Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_BlackOrAfricanAmericanAlone","[]","1960" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5To9Years_Male_WhiteAlone","[]","1970" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_10To14Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_88Years_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_Female_WhiteAlone","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_36Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_62Years_Male_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35To39Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_49Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_77Years_NonWhite","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_76Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_43Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_68Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_22Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_3Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_55Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_6Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_18Years_Male_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_10Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_30Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_24Years_Female_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_86Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_90Years_Male_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_13Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_27Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_100Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_39Years_Male_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_97Years_Male_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_26Years_NonWhite","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_70To74Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_61Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_WhiteAlone","[]","1940" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80To84Years_Female_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_23Years_Female_AsianAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55To59Years_Female_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_45Years_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_64Years_Female_NonWhite","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_73Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_WhiteAlone","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_59Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_10Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_55To59Years_Female_AsianOrPacificIslander","[]","1990" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_96Years_WhiteAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_3Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_71Years_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55To59Years_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_Male_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3204","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_0To4Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_Male_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_55To59Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_60To64Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_90Years_Female_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_79Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_75Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_46Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_28Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_9Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_69Years_Female_TwoOrMoreRaces","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50To54Years_Male_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_10Years_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_90Years_Female_WhiteAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_23Years_Male_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_64Years_Male_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_61Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_70Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_95Years_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_72Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_70To74Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_82Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_2Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_52Years_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_24Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_32Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_Male_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_5To9Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_63Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_AsianOrPacificIslander","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_60To64Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_50Years_Female_NonWhite","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_10Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_42Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_71Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_38Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_51Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_65To69Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_66Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_69Years_Male","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_4Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_Female_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_94Years_Male","[]","1980" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_96Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_100Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60To64Years_Female_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_71Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_40Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_96Years_Male","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_36Years_Male_AsianAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_Female_AsianOrPacificIslander","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_82Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_9Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_0To4Years_Female_AsianOrPacificIslander","[]","1990" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_36Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_78Years_Female_NonWhite","[]","1940" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_89Years_Female_WhiteAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_22Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_67Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_21Years_Female_TwoOrMoreRaces","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_3Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_68Years_Male","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_98Years_Male_WhiteAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_9Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_50To54Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_95Years_Male","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65To69Years_Female_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_36Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50To54Years_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_Male_WhiteAlone","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_20Years_NonWhite","[]","1900" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_15To19Years_Male_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_34Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_Male_WhiteAlone","[]","1940" +"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30To34Years_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_30To34Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_50To54Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_96Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_33Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_7Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_29Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_37Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_18Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_31Years_Male_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75OrMoreYears_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_Female_WhiteAlone","[]","1940" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_2Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_13Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_4Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_76Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_14Years_AsianAlone","[]","2000" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_80To84Years_Male","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_67Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_57Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_59Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_BlackOrAfricanAmericanAlone","[]","1960" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5To9Years_Female_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_71Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_36Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_6Years_Female","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_84Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_10Years_Male_NonWhite","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_69Years_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_58Years_Male","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_96Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_20Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_Male_WhiteAlone","[]","1940" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50To54Years_Female_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_Female_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_91Years_Female_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_16Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_48Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_82Years_Male_AsianAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_45To49Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_65To69Years_Female_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_84Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_Female_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_47Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_74Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_28Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_95Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_BlackOrAfricanAmericanAlone","[]","1960" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_66Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_Male_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_14Years_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_31Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_94Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_8Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_51Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_55Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_63Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_17Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_61Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_40Years_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_99Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_Female_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_90Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_Male_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_65Years_NonWhite","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_85OrMoreYears_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_12Years_Female_TwoOrMoreRaces","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_89Years_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_70Years_Female_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50To54Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_62Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_56Years_Male_TwoOrMoreRaces","[]","2000" +"3204","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_44Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_32Years_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_49Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_78Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_81Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_51Years_NonWhite","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_10Years_Female_NonWhite","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45To49Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_9Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_41Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_89Years_Male","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_31Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_31Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_30To34Years_Male","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_33Years_Male_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_94Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_9Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_55To59Years_Male","[]","1970" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15To19Years_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25Years_Male_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_96Years_Male_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_Male_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_0Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_76Years_Male_AsianAlone","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_90Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_29Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_14Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_60To64Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_87Years_Female_WhiteAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75To79Years_Female_AsianOrPacificIslander","[]","1990" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_87Years_Female_BlackOrAfricanAmericanAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_9Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_75Years_Male","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_11Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_22Years_Male_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_43Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_80Years_Male_NonWhite","[]","1940" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_48Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_21Years_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_61Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_31Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_93Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65To69Years_Female_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_63Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75To79Years_Female_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_44Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_WhiteAlone","[]","1940" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_93Years_Male_WhiteAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_AsianOrPacificIslander","[]","1980" +"3143","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_1To4Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_51Years_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_93Years_WhiteAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_67Years_Male_TwoOrMoreRaces","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_55To59Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_40To44Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_55To59Years_Male_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_41Years_TwoOrMoreRaces","[]","2000" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_20To24Years_Male_AsianOrPacificIslander","[]","1990" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10To14Years_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_33Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_8Years_Female_NonWhite","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_55Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_60Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_95Years_Male_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_WhiteAlone","[]","1900" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45To49Years_BlackOrAfricanAmericanAlone","[]","1970" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_92Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_43Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_Male_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15To19Years_AsianOrPacificIslander","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_33Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_70To74Years_Male_AsianOrPacificIslander","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_50To54Years_Female","[]","1970" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_57Years_Female_TwoOrMoreRaces","[]","2000" +"3204","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_TwoOrMoreRaces","[]","2000" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_5To9Years_Male_AsianOrPacificIslander","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_97Years_Female_WhiteAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_54Years_Male_NonWhite","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_0To4Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10To14Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_Male_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50To54Years_AsianOrPacificIslander","[]","1990" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75OrMoreYears_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_29Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_Female_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_89Years_Male_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_6Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_85Years_Male","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_Female_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_3Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_22Years_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_53Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_82Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_1Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_87Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_20Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_BlackOrAfricanAmericanAlone","[]","1960" +"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_33Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_14Years_Male_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_41Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_47Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_99Years_BlackOrAfricanAmericanAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_56Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75OrMoreYears_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_50Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_43Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_47Years_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_32Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_Male_WhiteAlone","[]","1900" +"3204","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_5To9Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_58Years_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_67Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_Female_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_94Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_79Years_Male","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_31Years_Female","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_38Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_66Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_3Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5Years_Female_TwoOrMoreRaces","[]","2000" +"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75To79Years_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_70To74Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_92Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30Years_Male_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_87Years_Male_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_28Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_42Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_7Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_39Years_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_7Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_65Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_Female_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_47Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_9Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_29Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_53Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_BlackOrAfricanAmericanAlone","[]","1960" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75To79Years_Female_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_1Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_5To9Years_Female","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_83Years_Male","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_58Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_39Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_83Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_Male_AsianOrPacificIslander","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80To84Years_Female_WhiteAlone","[]","1970" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_92Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_7Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_7Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85Years_Male_BlackOrAfricanAmericanAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Male_BlackOrAfricanAmericanAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_46Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_21Years_Female_AsianAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_Male_WhiteAlone","[]","1940" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_62Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_67Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_47Years_Male","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65To69Years_Male_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_78Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_Female_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_77Years_Male_NonWhite","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_84Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_2Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_68Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_43Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_57Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_Female_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_89Years_Male_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_59Years_Female","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_83Years_Female_NonWhite","[]","1940" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_58Years_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_38Years_Male","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_13Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_48Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_40To44Years_Male_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_87Years_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_73Years_Female","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_51Years_Female","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_59Years_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75To79Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_56Years_Male","[]","1900" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80To84Years_BlackOrAfricanAmericanAlone","[]","1970" +"3204","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_0To4Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_69Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_31Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_98Years_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_22Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_52Years_Male_TwoOrMoreRaces","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_75To79Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_46Years_Female_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35To39Years_Male_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Male_WhiteAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_Male_AsianOrPacificIslander","[]","1980" +"3204","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_20To24Years_Male","[]","1970" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85Years_Female_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_71Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_57Years_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_55Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_Male_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_34Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_48Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_83Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_92Years_Female_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_22Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_95Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_70Years_AsianAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_80To84Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_40Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_31Years_Male","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25To29Years_Male_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_76Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_62Years_TwoOrMoreRaces","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_20To24Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_43Years_AsianAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_55Years_Male_NonWhite","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30To34Years_Female_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_34Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_41Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_35To39Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_56Years_Male_NonWhite","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70To74Years_Female_WhiteAlone","[]","1970" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20To24Years_Female_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_13Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60To64Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_Male_AsianOrPacificIslander","[]","1980" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_0To4Years_Male_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_72Years_Female_AsianAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_20To24Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_92Years_Male","[]","1980" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_91Years_BlackOrAfricanAmericanAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_75To79Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_99Years_Male_WhiteAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_78Years_Male_NonWhite","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_72Years_Male_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_35Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_Female_WhiteAlone","[]","1940" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_26Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_19Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_13Years_Female","[]","1900" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_50To54Years_Female_AsianOrPacificIslander","[]","1990" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85OrMoreYears_Male_NonWhite","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_78Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_27Years_Female_TwoOrMoreRaces","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30To34Years_Female_BlackOrAfricanAmericanAlone","[]","1970" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_9Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_53Years_Male_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_56Years_Female_NonWhite","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_18Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_Female_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_13Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_21Years_Male","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_40Years_Female","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_94Years_WhiteAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70To74Years_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_17Years_Male_AsianAlone","[]","2000" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30To34Years_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_22Years_Male","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_65To69Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_70Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_44Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_72Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_15Years_AsianAlone","[]","2000" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_65To69Years_Male","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_47Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_Male_WhiteAlone","[]","1900" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45To49Years_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_79Years_Female","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_73Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_48Years_Female","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_37Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_54Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_27Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_97Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_Female_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_89Years_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_66Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_77Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_73Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_5Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_98Years_Female_WhiteAlone","[]","1980" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55To59Years_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_79Years_Male_AsianAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_5To9Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_92Years_Female_BlackOrAfricanAmericanAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_86Years_Female_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_39Years_Male","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_41Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_88Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_81Years_NonWhite","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_36Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75OrMoreYears_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_75Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_78Years_Male_AsianAlone","[]","2000" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20To24Years_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_84Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_23Years_Male_AsianAlone","[]","2000" +"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_BlackOrAfricanAmericanAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_16Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25To29Years_Female_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_64Years_Male","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_74Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_88Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_46Years_Male","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_77Years_Female_NonWhite","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_63Years_Female_NonWhite","[]","1900" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_0To4Years_Male","[]","1970" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_5To9Years_Female_AsianOrPacificIslander","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_80To84Years_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_TwoOrMoreRaces","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_45To49Years_AsianAlone","[]","2000" +"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_38Years_Female_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_79Years_Male_NonWhite","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_28Years_Male_TwoOrMoreRaces","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_28Years_Male_NonWhite","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_75To79Years_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_12Years_Male_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_34Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_71Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_Female_AsianOrPacificIslander","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40To44Years_Female_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_Male_WhiteAlone","[]","1900" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_70To74Years_Female_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_Female_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35Years_Female_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_Male_WhiteAlone","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5To9Years_Male_BlackOrAfricanAmericanAlone","[]","1970" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85Years_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_73Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_81Years_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_96Years_BlackOrAfricanAmericanAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_70To74Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_45To49Years_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_8Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_26Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_10Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_52Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_57Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_47Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_56Years_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_24Years_Female","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_12Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_11Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_93Years_Male","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_49Years_Male_NonWhite","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85Years_Male_AsianOrPacificIslander","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70To74Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_56Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_72Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_Female_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_95Years_Female_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_53Years_AsianAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_85OrMoreYears_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_59Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_15Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_26Years_Male_TwoOrMoreRaces","[]","2000" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_60To64Years_Female_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_24Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_46Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_14Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_Female_WhiteAlone","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20To24Years_Male_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_66Years_Male_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_20Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_15Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_74Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_58Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_26Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_48Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_13Years_Male","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_57Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50Years_Male_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_62Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_38Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_17Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_46Years_Female","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_35Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_62Years_Female_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_18Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_77Years_Female_AsianAlone","[]","2000" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_5To9Years_Male","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_59Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_Female_AsianOrPacificIslander","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40To44Years_Female_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0To4Years_AsianOrPacificIslander","[]","1990" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55To59Years_Male_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_37Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_Female_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_14Years_Male","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_91Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_16Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_63Years_Male","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_Male_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_14Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_90Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_53Years_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_68Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_68Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_Female_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_82Years_Female_NonWhite","[]","1940" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_6Years_Male","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_88Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_4Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_53Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_BlackOrAfricanAmericanAlone","[]","1960" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5To9Years_BlackOrAfricanAmericanAlone","[]","1970" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_67Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_6Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_32Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_94Years_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_45Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_97Years_Male","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_84Years_Female_NonWhite","[]","1940" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_78Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_30Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_81Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_4Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_58Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_WhiteAlone","[]","1940" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_37Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_27Years_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_86Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_81Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_Male_AsianOrPacificIslander","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_87Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_58Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_86Years_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_37Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_92Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_27Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35Years_Female_AsianAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55To59Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_72Years_Male","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_38Years_Male_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_69Years_Male_NonWhite","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_92Years_Female_AsianOrPacificIslander","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_45To49Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_98Years_WhiteAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_Female_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_48Years_Male_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_Female_AsianOrPacificIslander","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_14Years_Male_AsianAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_59Years_Male_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_61Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_93Years_AsianOrPacificIslander","[]","1980" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40To44Years_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_26Years_Male_NonWhite","[]","1900" +"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_AmericanIndianAndAlaskaNativeAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_34Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_93Years_BlackOrAfricanAmericanAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_Male_WhiteAlone","[]","1900" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_0Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_70Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_Female_AsianOrPacificIslander","[]","1980" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_0Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_69Years_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_15Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_77Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_76Years_Male","[]","1940" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10Years_Male_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_69Years_Female_NonWhite","[]","1900" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_65To69Years_Female","[]","1970" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_70To74Years_Female","[]","1970" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_83Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_18Years_Male","[]","1900" +"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20To24Years_AsianOrPacificIslander","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_72Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_60Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_95Years_AsianOrPacificIslander","[]","1980" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_20To24Years_Female","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_16Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_49Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_97Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_57Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_1Years_Female","[]","1900" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_80To84Years_Female_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_44Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_50Years_NonWhite","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15To19Years_Female_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_Male_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_50To54Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_74Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_Female_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_78Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_38Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_88Years_Male","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20To24Years_Female_WhiteAlone","[]","1970" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_59Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_98Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_80Years_Female_NonWhite","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_72Years_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_Male_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_55Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_23Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_54Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_Male_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_25Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_12Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_36Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_72Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_35Years_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_86Years_Female_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_Male_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_1Years_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_35To39Years_Male","[]","1970" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_69Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_24Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_25Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_17Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_28Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_11Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_54Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_59Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70To74Years_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_WhiteAlone","[]","1940" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_14Years_Male_NonWhite","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_67Years_Female_NonWhite","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_15To19Years_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_80Years_NonWhite","[]","1940" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_51Years_Male","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_47Years_Male_NonWhite","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_10To14Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_Female_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_27Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_76Years_Female_NonWhite","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_2Years_Female_TwoOrMoreRaces","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_0To4Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_97Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_60To64Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_26Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_64Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_64Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_74Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_80Years_Male","[]","1940" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65To69Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_50To54Years_Male","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_45Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_64Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_Female_WhiteAlone","[]","1940" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_58Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_2Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_63Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_6Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_12Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_Female_WhiteAlone","[]","1940" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_29Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_Male_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_75OrMoreYears_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_41Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_2Years_Male","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_47Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_7Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_93Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_18Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80To84Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_38Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_37Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_26Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_98Years_Female","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_95Years_Female","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_45To49Years_Male_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_33Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_84Years_Male","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_4Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_11Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_30Years_Male","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45To49Years_AsianOrPacificIslander","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_16Years_TwoOrMoreRaces","[]","2000" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_80To84Years_Male_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_100Years_Male","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_84Years_Female","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_9Years_NonWhite","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_85OrMoreYears_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75Years_Female_NonWhite","[]","1940" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_97Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_68Years_Female_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_66Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_74Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_89Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_42Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_BlackOrAfricanAmericanAlone","[]","1960" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70To74Years_Male_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_81Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_73Years_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_Female_AsianOrPacificIslander","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_10To14Years_TwoOrMoreRaces","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_63Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_Female_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_92Years_BlackOrAfricanAmericanAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55To59Years_BlackOrAfricanAmericanAlone","[]","1970" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_19Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_54Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_86Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_61Years_Female","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_70Years_Male","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_8Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_64Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_21Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_65Years_Female","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_7Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_Male_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_BlackOrAfricanAmericanAlone","[]","1960" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_45To49Years_Female","[]","1970" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_10To14Years_Female_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_17Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_87Years_Female_AsianOrPacificIslander","[]","1980" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_30To34Years_Female","[]","1970" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_99Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_69Years_Female","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_95Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_58Years_Female","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_AsianOrPacificIslander","[]","1980" +"3204","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_57Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_72Years_Female","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_50Years_Female","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_94Years_Male_BlackOrAfricanAmericanAlone","[]","1980" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80To84Years_WhiteAlone","[]","1970" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_76Years_Female","[]","1940" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_54Years_Female","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_61Years_Male","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10To14Years_Male_BlackOrAfricanAmericanAlone","[]","1970" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_60To64Years_Male","[]","1970" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_23Years_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_39Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_48Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_83Years_Female","[]","1940" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_Female_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_82Years_AsianAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_Female_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_87Years_Female","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_43Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_43Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_23Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_46Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_24Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_36Years_Female","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_47Years_Female","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_83Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_88Years_Male_BlackOrAfricanAmericanAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_67Years_Male_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_AsianOrPacificIslander","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_28Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_88Years_Female_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_79Years_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_Male_WhiteAlone","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_61Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50To54Years_Female_WhiteAlone","[]","1970" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_46Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_27Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_52Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_31Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_58Years_Female_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_17Years_Male","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40To44Years_Male_BlackOrAfricanAmericanAlone","[]","1970" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_40To44Years_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_70Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_34Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_39Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_55To59Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_WhiteAlone","[]","1940" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_97Years_BlackOrAfricanAmericanAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_60Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_21Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_74Years_NonWhite","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50To54Years_Male_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20Years_Male_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_18Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_86Years_BlackOrAfricanAmericanAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_Female_WhiteAlone","[]","1940" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_80To84Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_41Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_42Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_BlackOrAfricanAmericanAlone","[]","1960" +"3193","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_Male_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_52Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_77Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_66Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_76Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_BlackOrAfricanAmericanAlone","[]","1960" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_56Years_Female_AsianAlone","[]","2000" +"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40To44Years_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_6Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_97Years_WhiteAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_38Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_76Years_NonWhite","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_32Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_57Years_Male_TwoOrMoreRaces","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20To24Years_Male_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_83Years_Male_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10Years_Female_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_99Years_Female_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_35Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_19Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_78Years_NonWhite","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70To74Years_BlackOrAfricanAmericanAlone","[]","1970" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_75To79Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_98Years_Female_BlackOrAfricanAmericanAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0To4Years_Male_WhiteAlone","[]","1970" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_87Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_68Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_77Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_19Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_17Years_Female_NonWhite","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30To34Years_Male_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_WhiteAlone","[]","1940" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_34Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_17Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_42Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_62Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30To34Years_Male_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_62Years_Male","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_39Years_Male_NonWhite","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_36Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_23Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_62Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_4Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_9Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_26Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_65Years_TwoOrMoreRaces","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25To29Years_Female_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_28Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_67Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_36Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_36Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80To84Years_Male_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_18Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_21Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_0Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_Female_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_97Years_Female_BlackOrAfricanAmericanAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_28Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_71Years_Male","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_35To39Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_87Years_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_15Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_83Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80To84Years_Male_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_61Years_Female_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_90Years_WhiteAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_24Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_44Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_51Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_10To14Years_Male","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_23Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_AsianOrPacificIslander","[]","1980" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_75To79Years_Male","[]","1970" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_65Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_61Years_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_30Years_Male_NonWhite","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_37Years_Female_NonWhite","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_30To34Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_86Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_77Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_80Years_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_92Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_79Years_Female_NonWhite","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_56Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_46Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_48Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_97Years_Male_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_80Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_WhiteAlone","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60To64Years_Male_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_59Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_26Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_2Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_21Years_Male_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_63Years_Male_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_46Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_36Years_Female_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_39Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_34Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_71Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_29Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_90Years_Female_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85OrMoreYears_Female_NonWhite","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_21Years_Female","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_51Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_16Years_Male","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_81Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_25To29Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_29Years_Female","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_18Years_Female","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_96Years_Female_WhiteAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_8Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_AsianOrPacificIslander","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_11Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_WhiteAlone","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_32Years_Female","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_94Years_Female","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_15Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_10Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_84Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_Female_AsianOrPacificIslander","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_87Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_2Years_NonWhite","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75OrMoreYears_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_43Years_Male","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_50To54Years_Male_AsianOrPacificIslander","[]","1990" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15To19Years_BlackOrAfricanAmericanAlone","[]","1970" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_100Years_Male_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_7Years_Female","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_25To29Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_5Years_Male_NonWhite","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_AsianAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_75To79Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_9Years_Male_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_69Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_4Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_35Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_25To29Years_Male","[]","1970" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_93Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_6Years_NonWhite","[]","1900" +"3204","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_Female_WhiteAlone","[]","1900" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_64Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_57Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_42Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_4Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_29Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_47Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_97Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_Female_WhiteAlone","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_15To19Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_Male_WhiteAlone","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_41Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_9Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_50Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_86Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_98Years_Female_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_88Years_Male_AsianOrPacificIslander","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0To4Years_Female_BlackOrAfricanAmericanAlone","[]","1970" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_35To39Years_Male_AsianOrPacificIslander","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_BlackOrAfricanAmericanAlone","[]","1960" +"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30To34Years_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_Female_WhiteAlone","[]","1940" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_91Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_54Years_Male","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_11Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_34Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_Male_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_11Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_49Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_32Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_88Years_Male_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_Female_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_31Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35To39Years_Male_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_16Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_100Years_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_81Years_Male","[]","1940" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_18Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_42Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3195","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_0Years_Female","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5To9Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_96Years_Female_BlackOrAfricanAmericanAlone","[]","1980" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_WhiteAlone","[]","1900" +"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5To9Years_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_22Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_55To59Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_67Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_24Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60To64Years_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_BlackOrAfricanAmericanAlone","[]","1960" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_WhiteAlone","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_Female_WhiteAlone","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_89Years_WhiteAlone","[]","1980" +"3143","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_1To4Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_WhiteAlone","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25To29Years_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_67Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_92Years_WhiteAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_29Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_AsianOrPacificIslander","[]","1980" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65To69Years_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_95Years_WhiteAlone","[]","1980" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_85OrMoreYears_Male","[]","1940" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_42Years_Male_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65To69Years_AsianOrPacificIslander","[]","1990" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_53Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_100Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_18Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_90Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_74Years_Female_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_88Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_51Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60Years_Male_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_31Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_89Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_14Years_Female_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_13Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_69Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10To14Years_Female_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_73Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_82Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_Female_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_66Years_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_66Years_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_23Years_Male","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_6Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_72Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_69Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75To79Years_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_9Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_50Years_Male","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_52Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_Female_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_100Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55Years_Female_TwoOrMoreRaces","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_65To69Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_94Years_Female_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_68Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_33Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_49Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_84Years_AsianAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_10To14Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_86Years_Male_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_38Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_51Years_AsianAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5To9Years_Female_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_Female_WhiteAlone","[]","1900" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60To64Years_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_91Years_Female_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_Female_WhiteAlone","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_19Years_Male","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_16Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_46Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_5To9Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_45Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_11Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45To49Years_Male_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_29Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_BlackOrAfricanAmericanAlone","[]","1960" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60To64Years_Female_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_64Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_7Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_2Years_TwoOrMoreRaces","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_10To14Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_Female_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_62Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_64Years_Male_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_35Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_AsianOrPacificIslander","[]","1980" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_33Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45Years_Female_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_62Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_31Years_TwoOrMoreRaces","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_5To9Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_18Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_53Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_87Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_45Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_22Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_49Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_15To19Years_Male","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_11Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_48Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_24Years_Male_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_25Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_6Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_6Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_Female_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_94Years_Male_WhiteAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_50To54Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_64Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_72Years_NonWhite","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_91Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_4Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_49Years_TwoOrMoreRaces","[]","2000" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_40To44Years_Female","[]","1970" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_18Years_Male_NonWhite","[]","1900" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_40To44Years_Female_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_13Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_60Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_21Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_26Years_Male_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_15Years_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_76Years_Male_NonWhite","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_20Years_Female_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_98Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_69Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_5Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75Years_Male_AsianAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70To74Years_Male_BlackOrAfricanAmericanAlone","[]","1970" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_65Years_Male_NonWhite","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_96Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_82Years_NonWhite","[]","1940" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_35To39Years_Female","[]","1970" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_60Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_44Years_Male_NonWhite","[]","1900" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_20To24Years_Female_AsianOrPacificIslander","[]","1990" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_11Years_Female_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_41Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_20To24Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_14Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_13Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_39Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_37Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_3Years_Male_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_11Years_Male_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_100Years_Male_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_25Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_59Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_16Years_Female_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_19Years_Female","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_12Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_54Years_Female_NonWhite","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_29Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_54Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_68Years_Male_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_86Years_Male_BlackOrAfricanAmericanAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_32Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_90Years_Female","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_21Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_50Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_78Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_32Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_78Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_52Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_3Years_Female","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_83Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_7Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_1Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_74Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_51Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_73Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_77Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_41Years_Female_TwoOrMoreRaces","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_70To74Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_7Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_Female_AsianOrPacificIslander","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_TwoOrMoreRaces","[]","2000" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_30To34Years_Female_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_12Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_Female_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_98Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_70To74Years_Male","[]","1970" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_49Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3143","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_1To4Years_Male","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_27Years_Male","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_37Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_2Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_60Years_Female","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_77Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_3Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_66Years_Female","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_64Years_Female","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_61Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_27Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35To39Years_Female_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_Female_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_94Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_14Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_99Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_8Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_99Years_Male","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_71Years_Female","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_58Years_Male_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_73Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_71Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_77Years_Female","[]","1940" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_55Years_Female","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75To79Years_Male_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_Female_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_75Years_Female","[]","1940" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_53Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_81Years_Male_AsianAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_TwoOrMoreRaces","[]","2000" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25To29Years_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_5Years_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_42Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_3Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_Female_AsianOrPacificIslander","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40To44Years_Male_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_4Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_60Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_81Years_Male_NonWhite","[]","1940" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_63Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_59Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_82Years_Male_NonWhite","[]","1940" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_29Years_Male","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85Years_Male_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_54Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_44Years_Male_AsianAlone","[]","2000" +"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_39Years_Female_AsianAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_30To34Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_46Years_Female_NonWhite","[]","1900" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_98Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75To79Years_Male_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_52Years_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_8Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_58Years_AsianAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15To19Years_Male_BlackOrAfricanAmericanAlone","[]","1970" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_49Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_65Years_Male","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_60Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_100Years_Female_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_25Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_99Years_Male_BlackOrAfricanAmericanAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_32Years_Female_NonWhite","[]","1900" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5To9Years_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_52Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_Female_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_52Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_48Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_30To34Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_22Years_Female","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_WhiteAlone","[]","1940" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_19Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_30Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_17Years_Female","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_91Years_Male","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_93Years_Female","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_20To24Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_Female_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_90Years_Male_BlackOrAfricanAmericanAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_0Years_Male_NonWhite","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Male_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_32Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_47Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_97Years_Female","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_74Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_33Years_Female","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_8Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_68Years_Male_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_89Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_99Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_52Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_2Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_82Years_Female","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_27Years_Male_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_26Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_44Years_Female","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_86Years_Female","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_34Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_91Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_74Years_Male","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_75OrMoreYears_Female","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_AsianAlone","[]","2000" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_Male_WhiteAlone","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_49Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_Male_WhiteAlone","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85Years_WhiteAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_20To24Years_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_5Years_Female_NonWhite","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85OrMoreYears_NonWhite","[]","1940" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_50To54Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_0To4Years_Female","[]","1970" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_34Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_53Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_48Years_Male_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_39Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_TwoOrMoreRaces","[]","2000" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40To44Years_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_89Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_9Years_Male_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_89Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_82Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_95Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3193","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_AsianOrPacificIslander","[]","1990" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_94Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_44Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35To39Years_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_81Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_23Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_86Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45To49Years_Female_BlackOrAfricanAmericanAlone","[]","1970" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_2Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_11Years_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_19Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0To4Years_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_AsianOrPacificIslander","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_54Years_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_92Years_Male_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35To39Years_Female_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_79Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_76Years_Female_TwoOrMoreRaces","[]","2000" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_29Years_Female_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_2Years_Male_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_22Years_Female_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45To49Years_Female_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_69Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_7Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_44Years_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_93Years_Female_WhiteAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_65To69Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_60To64Years_Male_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_33Years_Female_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_21Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_33Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_Female_WhiteAlone","[]","1940" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_25To29Years_Female","[]","1970" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_BlackOrAfricanAmericanAlone","[]","1960" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_15To19Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_22Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_Female_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_67Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_3Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_12Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_66Years_Male","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_73Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_3Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75Years_Male_NonWhite","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_12Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_4Years_Male_AsianAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_37Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_98Years_Male","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_25To29Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_57Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60To64Years_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_100Years_BlackOrAfricanAmericanAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_83Years_NonWhite","[]","1940" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_37Years_Male","[]","1900" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25To29Years_Male_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_28Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_16Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0To4Years_Male_BlackOrAfricanAmericanAlone","[]","1970" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_41Years_Male_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_40Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_25Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_15Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_24Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_42Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_71Years_Male_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_16Years_Female_NonWhite","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_41Years_Male","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_44Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_91Years_Female","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_55To59Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_35Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_36Years_Female_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_94Years_Female_BlackOrAfricanAmericanAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_99Years_Female","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_40To44Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55To59Years_Male_WhiteAlone","[]","1970" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_45To49Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_66Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75OrMoreYears_WhiteAlone","[]","1900" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_55To59Years_Female","[]","1970" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_96Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_33Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_88Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_80Years_Female","[]","1940" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Female_WhiteAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_84Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_1Years_Male_NonWhite","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_29Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_Female_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_88Years_Female","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_85OrMoreYears_Female","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_77Years_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_30To34Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_64Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_71Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_68Years_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_15To19Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_3Years_TwoOrMoreRaces","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_35To39Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_20Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_63Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_3Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_43Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_80Years_AsianAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_20Years_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_30Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_93Years_Female_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20Years_Female_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_Female_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_91Years_Male_WhiteAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_14Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_100Years_Female_BlackOrAfricanAmericanAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_43Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_76Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_68Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_74Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_4Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_Female_WhiteAlone","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_27Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75To79Years_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_28Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_99Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_37Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_49Years_Male","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_94Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_41Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_Male_AsianOrPacificIslander","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_60To64Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_Male_WhiteAlone","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_93Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_96Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_Female_AsianOrPacificIslander","[]","1980" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0To4Years_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_56Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_20Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45Years_Male_AsianAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55To59Years_Female_BlackOrAfricanAmericanAlone","[]","1970" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0To4Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_100Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_90Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10To14Years_WhiteAlone","[]","1970" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_91Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65To69Years_WhiteAlone","[]","1970" +"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_36Years_Male","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_8Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_2Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_Male_WhiteAlone","[]","1940" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_99Years_Female_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_WhiteAlone","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_47Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_17Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_24Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_35To39Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_63Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_13Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_76Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_92Years_Male_BlackOrAfricanAmericanAlone","[]","1980" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_45To49Years_Male","[]","1970" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_45Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_7Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_65To69Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_65Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_12Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_79Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_52Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_24Years_Male","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_11Years_Male","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Female_TwoOrMoreRaces","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10To14Years_Male_WhiteAlone","[]","1970" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_18Years_Female_NonWhite","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_98Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_13Years_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_40To44Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_49Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_Female_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_6Years_Male_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_79Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_79Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_34Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_32Years_Male","[]","1900" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25To29Years_WhiteAlone","[]","1970" +"3143","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_1To4Years_WhiteAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_84Years_NonWhite","[]","1940" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_25To29Years_Male_AsianOrPacificIslander","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15To19Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_81Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_Male_WhiteAlone","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_51Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_32Years_Female_TwoOrMoreRaces","[]","2000" +"3143","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_1To4Years_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_3Years_AsianAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60To64Years_Male_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_62Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_15To19Years_Female_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_Male_AsianOrPacificIslander","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_57Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_15To19Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_17Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_35Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65Years_Male_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_75Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_26Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_5Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_Female_AsianOrPacificIslander","[]","1980" +"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35To39Years_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_88Years_Female_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_42Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_54Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_Male_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75Years_Female_TwoOrMoreRaces","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_AsianAlone","[]","2000" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_40To44Years_Male","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_Female_WhiteAlone","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_35To39Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_100Years_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_64Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_13Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40To44Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_8Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_74Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50To54Years_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_Female_AsianOrPacificIslander","[]","1980" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_12Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_56Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_31Years_Female_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_90Years_Male","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_Male_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60Years_Male_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_93Years_Male_BlackOrAfricanAmericanAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_63Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_54Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_61Years_Male_AsianAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75To79Years_Male_WhiteAlone","[]","1970" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_83Years_Male_NonWhite","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_23Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15To19Years_Female_WhiteAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_73Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_1Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_27Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_53Years_Male","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_53Years_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_39Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_42Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_99Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_46Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_83Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_38Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_39Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_43Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40Years_Male_TwoOrMoreRaces","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_100Years_Female","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_Female_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_99Years_WhiteAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_91Years_Male_BlackOrAfricanAmericanAlone","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_72Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_Male_WhiteAlone","[]","1900" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_62Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3143","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_1To4Years_Female","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_76Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_59Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_7Years_Male_AsianAlone","[]","2000" +"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Female_BlackOrAfricanAmericanAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_25To29Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_BlackOrAfricanAmericanAlone","[]","1960" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_71Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_48Years_Female_TwoOrMoreRaces","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_43Years_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_4Years_Female_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_40Years_Male_NonWhite","[]","1900" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_35To39Years_Female_AsianOrPacificIslander","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_57Years_Male","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_61Years_Male_NonWhite","[]","1900" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_73Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_Female_WhiteAlone","[]","1900" +"3204","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_0To4Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_8Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_40To44Years_AsianAlone","[]","2000" +"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10To14Years_AsianOrPacificIslander","[]","1990" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_51Years_Male_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_78Years_Male","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_52Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_25Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_Male_WhiteAlone","[]","1940" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_43Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_33Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_WhiteAlone","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_80To84Years_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85Years_Female_WhiteAlone","[]","1980" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_33Years_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_56Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_25Years_Female","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_14Years_Female","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_Female_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_91Years_Female_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_84Years_Male_NonWhite","[]","1940" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_98Years_Male_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_38Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_28Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_53Years_Male_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_66Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_83Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40Years_Female_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_51Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_11Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70Years_Female_AsianAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_22Years_Female_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_Male_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_42Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_23Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_Male_AsianOrPacificIslander","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_12Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_44Years_Female_TwoOrMoreRaces","[]","2000" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_80To84Years_Female","[]","1970" +"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20To24Years_BlackOrAfricanAmericanAlone","[]","1970" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_Male_WhiteAlone","[]","1940" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_6Years_Male_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_97Years_Male_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_54Years_Male_TwoOrMoreRaces","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3195","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_0Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_62Years_Male_TwoOrMoreRaces","[]","2000" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_25To29Years_Female_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_95Years_Male_BlackOrAfricanAmericanAlone","[]","1980" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_Female_WhiteAlone","[]","1940" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_46Years_Male_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_23Years_AsianAlone","[]","2000" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_17Years_Female_TwoOrMoreRaces","[]","2000" +"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80To84Years_AsianOrPacificIslander","[]","1990" +"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_10To14Years_Female","[]","1970" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_82Years_Male","[]","1940" +"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_AsianAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_19Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_28Years_Male","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_8Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_96Years_Male_BlackOrAfricanAmericanAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_Female_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_Female_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_39Years_Female","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70Years_Male_TwoOrMoreRaces","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45To49Years_Male_BlackOrAfricanAmericanAlone","[]","1970" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_0Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_Female_WhiteAlone","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_Male_AsianOrPacificIslander","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_19Years_Male_TwoOrMoreRaces","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_40Years_Female_NonWhite","[]","1900" +"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_Male_AsianOrPacificIslander","[]","1980" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_26Years_Female_NonWhite","[]","1900" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_10To14Years_Male_AsianOrPacificIslander","[]","1990" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_48Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_BlackOrAfricanAmericanAlone","[]","1960" +"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_95Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_1Years_AsianAlone","[]","2000" +"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70To74Years_Female_BlackOrAfricanAmericanAlone","[]","1970" +"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_5Years_NonWhite","[]","1900" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_Male_BlackOrAfricanAmericanAlone","[]","1960" +"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_8Years_Female_TwoOrMoreRaces","[]","2000" diff --git a/scripts/us_census/pep/population_estimates_by_asr/manifest.json b/scripts/us_census/pep/population_estimates_by_asr/manifest.json index 65933949af..45102b1b85 100644 --- a/scripts/us_census/pep/population_estimates_by_asr/manifest.json +++ b/scripts/us_census/pep/population_estimates_by_asr/manifest.json @@ -20,6 +20,7 @@ "input_files/*" ], "cron_schedule": "0 05 * * 1", + "validation_config_file": "validation_config.json", "resource_limits": { "cpu": 16, "memory": 256, diff --git a/scripts/us_census/pep/population_estimates_by_asr/validation_config.json b/scripts/us_census/pep/population_estimates_by_asr/validation_config.json new file mode 100644 index 0000000000..8741a1f351 --- /dev/null +++ b/scripts/us_census/pep/population_estimates_by_asr/validation_config.json @@ -0,0 +1,23 @@ +{ + "schema_version": "1.0", + "rules": [ + { + "rule_id": "check_deleted_records_percent", + "description": "Checks that the percentage of deleted points is within the threshold.", + "validator": "DELETED_RECORDS_PERCENT", + "params": { + "threshold": 0.1 + } + }, + { + "rule_id": "check_goldens_summary_report", + "validator": "GOLDENS_CHECK", + "params": { + "golden_files": "../../../../golden_data/golden_summary_report.csv" + } + } + ] +} + + + From ce51021075db04819128117ec6c71ee5515dd9ac Mon Sep 17 00:00:00 2001 From: Nivedita Singh Date: Sun, 26 Jul 2026 16:03:37 +0000 Subject: [PATCH 08/13] modified py scripts as per new pandas update --- .../monthly_population_estimate/preprocess.py | 6 +- .../county_1990_2000.py | 2 +- .../national_1980_1989.py | 2 +- .../state_1990_2000.py | 2 +- scripts/us_census/pep/us_pep_sex/process.py | 105 +++++++----------- .../us_pep_sexrace/county/county_1990_2000.py | 2 +- .../national/national_1980_1990.py | 2 +- .../national/national_1990_2000.py | 2 +- .../pep/us_pep_sexrace/preprocess.py | 57 ++++------ .../us_pep_sexrace/state/state_1980_1990.py | 2 +- .../us_pep_sexrace/state/state_1990_2000.py | 2 +- 11 files changed, 74 insertions(+), 110 deletions(-) diff --git a/scripts/us_census/pep/monthly_population_estimate/preprocess.py b/scripts/us_census/pep/monthly_population_estimate/preprocess.py index 50ba9fc209..e243cde387 100644 --- a/scripts/us_census/pep/monthly_population_estimate/preprocess.py +++ b/scripts/us_census/pep/monthly_population_estimate/preprocess.py @@ -585,10 +585,10 @@ def _concat_cols(col: pd.Series) -> pd.Series: Returns: res (Series) : Concatenated DataFrame Columns """ - res = col[0] - if col[1] is None: + res = col.iloc[0] + if col.iloc[1] is None: return res - res = col[0] + ' ' + col[1] + res = col.iloc[0] + ' ' + col.iloc[1] return res diff --git a/scripts/us_census/pep/population_estimates_by_asr/county_1990_2000.py b/scripts/us_census/pep/population_estimates_by_asr/county_1990_2000.py index 728c76dd6e..b8c23a3c58 100644 --- a/scripts/us_census/pep/population_estimates_by_asr/county_1990_2000.py +++ b/scripts/us_census/pep/population_estimates_by_asr/county_1990_2000.py @@ -42,7 +42,7 @@ def county1990(output_folder: str): '/popest/tables/1990-2000/counties/asrh/casrh'+str(j)+'.txt' cols=['Year','geo_ID','Race',0,1,2,3,4,5,6,7\ ,8,9,10,11,12,13,14,15,16,17] - df = pd.read_table(url,index_col=False,delim_whitespace=True\ + df = pd.read_table(url,index_col=False,sep=r'\s+'\ ,skiprows=16,skipfooter=14,engine='python',names=cols,\ encoding='ISO-8859-1') #Writing raw data to csv diff --git a/scripts/us_census/pep/population_estimates_by_asr/national_1980_1989.py b/scripts/us_census/pep/population_estimates_by_asr/national_1980_1989.py index b58f77461f..0bb668e9b8 100644 --- a/scripts/us_census/pep/population_estimates_by_asr/national_1980_1989.py +++ b/scripts/us_census/pep/population_estimates_by_asr/national_1980_1989.py @@ -91,7 +91,7 @@ def national1980(url_file: str, output_folder: str): # Delimitng the columns by whitespace. df = pd.read_table(file, index_col=False, - delim_whitespace=True, + sep=r'\s+', engine='python', names=cols) df = df.loc[df['0'].isin(['2I', '9P'])] diff --git a/scripts/us_census/pep/population_estimates_by_asr/state_1990_2000.py b/scripts/us_census/pep/population_estimates_by_asr/state_1990_2000.py index 4db4b7e616..99921edd1b 100644 --- a/scripts/us_census/pep/population_estimates_by_asr/state_1990_2000.py +++ b/scripts/us_census/pep/population_estimates_by_asr/state_1990_2000.py @@ -29,7 +29,7 @@ def state1990(url_file: str, output_folder: str): # Used to collect data after every loop for every file's df. final_df = pd.DataFrame() for url in _urls: - df = pd.read_table(url, skiprows=15, delim_whitespace=True, header=None) + df = pd.read_table(url, skiprows=15, sep=r'\s+', header=None) #Copying the raw data filename = urlparse(url).path.split('/')[-1] df.to_csv(os.path.join(os.path.dirname(os.path.abspath(__file__)), diff --git a/scripts/us_census/pep/us_pep_sex/process.py b/scripts/us_census/pep/us_pep_sex/process.py index 28337d0216..9dea592453 100644 --- a/scripts/us_census/pep/us_pep_sex/process.py +++ b/scripts/us_census/pep/us_pep_sex/process.py @@ -441,12 +441,12 @@ def _state_1980_1990(file_path: str) -> pd.DataFrame: if year == 1987: df = pd.read_table(file_path, skiprows=29, - delim_whitespace=True, + sep=r'\s+', names=column_names) else: df = pd.read_table(file_path, skiprows=28, - delim_whitespace=True, + sep=r'\s+', names=column_names) df['geo_ID'] = 'geoId/' + (df['geo_ID'].map(str)).str.zfill(2) df['Year'] = year @@ -736,7 +736,7 @@ def _county_1990_2000(file_path: str) -> pd.DataFrame: """ try: column_names = ['Year', 'geo_ID', 'Age', 'Race-Sex', 'Ethnic', 'Value'] - df = pd.read_table(file_path, delim_whitespace=True, header=None) + df = pd.read_table(file_path, sep=r'\s+', header=None) df.columns = column_names df['Year'] = '19' + df['Year'].astype(str) df['geo_ID'] = 'geoId/' + (df['geo_ID'].map(str)).str.zfill(5) @@ -995,7 +995,7 @@ def process(self): Returns: None """ - ip_files = sorted(os.listdir(self._input_path)) + ip_files = os.listdir(self._input_path) ip_files = [self._input_path + os.sep + file for file in ip_files] # Creating Output Directory @@ -1213,8 +1213,7 @@ def add_future_year_urls(): try: check_url = requests.head(url_to_check, - allow_redirects=True, - timeout=10) + allow_redirects=True) if check_url.status_code == 200: _FILES_TO_DOWNLOAD.append( {"download_path": url_to_check}) @@ -1222,7 +1221,6 @@ def add_future_year_urls(): except requests.exceptions.RequestException as e: logging.error( f"URL is not accessible {url_to_check} due to {e}") - time.sleep(0.05) else: # This URL does not contain {i}, so we only need to process it once per year url_to_check = url.format(YEAR=YEAR) @@ -1233,8 +1231,7 @@ def add_future_year_urls(): try: check_url = requests.head(url_to_check, - allow_redirects=True, - timeout=10) + allow_redirects=True) if check_url.status_code == 200: _FILES_TO_DOWNLOAD.append( {"download_path": url_to_check}) @@ -1249,7 +1246,6 @@ def add_future_year_urls(): except requests.exceptions.RequestException as e: logging.error( f"URL is not accessible {url_to_check} due to {e}") - time.sleep(0.05) def cleanup(): @@ -1307,61 +1303,46 @@ def download_files(): continue headers = {'User-Agent': 'Mozilla/5.0'} - max_file_retries = 3 - file_download_success = False + try: + with session.get(url, stream=True, timeout=120, + headers=headers) as response: + response.raise_for_status() + + content_type = response.headers.get('Content-Type', '') - for attempt in range(max_file_retries): - try: - # Dynamically increase timeout on subsequent retries - current_timeout = 120 + (attempt * 60) - with session.get(url, stream=True, timeout=current_timeout, - headers=headers) as response: - response.raise_for_status() + # Minimal fix: Log error and continue to skip HTML pages + if 'html' in content_type.lower(): + logging.error( + f"Server returned HTML error page for URL: {url}. Skipping." + ) + continue - content_type = response.headers.get('Content-Type', '') + if response.status_code == 200: + with tempfile.NamedTemporaryFile(delete=False) as tmp_file: + for chunk in response.iter_content(chunk_size=8192): + if chunk: + tmp_file.write(chunk) + tmp_file_path = tmp_file.name - # Minimal fix: Log error and continue to skip HTML pages - if 'html' in content_type.lower(): - logging.error( - f"Server returned HTML error page for URL: {url}. Skipping." - ) - break - - if response.status_code == 200: - with tempfile.NamedTemporaryFile(delete=False) as tmp_file: - for chunk in response.iter_content(chunk_size=8192): - if chunk: - tmp_file.write(chunk) - tmp_file_path = tmp_file.name - - # Copy to local destination - shutil.copy( - tmp_file_path, - os.path.join(_INPUT_FILE_PATH, file_name_to_save)) - - # Move to gcs destination (optimized from shutil.copy + os.remove) - shutil.move( - tmp_file_path, - os.path.join(_GCS_FOLDER_PERSISTENT_PATH, - file_name_to_save)) - - file_to_download['is_downloaded'] = True - logging.info(f"Downloaded file: {url}") - file_download_success = True - break - - except Exception as e: - logging.warning(f"Attempt {attempt + 1} failed downloading {url}: {e}") - if attempt < max_file_retries - 1: - # Exponential backoff: 5s, 10s... - time.sleep(5 * (attempt + 1)) - else: - file_to_download['is_downloaded'] = False - logging.error(f"Failed to download {url} after {max_file_retries} attempts.") - raise - - if file_download_success: - time.sleep(1) + # Copy to local destination + shutil.copy( + tmp_file_path, + os.path.join(_INPUT_FILE_PATH, file_name_to_save)) + + # Move to gcs destination (optimized from shutil.copy + os.remove) + shutil.move( + tmp_file_path, + os.path.join(_GCS_FOLDER_PERSISTENT_PATH, + file_name_to_save)) + + file_to_download['is_downloaded'] = True + logging.info(f"Downloaded file: {url}") + + except Exception as e: + file_to_download['is_downloaded'] = False + logging.error(f"Error downloading {url}: {e}") + raise + time.sleep(1) return True diff --git a/scripts/us_census/pep/us_pep_sexrace/county/county_1990_2000.py b/scripts/us_census/pep/us_pep_sexrace/county/county_1990_2000.py index 5f3225972e..25be072513 100644 --- a/scripts/us_census/pep/us_pep_sexrace/county/county_1990_2000.py +++ b/scripts/us_census/pep/us_pep_sexrace/county/county_1990_2000.py @@ -57,7 +57,7 @@ def process_county_1990_2000(url: str) -> pd.DataFrame: # reading the input file and converting to dataframe df = pd.read_table(_url, index_col=False, - delim_whitespace=True, + sep=r'\s+', skiprows=16, skipfooter=14, engine='python', diff --git a/scripts/us_census/pep/us_pep_sexrace/national/national_1980_1990.py b/scripts/us_census/pep/us_pep_sexrace/national/national_1980_1990.py index 6d2d5ab4db..f7db2082e3 100644 --- a/scripts/us_census/pep/us_pep_sexrace/national/national_1980_1990.py +++ b/scripts/us_census/pep/us_pep_sexrace/national/national_1980_1990.py @@ -48,7 +48,7 @@ def process_national_1980_1990(url: str) -> pd.DataFrame: # reading the csv input file df = pd.read_table(url, index_col=False, - delim_whitespace=True, + sep=r'\s+', engine='python', names=_cols) #Saving input file to local diff --git a/scripts/us_census/pep/us_pep_sexrace/national/national_1990_2000.py b/scripts/us_census/pep/us_pep_sexrace/national/national_1990_2000.py index f12c4c7769..3f7689e9d4 100644 --- a/scripts/us_census/pep/us_pep_sexrace/national/national_1990_2000.py +++ b/scripts/us_census/pep/us_pep_sexrace/national/national_1990_2000.py @@ -41,7 +41,7 @@ def process_national_1990_2000(urls: str) -> pd.DataFrame: df = pd.read_table(url, skiprows=15, header=None, - delim_whitespace=True, + sep=r'\s+', index_col=False, engine='python') df.to_csv(_CODEDIR + "/../input_files/" + diff --git a/scripts/us_census/pep/us_pep_sexrace/preprocess.py b/scripts/us_census/pep/us_pep_sexrace/preprocess.py index 63244ed243..0bdbfc82ef 100644 --- a/scripts/us_census/pep/us_pep_sexrace/preprocess.py +++ b/scripts/us_census/pep/us_pep_sexrace/preprocess.py @@ -123,10 +123,6 @@ def downloadFiles(config_files: list, test=False): test=False ''' flag = None - if test: - shutil.rmtree(os.path.join(_MODULE_DIR, _OUTPUTFINAL), ignore_errors=True) - shutil.rmtree(os.path.join(_MODULE_DIR, _OUTPUTINTERMEDIATE), ignore_errors=True) - shutil.rmtree(os.path.join(_MODULE_DIR, __INPUTFILES), ignore_errors=True) os.system("mkdir -p " + os.path.join(_MODULE_DIR, _OUTPUTFINAL)) os.system("mkdir -p " + os.path.join(_MODULE_DIR, _OUTPUTINTERMEDIATE)) os.system("mkdir -p " + os.path.join(_MODULE_DIR, __INPUTFILES)) @@ -176,27 +172,26 @@ def downloadFiles(config_files: list, test=False): except Exception as e: logging.error(f"Failed to process {config_file}: {e}") - if not test: - global _FILES_TO_DOWNLOAD - for file in _FILES_TO_DOWNLOAD: - file_name_to_save = None - url = file['download_path'] - #Calling 2023 onwards methods - try: - process_national_2020_2029(url) - except Exception as e: - logging.error( - f"Failed to process national 2020-2029 for {url}: {e}") - try: - process_county_2020_2029(url) - except Exception as e: - logging.error( - f"Failed to process county 2020-2029 for {url}: {e}") - try: - process_state_2020_2029(url) - except Exception as e: - logging.error( - f"Failed to process state 2020-2029 for {url}: {e}") + global _FILES_TO_DOWNLOAD + for file in _FILES_TO_DOWNLOAD: + file_name_to_save = None + url = file['download_path'] + #Calling 2023 onwards methods + try: + process_national_2020_2029(url) + except Exception as e: + logging.error( + f"Failed to process national 2020-2029 for {url}: {e}") + try: + process_county_2020_2029(url) + except Exception as e: + logging.error( + f"Failed to process county 2020-2029 for {url}: {e}") + try: + process_state_2020_2029(url) + except Exception as e: + logging.error( + f"Failed to process state 2020-2029 for {url}: {e}") except Exception as e: logging.fatal(f"There is an error while downloading the files {e}") @@ -230,9 +225,6 @@ def process(config_files: list, test=False): "nationals_result_1900_1959.csv", "nationals_result_1960_1979.csv", "nationals_result_1980_1990.csv", "nationals_result_1990_2000.csv" ] - national_before_2000 = [ - f for f in national_before_2000 if os.path.exists(os.path.join(_INPUT_FILE_PATH, f)) - ] # list of state and county output files before year 2000 state_county_before_2000 = [ @@ -240,9 +232,6 @@ def process(config_files: list, test=False): "state_result_1990_2000.csv", "county_result_1970_1979.csv", "county_result_1980_1989.csv", "county_result_1990_2000.csv" ] - state_county_before_2000 = [ - f for f in state_county_before_2000 if os.path.exists(os.path.join(_INPUT_FILE_PATH, f)) - ] # list of state and county output files before after 2000 state_county_after_2000 = [ @@ -251,18 +240,12 @@ def process(config_files: list, test=False): "state_result_2020_2022.csv", "state_result_2020_2029.csv", "county_result_2020_2022.csv", "county_result_2020_2029.csv" ] - state_county_after_2000 = [ - f for f in state_county_after_2000 if os.path.exists(os.path.join(_INPUT_FILE_PATH, f)) - ] # list of national output files after year 2000 national_after_2000 = [ "nationals_result_2000_2010.csv", "nationals_result_2010_2020.csv", "nationals_result_2020_2022.csv", "nationals_result_2020_2029.csv" ] - national_after_2000 = [ - f for f in national_after_2000 if os.path.exists(os.path.join(_INPUT_FILE_PATH, f)) - ] output_files_names = { Outputfiles.NationalBefore2000.value: national_before_2000, diff --git a/scripts/us_census/pep/us_pep_sexrace/state/state_1980_1990.py b/scripts/us_census/pep/us_pep_sexrace/state/state_1980_1990.py index db38d58c77..03399f416c 100644 --- a/scripts/us_census/pep/us_pep_sexrace/state/state_1980_1990.py +++ b/scripts/us_census/pep/us_pep_sexrace/state/state_1980_1990.py @@ -48,7 +48,7 @@ def process_state_1980_1990(url: str) -> pd.DataFrame: # reading the csv input file df = pd.read_table(url, index_col=False, - delim_whitespace=True, + sep=r'\s+', engine='python', names=_cols) df.to_csv(_CODEDIR + "/../input_files/" + "state_result_1980_1990.csv") diff --git a/scripts/us_census/pep/us_pep_sexrace/state/state_1990_2000.py b/scripts/us_census/pep/us_pep_sexrace/state/state_1990_2000.py index 0aee55b5a9..f8b52123d9 100644 --- a/scripts/us_census/pep/us_pep_sexrace/state/state_1990_2000.py +++ b/scripts/us_census/pep/us_pep_sexrace/state/state_1990_2000.py @@ -41,7 +41,7 @@ def process_state_1990_2000(urls: str) -> pd.DataFrame: df = pd.read_table(url, skiprows=15, header=None, - delim_whitespace=True, + sep=r'\s+', index_col=False, engine='python') df.to_csv(_CODEDIR + "/../input_files/" + "state_result_1990_2000.csv") From 2f4393a2083bebad80259b571edaf60475d5972c Mon Sep 17 00:00:00 2001 From: Nivedita Singh Date: Sun, 26 Jul 2026 18:13:05 +0000 Subject: [PATCH 09/13] modified goldens --- .../golden_data/golden_observations.csv | 2156 ++++++ .../golden_data/golden_summary_report.csv | 6840 ++++++++--------- .../validation_config.json | 9 + 3 files changed, 5585 insertions(+), 3420 deletions(-) create mode 100644 scripts/us_census/pep/population_estimates_by_asr/golden_data/golden_observations.csv diff --git a/scripts/us_census/pep/population_estimates_by_asr/golden_data/golden_observations.csv b/scripts/us_census/pep/population_estimates_by_asr/golden_data/golden_observations.csv new file mode 100644 index 0000000000..c1e87e9600 --- /dev/null +++ b/scripts/us_census/pep/population_estimates_by_asr/golden_data/golden_observations.csv @@ -0,0 +1,2156 @@ +"geo_ID" +"country/USA" +"geoId/01" +"geoId/01001" +"geoId/01003" +"geoId/01005" +"geoId/01007" +"geoId/01009" +"geoId/01013" +"geoId/01015" +"geoId/01017" +"geoId/01019" +"geoId/01021" +"geoId/01023" +"geoId/01025" +"geoId/01031" +"geoId/01033" +"geoId/01039" +"geoId/01043" +"geoId/01045" +"geoId/01047" +"geoId/01049" +"geoId/01051" +"geoId/01053" +"geoId/01055" +"geoId/01057" +"geoId/01059" +"geoId/01061" +"geoId/01065" +"geoId/01067" +"geoId/01069" +"geoId/01071" +"geoId/01073" +"geoId/01077" +"geoId/01079" +"geoId/01081" +"geoId/01083" +"geoId/01087" +"geoId/01089" +"geoId/01091" +"geoId/01093" +"geoId/01095" +"geoId/01097" +"geoId/01099" +"geoId/01101" +"geoId/01103" +"geoId/01107" +"geoId/01109" +"geoId/01111" +"geoId/01113" +"geoId/01115" +"geoId/01117" +"geoId/01119" +"geoId/01121" +"geoId/01123" +"geoId/01125" +"geoId/01127" +"geoId/01129" +"geoId/01133" +"geoId/02" +"geoId/02020" +"geoId/02050" +"geoId/02090" +"geoId/02110" +"geoId/02170" +"geoId/04" +"geoId/04001" +"geoId/04003" +"geoId/04005" +"geoId/04007" +"geoId/04009" +"geoId/04013" +"geoId/04015" +"geoId/04017" +"geoId/04019" +"geoId/04021" +"geoId/04023" +"geoId/04025" +"geoId/04027" +"geoId/05" +"geoId/05001" +"geoId/05003" +"geoId/05005" +"geoId/05007" +"geoId/05009" +"geoId/05015" +"geoId/05017" +"geoId/05019" +"geoId/05021" +"geoId/05023" +"geoId/05027" +"geoId/05029" +"geoId/05031" +"geoId/05033" +"geoId/05035" +"geoId/05037" +"geoId/05041" +"geoId/05043" +"geoId/05045" +"geoId/05047" +"geoId/05051" +"geoId/05053" +"geoId/05055" +"geoId/05057" +"geoId/05059" +"geoId/05063" +"geoId/05067" +"geoId/05069" +"geoId/05071" +"geoId/05075" +"geoId/05077" +"geoId/05083" +"geoId/05085" +"geoId/05087" +"geoId/05089" +"geoId/05091" +"geoId/05093" +"geoId/05103" +"geoId/05107" +"geoId/05111" +"geoId/05113" +"geoId/05115" +"geoId/05119" +"geoId/05121" +"geoId/05123" +"geoId/05125" +"geoId/05131" +"geoId/05133" +"geoId/05135" +"geoId/05139" +"geoId/05141" +"geoId/05143" +"geoId/05145" +"geoId/05149" +"geoId/06" +"geoId/06001" +"geoId/06005" +"geoId/06007" +"geoId/06009" +"geoId/06011" +"geoId/06013" +"geoId/06015" +"geoId/06017" +"geoId/06019" +"geoId/06021" +"geoId/06023" +"geoId/06025" +"geoId/06027" +"geoId/06029" +"geoId/06031" +"geoId/06033" +"geoId/06035" +"geoId/06037" +"geoId/06039" +"geoId/06041" +"geoId/06043" +"geoId/06045" +"geoId/06047" +"geoId/06053" +"geoId/06055" +"geoId/06057" +"geoId/06059" +"geoId/06061" +"geoId/06063" +"geoId/06065" +"geoId/06067" +"geoId/06069" +"geoId/06071" +"geoId/06073" +"geoId/06075" +"geoId/06077" +"geoId/06079" +"geoId/06081" +"geoId/06083" +"geoId/06085" +"geoId/06087" +"geoId/06089" +"geoId/06093" +"geoId/06095" +"geoId/06097" +"geoId/06099" +"geoId/06101" +"geoId/06103" +"geoId/06107" +"geoId/06109" +"geoId/06111" +"geoId/06113" +"geoId/06115" +"geoId/08" +"geoId/08001" +"geoId/08005" +"geoId/08013" +"geoId/08015" +"geoId/08029" +"geoId/08031" +"geoId/08035" +"geoId/08037" +"geoId/08039" +"geoId/08041" +"geoId/08043" +"geoId/08045" +"geoId/08051" +"geoId/08059" +"geoId/08067" +"geoId/08069" +"geoId/08075" +"geoId/08077" +"geoId/08083" +"geoId/08085" +"geoId/08087" +"geoId/08089" +"geoId/08093" +"geoId/08097" +"geoId/08101" +"geoId/08107" +"geoId/08117" +"geoId/08119" +"geoId/08123" +"geoId/09" +"geoId/09001" +"geoId/09003" +"geoId/09005" +"geoId/09007" +"geoId/09009" +"geoId/09011" +"geoId/09013" +"geoId/09015" +"geoId/10" +"geoId/10001" +"geoId/10003" +"geoId/10005" +"geoId/11" +"geoId/11001" +"geoId/12" +"geoId/12001" +"geoId/12003" +"geoId/12005" +"geoId/12007" +"geoId/12009" +"geoId/12011" +"geoId/12015" +"geoId/12017" +"geoId/12019" +"geoId/12021" +"geoId/12023" +"geoId/12027" +"geoId/12029" +"geoId/12031" +"geoId/12033" +"geoId/12035" +"geoId/12039" +"geoId/12041" +"geoId/12049" +"geoId/12051" +"geoId/12053" +"geoId/12055" +"geoId/12057" +"geoId/12059" +"geoId/12061" +"geoId/12063" +"geoId/12069" +"geoId/12071" +"geoId/12073" +"geoId/12075" +"geoId/12079" +"geoId/12081" +"geoId/12083" +"geoId/12085" +"geoId/12087" +"geoId/12089" +"geoId/12091" +"geoId/12093" +"geoId/12095" +"geoId/12097" +"geoId/12099" +"geoId/12101" +"geoId/12103" +"geoId/12105" +"geoId/12107" +"geoId/12109" +"geoId/12111" +"geoId/12113" +"geoId/12115" +"geoId/12117" +"geoId/12119" +"geoId/12121" +"geoId/12123" +"geoId/12127" +"geoId/12129" +"geoId/12131" +"geoId/12133" +"geoId/13" +"geoId/13001" +"geoId/13009" +"geoId/13011" +"geoId/13013" +"geoId/13015" +"geoId/13017" +"geoId/13019" +"geoId/13021" +"geoId/13025" +"geoId/13029" +"geoId/13031" +"geoId/13033" +"geoId/13035" +"geoId/13039" +"geoId/13045" +"geoId/13047" +"geoId/13051" +"geoId/13053" +"geoId/13055" +"geoId/13057" +"geoId/13059" +"geoId/13063" +"geoId/13067" +"geoId/13069" +"geoId/13071" +"geoId/13073" +"geoId/13075" +"geoId/13077" +"geoId/13081" +"geoId/13085" +"geoId/13087" +"geoId/13089" +"geoId/13091" +"geoId/13095" +"geoId/13097" +"geoId/13103" +"geoId/13105" +"geoId/13107" +"geoId/13111" +"geoId/13113" +"geoId/13115" +"geoId/13117" +"geoId/13119" +"geoId/13121" +"geoId/13123" +"geoId/13127" +"geoId/13129" +"geoId/13131" +"geoId/13133" +"geoId/13135" +"geoId/13137" +"geoId/13139" +"geoId/13143" +"geoId/13145" +"geoId/13147" +"geoId/13151" +"geoId/13153" +"geoId/13157" +"geoId/13159" +"geoId/13163" +"geoId/13169" +"geoId/13171" +"geoId/13175" +"geoId/13177" +"geoId/13179" +"geoId/13183" +"geoId/13185" +"geoId/13187" +"geoId/13189" +"geoId/13195" +"geoId/13199" +"geoId/13205" +"geoId/13207" +"geoId/13211" +"geoId/13213" +"geoId/13215" +"geoId/13217" +"geoId/13219" +"geoId/13223" +"geoId/13225" +"geoId/13227" +"geoId/13229" +"geoId/13231" +"geoId/13233" +"geoId/13237" +"geoId/13241" +"geoId/13245" +"geoId/13247" +"geoId/13255" +"geoId/13257" +"geoId/13261" +"geoId/13267" +"geoId/13275" +"geoId/13277" +"geoId/13279" +"geoId/13285" +"geoId/13291" +"geoId/13293" +"geoId/13295" +"geoId/13297" +"geoId/13299" +"geoId/13303" +"geoId/13305" +"geoId/13311" +"geoId/13313" +"geoId/13321" +"geoId/15" +"geoId/15001" +"geoId/15003" +"geoId/15007" +"geoId/15009" +"geoId/16" +"geoId/16001" +"geoId/16005" +"geoId/16011" +"geoId/16013" +"geoId/16017" +"geoId/16019" +"geoId/16027" +"geoId/16031" +"geoId/16039" +"geoId/16045" +"geoId/16049" +"geoId/16051" +"geoId/16053" +"geoId/16055" +"geoId/16057" +"geoId/16065" +"geoId/16067" +"geoId/16069" +"geoId/16075" +"geoId/16079" +"geoId/16083" +"geoId/17" +"geoId/17001" +"geoId/17005" +"geoId/17007" +"geoId/17011" +"geoId/17015" +"geoId/17019" +"geoId/17021" +"geoId/17023" +"geoId/17027" +"geoId/17029" +"geoId/17031" +"geoId/17033" +"geoId/17037" +"geoId/17039" +"geoId/17041" +"geoId/17043" +"geoId/17045" +"geoId/17049" +"geoId/17051" +"geoId/17055" +"geoId/17057" +"geoId/17061" +"geoId/17063" +"geoId/17067" +"geoId/17073" +"geoId/17075" +"geoId/17077" +"geoId/17081" +"geoId/17083" +"geoId/17085" +"geoId/17089" +"geoId/17091" +"geoId/17093" +"geoId/17095" +"geoId/17097" +"geoId/17099" +"geoId/17101" +"geoId/17103" +"geoId/17105" +"geoId/17107" +"geoId/17109" +"geoId/17111" +"geoId/17113" +"geoId/17115" +"geoId/17117" +"geoId/17119" +"geoId/17121" +"geoId/17125" +"geoId/17131" +"geoId/17133" +"geoId/17135" +"geoId/17137" +"geoId/17141" +"geoId/17143" +"geoId/17145" +"geoId/17149" +"geoId/17157" +"geoId/17159" +"geoId/17161" +"geoId/17163" +"geoId/17165" +"geoId/17167" +"geoId/17173" +"geoId/17177" +"geoId/17179" +"geoId/17181" +"geoId/17183" +"geoId/17187" +"geoId/17191" +"geoId/17193" +"geoId/17195" +"geoId/17197" +"geoId/17199" +"geoId/17201" +"geoId/17203" +"geoId/18" +"geoId/18001" +"geoId/18003" +"geoId/18005" +"geoId/18011" +"geoId/18015" +"geoId/18017" +"geoId/18019" +"geoId/18021" +"geoId/18023" +"geoId/18027" +"geoId/18029" +"geoId/18031" +"geoId/18033" +"geoId/18035" +"geoId/18037" +"geoId/18039" +"geoId/18041" +"geoId/18043" +"geoId/18045" +"geoId/18047" +"geoId/18049" +"geoId/18051" +"geoId/18053" +"geoId/18055" +"geoId/18057" +"geoId/18059" +"geoId/18061" +"geoId/18063" +"geoId/18065" +"geoId/18067" +"geoId/18069" +"geoId/18071" +"geoId/18073" +"geoId/18075" +"geoId/18077" +"geoId/18079" +"geoId/18081" +"geoId/18083" +"geoId/18085" +"geoId/18087" +"geoId/18089" +"geoId/18091" +"geoId/18093" +"geoId/18095" +"geoId/18097" +"geoId/18099" +"geoId/18103" +"geoId/18105" +"geoId/18107" +"geoId/18109" +"geoId/18113" +"geoId/18117" +"geoId/18119" +"geoId/18121" +"geoId/18123" +"geoId/18127" +"geoId/18129" +"geoId/18133" +"geoId/18135" +"geoId/18137" +"geoId/18139" +"geoId/18141" +"geoId/18143" +"geoId/18145" +"geoId/18147" +"geoId/18149" +"geoId/18151" +"geoId/18153" +"geoId/18157" +"geoId/18163" +"geoId/18165" +"geoId/18167" +"geoId/18169" +"geoId/18173" +"geoId/18175" +"geoId/18177" +"geoId/18179" +"geoId/18181" +"geoId/18183" +"geoId/19" +"geoId/19011" +"geoId/19013" +"geoId/19015" +"geoId/19017" +"geoId/19019" +"geoId/19021" +"geoId/19023" +"geoId/19027" +"geoId/19029" +"geoId/19031" +"geoId/19033" +"geoId/19035" +"geoId/19041" +"geoId/19043" +"geoId/19045" +"geoId/19047" +"geoId/19049" +"geoId/19055" +"geoId/19057" +"geoId/19059" +"geoId/19061" +"geoId/19065" +"geoId/19067" +"geoId/19079" +"geoId/19083" +"geoId/19085" +"geoId/19087" +"geoId/19097" +"geoId/19099" +"geoId/19101" +"geoId/19103" +"geoId/19105" +"geoId/19109" +"geoId/19111" +"geoId/19113" +"geoId/19121" +"geoId/19123" +"geoId/19125" +"geoId/19127" +"geoId/19133" +"geoId/19139" +"geoId/19141" +"geoId/19145" +"geoId/19149" +"geoId/19153" +"geoId/19155" +"geoId/19157" +"geoId/19163" +"geoId/19167" +"geoId/19169" +"geoId/19171" +"geoId/19179" +"geoId/19181" +"geoId/19183" +"geoId/19187" +"geoId/19191" +"geoId/19193" +"geoId/19197" +"geoId/20" +"geoId/20005" +"geoId/20009" +"geoId/20015" +"geoId/20021" +"geoId/20035" +"geoId/20037" +"geoId/20041" +"geoId/20045" +"geoId/20051" +"geoId/20055" +"geoId/20057" +"geoId/20059" +"geoId/20061" +"geoId/20079" +"geoId/20087" +"geoId/20091" +"geoId/20099" +"geoId/20103" +"geoId/20111" +"geoId/20113" +"geoId/20121" +"geoId/20125" +"geoId/20133" +"geoId/20139" +"geoId/20149" +"geoId/20155" +"geoId/20161" +"geoId/20169" +"geoId/20173" +"geoId/20175" +"geoId/20177" +"geoId/20191" +"geoId/20209" +"geoId/21" +"geoId/21001" +"geoId/21003" +"geoId/21005" +"geoId/21009" +"geoId/21013" +"geoId/21015" +"geoId/21017" +"geoId/21019" +"geoId/21021" +"geoId/21025" +"geoId/21027" +"geoId/21029" +"geoId/21035" +"geoId/21037" +"geoId/21043" +"geoId/21047" +"geoId/21049" +"geoId/21051" +"geoId/21059" +"geoId/21067" +"geoId/21071" +"geoId/21073" +"geoId/21079" +"geoId/21081" +"geoId/21083" +"geoId/21085" +"geoId/21089" +"geoId/21093" +"geoId/21095" +"geoId/21097" +"geoId/21099" +"geoId/21101" +"geoId/21107" +"geoId/21111" +"geoId/21113" +"geoId/21115" +"geoId/21117" +"geoId/21119" +"geoId/21121" +"geoId/21125" +"geoId/21133" +"geoId/21137" +"geoId/21141" +"geoId/21145" +"geoId/21147" +"geoId/21151" +"geoId/21155" +"geoId/21157" +"geoId/21161" +"geoId/21163" +"geoId/21167" +"geoId/21173" +"geoId/21177" +"geoId/21179" +"geoId/21183" +"geoId/21185" +"geoId/21193" +"geoId/21195" +"geoId/21199" +"geoId/21203" +"geoId/21205" +"geoId/21207" +"geoId/21209" +"geoId/21211" +"geoId/21213" +"geoId/21215" +"geoId/21217" +"geoId/21225" +"geoId/21227" +"geoId/21231" +"geoId/21235" +"geoId/21239" +"geoId/22" +"geoId/22001" +"geoId/22003" +"geoId/22005" +"geoId/22007" +"geoId/22009" +"geoId/22011" +"geoId/22015" +"geoId/22017" +"geoId/22019" +"geoId/22027" +"geoId/22029" +"geoId/22031" +"geoId/22033" +"geoId/22037" +"geoId/22039" +"geoId/22041" +"geoId/22043" +"geoId/22045" +"geoId/22047" +"geoId/22049" +"geoId/22051" +"geoId/22053" +"geoId/22055" +"geoId/22057" +"geoId/22061" +"geoId/22063" +"geoId/22067" +"geoId/22069" +"geoId/22071" +"geoId/22073" +"geoId/22075" +"geoId/22077" +"geoId/22079" +"geoId/22083" +"geoId/22085" +"geoId/22087" +"geoId/22089" +"geoId/22093" +"geoId/22095" +"geoId/22097" +"geoId/22099" +"geoId/22101" +"geoId/22103" +"geoId/22105" +"geoId/22109" +"geoId/22111" +"geoId/22113" +"geoId/22115" +"geoId/22117" +"geoId/22119" +"geoId/22121" +"geoId/22127" +"geoId/23" +"geoId/23001" +"geoId/23003" +"geoId/23005" +"geoId/23007" +"geoId/23009" +"geoId/23011" +"geoId/23013" +"geoId/23015" +"geoId/23017" +"geoId/23019" +"geoId/23021" +"geoId/23023" +"geoId/23025" +"geoId/23027" +"geoId/23029" +"geoId/23031" +"geoId/24" +"geoId/24001" +"geoId/24003" +"geoId/24005" +"geoId/24009" +"geoId/24011" +"geoId/24013" +"geoId/24015" +"geoId/24017" +"geoId/24019" +"geoId/24021" +"geoId/24023" +"geoId/24025" +"geoId/24027" +"geoId/24029" +"geoId/24031" +"geoId/24033" +"geoId/24035" +"geoId/24037" +"geoId/24039" +"geoId/24041" +"geoId/24043" +"geoId/24045" +"geoId/24047" +"geoId/24510" +"geoId/25" +"geoId/25001" +"geoId/25003" +"geoId/25005" +"geoId/25007" +"geoId/25009" +"geoId/25011" +"geoId/25013" +"geoId/25015" +"geoId/25017" +"geoId/25021" +"geoId/25023" +"geoId/25025" +"geoId/25027" +"geoId/26" +"geoId/26005" +"geoId/26007" +"geoId/26009" +"geoId/26011" +"geoId/26015" +"geoId/26017" +"geoId/26019" +"geoId/26021" +"geoId/26023" +"geoId/26025" +"geoId/26027" +"geoId/26029" +"geoId/26031" +"geoId/26033" +"geoId/26035" +"geoId/26037" +"geoId/26041" +"geoId/26043" +"geoId/26045" +"geoId/26047" +"geoId/26049" +"geoId/26051" +"geoId/26053" +"geoId/26055" +"geoId/26057" +"geoId/26059" +"geoId/26061" +"geoId/26063" +"geoId/26065" +"geoId/26067" +"geoId/26069" +"geoId/26073" +"geoId/26075" +"geoId/26077" +"geoId/26079" +"geoId/26081" +"geoId/26087" +"geoId/26089" +"geoId/26091" +"geoId/26093" +"geoId/26099" +"geoId/26101" +"geoId/26103" +"geoId/26105" +"geoId/26107" +"geoId/26109" +"geoId/26111" +"geoId/26115" +"geoId/26117" +"geoId/26121" +"geoId/26123" +"geoId/26125" +"geoId/26127" +"geoId/26129" +"geoId/26133" +"geoId/26137" +"geoId/26139" +"geoId/26143" +"geoId/26145" +"geoId/26147" +"geoId/26149" +"geoId/26151" +"geoId/26155" +"geoId/26157" +"geoId/26159" +"geoId/26161" +"geoId/26163" +"geoId/26165" +"geoId/27" +"geoId/27003" +"geoId/27005" +"geoId/27007" +"geoId/27009" +"geoId/27013" +"geoId/27015" +"geoId/27017" +"geoId/27019" +"geoId/27021" +"geoId/27025" +"geoId/27027" +"geoId/27035" +"geoId/27037" +"geoId/27039" +"geoId/27041" +"geoId/27043" +"geoId/27045" +"geoId/27047" +"geoId/27049" +"geoId/27053" +"geoId/27055" +"geoId/27057" +"geoId/27059" +"geoId/27061" +"geoId/27067" +"geoId/27071" +"geoId/27079" +"geoId/27083" +"geoId/27085" +"geoId/27091" +"geoId/27093" +"geoId/27095" +"geoId/27097" +"geoId/27099" +"geoId/27103" +"geoId/27105" +"geoId/27109" +"geoId/27111" +"geoId/27115" +"geoId/27119" +"geoId/27123" +"geoId/27127" +"geoId/27129" +"geoId/27131" +"geoId/27137" +"geoId/27139" +"geoId/27141" +"geoId/27145" +"geoId/27147" +"geoId/27153" +"geoId/27157" +"geoId/27161" +"geoId/27163" +"geoId/27169" +"geoId/27171" +"geoId/28" +"geoId/28001" +"geoId/28003" +"geoId/28007" +"geoId/28011" +"geoId/28017" +"geoId/28023" +"geoId/28025" +"geoId/28027" +"geoId/28029" +"geoId/28031" +"geoId/28033" +"geoId/28035" +"geoId/28039" +"geoId/28043" +"geoId/28045" +"geoId/28047" +"geoId/28049" +"geoId/28051" +"geoId/28057" +"geoId/28059" +"geoId/28061" +"geoId/28067" +"geoId/28071" +"geoId/28073" +"geoId/28075" +"geoId/28079" +"geoId/28081" +"geoId/28083" +"geoId/28085" +"geoId/28087" +"geoId/28089" +"geoId/28091" +"geoId/28093" +"geoId/28095" +"geoId/28099" +"geoId/28101" +"geoId/28105" +"geoId/28107" +"geoId/28109" +"geoId/28113" +"geoId/28115" +"geoId/28117" +"geoId/28121" +"geoId/28123" +"geoId/28127" +"geoId/28131" +"geoId/28133" +"geoId/28135" +"geoId/28137" +"geoId/28139" +"geoId/28141" +"geoId/28145" +"geoId/28149" +"geoId/28151" +"geoId/28153" +"geoId/28159" +"geoId/28163" +"geoId/29" +"geoId/29001" +"geoId/29003" +"geoId/29007" +"geoId/29009" +"geoId/29013" +"geoId/29015" +"geoId/29019" +"geoId/29021" +"geoId/29023" +"geoId/29027" +"geoId/29029" +"geoId/29031" +"geoId/29037" +"geoId/29043" +"geoId/29047" +"geoId/29049" +"geoId/29051" +"geoId/29053" +"geoId/29055" +"geoId/29059" +"geoId/29069" +"geoId/29071" +"geoId/29077" +"geoId/29083" +"geoId/29091" +"geoId/29095" +"geoId/29097" +"geoId/29099" +"geoId/29101" +"geoId/29105" +"geoId/29107" +"geoId/29109" +"geoId/29113" +"geoId/29119" +"geoId/29127" +"geoId/29131" +"geoId/29141" +"geoId/29143" +"geoId/29145" +"geoId/29147" +"geoId/29155" +"geoId/29157" +"geoId/29159" +"geoId/29161" +"geoId/29163" +"geoId/29165" +"geoId/29167" +"geoId/29169" +"geoId/29175" +"geoId/29177" +"geoId/29183" +"geoId/29187" +"geoId/29189" +"geoId/29195" +"geoId/29201" +"geoId/29207" +"geoId/29209" +"geoId/29213" +"geoId/29215" +"geoId/29217" +"geoId/29219" +"geoId/29221" +"geoId/29225" +"geoId/29229" +"geoId/29510" +"geoId/30" +"geoId/30013" +"geoId/30029" +"geoId/30031" +"geoId/30041" +"geoId/30047" +"geoId/30049" +"geoId/30053" +"geoId/30063" +"geoId/30067" +"geoId/30081" +"geoId/30093" +"geoId/30111" +"geoId/31" +"geoId/31001" +"geoId/31019" +"geoId/31025" +"geoId/31043" +"geoId/31047" +"geoId/31053" +"geoId/31055" +"geoId/31067" +"geoId/31079" +"geoId/31109" +"geoId/31111" +"geoId/31119" +"geoId/31141" +"geoId/31153" +"geoId/31155" +"geoId/31157" +"geoId/31159" +"geoId/31177" +"geoId/32" +"geoId/32001" +"geoId/32003" +"geoId/32005" +"geoId/32007" +"geoId/32013" +"geoId/32019" +"geoId/32023" +"geoId/32031" +"geoId/32510" +"geoId/33" +"geoId/33001" +"geoId/33003" +"geoId/33005" +"geoId/33007" +"geoId/33009" +"geoId/33011" +"geoId/33013" +"geoId/33015" +"geoId/33017" +"geoId/33019" +"geoId/34" +"geoId/34001" +"geoId/34003" +"geoId/34005" +"geoId/34007" +"geoId/34009" +"geoId/34011" +"geoId/34013" +"geoId/34015" +"geoId/34017" +"geoId/34019" +"geoId/34021" +"geoId/34023" +"geoId/34025" +"geoId/34027" +"geoId/34029" +"geoId/34031" +"geoId/34033" +"geoId/34035" +"geoId/34037" +"geoId/34039" +"geoId/34041" +"geoId/35" +"geoId/35001" +"geoId/35005" +"geoId/35009" +"geoId/35013" +"geoId/35015" +"geoId/35017" +"geoId/35025" +"geoId/35027" +"geoId/35028" +"geoId/35029" +"geoId/35031" +"geoId/35035" +"geoId/35039" +"geoId/35041" +"geoId/35043" +"geoId/35045" +"geoId/35047" +"geoId/35049" +"geoId/35053" +"geoId/35055" +"geoId/35057" +"geoId/35061" +"geoId/36" +"geoId/36001" +"geoId/36003" +"geoId/36005" +"geoId/36007" +"geoId/36009" +"geoId/36011" +"geoId/36013" +"geoId/36015" +"geoId/36017" +"geoId/36019" +"geoId/36021" +"geoId/36023" +"geoId/36025" +"geoId/36027" +"geoId/36029" +"geoId/36031" +"geoId/36033" +"geoId/36035" +"geoId/36037" +"geoId/36039" +"geoId/36043" +"geoId/36045" +"geoId/36047" +"geoId/36049" +"geoId/36051" +"geoId/36053" +"geoId/36055" +"geoId/36057" +"geoId/36059" +"geoId/36061" +"geoId/36063" +"geoId/36065" +"geoId/36067" +"geoId/36069" +"geoId/36071" +"geoId/36073" +"geoId/36075" +"geoId/36077" +"geoId/36079" +"geoId/36081" +"geoId/36083" +"geoId/36085" +"geoId/36087" +"geoId/36089" +"geoId/36091" +"geoId/36093" +"geoId/36095" +"geoId/36097" +"geoId/36099" +"geoId/36101" +"geoId/36103" +"geoId/36105" +"geoId/36107" +"geoId/36109" +"geoId/36111" +"geoId/36113" +"geoId/36115" +"geoId/36117" +"geoId/36119" +"geoId/36121" +"geoId/36123" +"geoId/37" +"geoId/37001" +"geoId/37003" +"geoId/37007" +"geoId/37009" +"geoId/37011" +"geoId/37013" +"geoId/37015" +"geoId/37017" +"geoId/37019" +"geoId/37021" +"geoId/37023" +"geoId/37025" +"geoId/37027" +"geoId/37031" +"geoId/37033" +"geoId/37035" +"geoId/37037" +"geoId/37039" +"geoId/37045" +"geoId/37047" +"geoId/37049" +"geoId/37051" +"geoId/37053" +"geoId/37055" +"geoId/37057" +"geoId/37059" +"geoId/37061" +"geoId/37063" +"geoId/37065" +"geoId/37067" +"geoId/37069" +"geoId/37071" +"geoId/37077" +"geoId/37079" +"geoId/37081" +"geoId/37083" +"geoId/37085" +"geoId/37087" +"geoId/37089" +"geoId/37091" +"geoId/37093" +"geoId/37097" +"geoId/37099" +"geoId/37101" +"geoId/37105" +"geoId/37107" +"geoId/37109" +"geoId/37111" +"geoId/37113" +"geoId/37115" +"geoId/37117" +"geoId/37119" +"geoId/37123" +"geoId/37125" +"geoId/37127" +"geoId/37129" +"geoId/37131" +"geoId/37133" +"geoId/37135" +"geoId/37139" +"geoId/37141" +"geoId/37145" +"geoId/37147" +"geoId/37149" +"geoId/37151" +"geoId/37153" +"geoId/37155" +"geoId/37157" +"geoId/37159" +"geoId/37161" +"geoId/37163" +"geoId/37165" +"geoId/37167" +"geoId/37169" +"geoId/37171" +"geoId/37175" +"geoId/37179" +"geoId/37181" +"geoId/37183" +"geoId/37185" +"geoId/37189" +"geoId/37191" +"geoId/37193" +"geoId/37195" +"geoId/37197" +"geoId/37199" +"geoId/38" +"geoId/38015" +"geoId/38017" +"geoId/38035" +"geoId/38059" +"geoId/38077" +"geoId/38089" +"geoId/38093" +"geoId/38101" +"geoId/38105" +"geoId/39" +"geoId/39001" +"geoId/39003" +"geoId/39005" +"geoId/39007" +"geoId/39009" +"geoId/39011" +"geoId/39013" +"geoId/39015" +"geoId/39017" +"geoId/39019" +"geoId/39021" +"geoId/39023" +"geoId/39025" +"geoId/39027" +"geoId/39029" +"geoId/39031" +"geoId/39033" +"geoId/39035" +"geoId/39037" +"geoId/39039" +"geoId/39041" +"geoId/39043" +"geoId/39045" +"geoId/39047" +"geoId/39049" +"geoId/39051" +"geoId/39053" +"geoId/39055" +"geoId/39057" +"geoId/39059" +"geoId/39061" +"geoId/39063" +"geoId/39065" +"geoId/39067" +"geoId/39069" +"geoId/39071" +"geoId/39073" +"geoId/39075" +"geoId/39077" +"geoId/39079" +"geoId/39081" +"geoId/39083" +"geoId/39085" +"geoId/39087" +"geoId/39089" +"geoId/39091" +"geoId/39093" +"geoId/39095" +"geoId/39097" +"geoId/39099" +"geoId/39101" +"geoId/39103" +"geoId/39105" +"geoId/39107" +"geoId/39109" +"geoId/39111" +"geoId/39113" +"geoId/39117" +"geoId/39119" +"geoId/39123" +"geoId/39125" +"geoId/39127" +"geoId/39129" +"geoId/39131" +"geoId/39133" +"geoId/39135" +"geoId/39137" +"geoId/39139" +"geoId/39141" +"geoId/39143" +"geoId/39145" +"geoId/39147" +"geoId/39149" +"geoId/39151" +"geoId/39153" +"geoId/39155" +"geoId/39157" +"geoId/39159" +"geoId/39161" +"geoId/39165" +"geoId/39167" +"geoId/39169" +"geoId/39171" +"geoId/39173" +"geoId/39175" +"geoId/40" +"geoId/40001" +"geoId/40009" +"geoId/40013" +"geoId/40015" +"geoId/40017" +"geoId/40019" +"geoId/40021" +"geoId/40023" +"geoId/40027" +"geoId/40031" +"geoId/40037" +"geoId/40039" +"geoId/40041" +"geoId/40047" +"geoId/40049" +"geoId/40051" +"geoId/40065" +"geoId/40071" +"geoId/40079" +"geoId/40081" +"geoId/40083" +"geoId/40087" +"geoId/40089" +"geoId/40091" +"geoId/40095" +"geoId/40097" +"geoId/40101" +"geoId/40109" +"geoId/40111" +"geoId/40113" +"geoId/40115" +"geoId/40119" +"geoId/40121" +"geoId/40123" +"geoId/40125" +"geoId/40131" +"geoId/40133" +"geoId/40135" +"geoId/40137" +"geoId/40139" +"geoId/40143" +"geoId/40145" +"geoId/40147" +"geoId/40149" +"geoId/40153" +"geoId/41" +"geoId/41003" +"geoId/41005" +"geoId/41007" +"geoId/41009" +"geoId/41011" +"geoId/41013" +"geoId/41015" +"geoId/41017" +"geoId/41019" +"geoId/41027" +"geoId/41029" +"geoId/41031" +"geoId/41033" +"geoId/41035" +"geoId/41039" +"geoId/41041" +"geoId/41043" +"geoId/41045" +"geoId/41047" +"geoId/41051" +"geoId/41053" +"geoId/41057" +"geoId/41059" +"geoId/41061" +"geoId/41065" +"geoId/41067" +"geoId/41071" +"geoId/42" +"geoId/42001" +"geoId/42003" +"geoId/42005" +"geoId/42007" +"geoId/42009" +"geoId/42011" +"geoId/42013" +"geoId/42015" +"geoId/42017" +"geoId/42019" +"geoId/42021" +"geoId/42025" +"geoId/42027" +"geoId/42029" +"geoId/42031" +"geoId/42033" +"geoId/42035" +"geoId/42037" +"geoId/42039" +"geoId/42041" +"geoId/42043" +"geoId/42045" +"geoId/42047" +"geoId/42049" +"geoId/42051" +"geoId/42055" +"geoId/42059" +"geoId/42061" +"geoId/42063" +"geoId/42065" +"geoId/42067" +"geoId/42069" +"geoId/42071" +"geoId/42073" +"geoId/42075" +"geoId/42077" +"geoId/42079" +"geoId/42081" +"geoId/42083" +"geoId/42085" +"geoId/42087" +"geoId/42089" +"geoId/42091" +"geoId/42093" +"geoId/42095" +"geoId/42097" +"geoId/42099" +"geoId/42101" +"geoId/42103" +"geoId/42105" +"geoId/42107" +"geoId/42109" +"geoId/42111" +"geoId/42115" +"geoId/42117" +"geoId/42119" +"geoId/42121" +"geoId/42123" +"geoId/42125" +"geoId/42127" +"geoId/42129" +"geoId/42131" +"geoId/42133" +"geoId/44" +"geoId/44001" +"geoId/44003" +"geoId/44005" +"geoId/44007" +"geoId/44009" +"geoId/45" +"geoId/45001" +"geoId/45003" +"geoId/45007" +"geoId/45009" +"geoId/45011" +"geoId/45013" +"geoId/45015" +"geoId/45019" +"geoId/45021" +"geoId/45023" +"geoId/45025" +"geoId/45027" +"geoId/45029" +"geoId/45031" +"geoId/45033" +"geoId/45035" +"geoId/45037" +"geoId/45039" +"geoId/45041" +"geoId/45043" +"geoId/45045" +"geoId/45047" +"geoId/45049" +"geoId/45051" +"geoId/45053" +"geoId/45055" +"geoId/45057" +"geoId/45059" +"geoId/45061" +"geoId/45063" +"geoId/45067" +"geoId/45069" +"geoId/45071" +"geoId/45073" +"geoId/45075" +"geoId/45077" +"geoId/45079" +"geoId/45081" +"geoId/45083" +"geoId/45085" +"geoId/45087" +"geoId/45089" +"geoId/45091" +"geoId/46" +"geoId/46005" +"geoId/46011" +"geoId/46013" +"geoId/46029" +"geoId/46035" +"geoId/46065" +"geoId/46081" +"geoId/46083" +"geoId/46093" +"geoId/46099" +"geoId/46103" +"geoId/46127" +"geoId/46135" +"geoId/47" +"geoId/47001" +"geoId/47003" +"geoId/47009" +"geoId/47011" +"geoId/47013" +"geoId/47017" +"geoId/47019" +"geoId/47021" +"geoId/47023" +"geoId/47025" +"geoId/47029" +"geoId/47031" +"geoId/47035" +"geoId/47037" +"geoId/47041" +"geoId/47043" +"geoId/47045" +"geoId/47047" +"geoId/47049" +"geoId/47051" +"geoId/47053" +"geoId/47055" +"geoId/47057" +"geoId/47059" +"geoId/47063" +"geoId/47065" +"geoId/47069" +"geoId/47071" +"geoId/47073" +"geoId/47075" +"geoId/47077" +"geoId/47079" +"geoId/47081" +"geoId/47085" +"geoId/47089" +"geoId/47091" +"geoId/47093" +"geoId/47097" +"geoId/47099" +"geoId/47103" +"geoId/47105" +"geoId/47107" +"geoId/47109" +"geoId/47111" +"geoId/47113" +"geoId/47115" +"geoId/47117" +"geoId/47119" +"geoId/47123" +"geoId/47125" +"geoId/47129" +"geoId/47131" +"geoId/47133" +"geoId/47139" +"geoId/47141" +"geoId/47143" +"geoId/47145" +"geoId/47147" +"geoId/47149" +"geoId/47151" +"geoId/47153" +"geoId/47155" +"geoId/47157" +"geoId/47159" +"geoId/47163" +"geoId/47165" +"geoId/47167" +"geoId/47171" +"geoId/47173" +"geoId/47177" +"geoId/47179" +"geoId/47181" +"geoId/47183" +"geoId/47185" +"geoId/47187" +"geoId/47189" +"geoId/48" +"geoId/48001" +"geoId/48003" +"geoId/48005" +"geoId/48007" +"geoId/48013" +"geoId/48015" +"geoId/48019" +"geoId/48021" +"geoId/48025" +"geoId/48027" +"geoId/48029" +"geoId/48035" +"geoId/48037" +"geoId/48039" +"geoId/48041" +"geoId/48049" +"geoId/48051" +"geoId/48053" +"geoId/48055" +"geoId/48057" +"geoId/48061" +"geoId/48067" +"geoId/48071" +"geoId/48073" +"geoId/48085" +"geoId/48089" +"geoId/48091" +"geoId/48097" +"geoId/48099" +"geoId/48113" +"geoId/48117" +"geoId/48121" +"geoId/48123" +"geoId/48133" +"geoId/48135" +"geoId/48139" +"geoId/48141" +"geoId/48143" +"geoId/48145" +"geoId/48147" +"geoId/48149" +"geoId/48157" +"geoId/48161" +"geoId/48163" +"geoId/48165" +"geoId/48167" +"geoId/48171" +"geoId/48177" +"geoId/48179" +"geoId/48181" +"geoId/48183" +"geoId/48185" +"geoId/48187" +"geoId/48189" +"geoId/48199" +"geoId/48201" +"geoId/48203" +"geoId/48209" +"geoId/48213" +"geoId/48215" +"geoId/48217" +"geoId/48219" +"geoId/48221" +"geoId/48223" +"geoId/48225" +"geoId/48227" +"geoId/48231" +"geoId/48233" +"geoId/48241" +"geoId/48245" +"geoId/48249" +"geoId/48251" +"geoId/48253" +"geoId/48257" +"geoId/48259" +"geoId/48265" +"geoId/48273" +"geoId/48277" +"geoId/48279" +"geoId/48281" +"geoId/48285" +"geoId/48287" +"geoId/48289" +"geoId/48291" +"geoId/48293" +"geoId/48299" +"geoId/48303" +"geoId/48309" +"geoId/48321" +"geoId/48323" +"geoId/48325" +"geoId/48329" +"geoId/48331" +"geoId/48337" +"geoId/48339" +"geoId/48341" +"geoId/48347" +"geoId/48349" +"geoId/48353" +"geoId/48355" +"geoId/48361" +"geoId/48363" +"geoId/48365" +"geoId/48367" +"geoId/48371" +"geoId/48373" +"geoId/48375" +"geoId/48381" +"geoId/48389" +"geoId/48395" +"geoId/48397" +"geoId/48401" +"geoId/48407" +"geoId/48409" +"geoId/48415" +"geoId/48419" +"geoId/48423" +"geoId/48427" +"geoId/48439" +"geoId/48441" +"geoId/48449" +"geoId/48451" +"geoId/48453" +"geoId/48457" +"geoId/48459" +"geoId/48463" +"geoId/48465" +"geoId/48467" +"geoId/48469" +"geoId/48471" +"geoId/48473" +"geoId/48477" +"geoId/48479" +"geoId/48481" +"geoId/48485" +"geoId/48489" +"geoId/48491" +"geoId/48493" +"geoId/48497" +"geoId/48499" +"geoId/48503" +"geoId/49" +"geoId/49003" +"geoId/49005" +"geoId/49007" +"geoId/49011" +"geoId/49013" +"geoId/49021" +"geoId/49035" +"geoId/49039" +"geoId/49041" +"geoId/49043" +"geoId/49045" +"geoId/49047" +"geoId/49049" +"geoId/49051" +"geoId/49053" +"geoId/49057" +"geoId/50" +"geoId/50001" +"geoId/50003" +"geoId/50005" +"geoId/50007" +"geoId/50011" +"geoId/50015" +"geoId/50017" +"geoId/50019" +"geoId/50021" +"geoId/50023" +"geoId/50025" +"geoId/50027" +"geoId/51" +"geoId/51001" +"geoId/51003" +"geoId/51005" +"geoId/51009" +"geoId/51013" +"geoId/51015" +"geoId/51019" +"geoId/51023" +"geoId/51025" +"geoId/51027" +"geoId/51029" +"geoId/51031" +"geoId/51033" +"geoId/51035" +"geoId/51041" +"geoId/51047" +"geoId/51051" +"geoId/51053" +"geoId/51059" +"geoId/51061" +"geoId/51065" +"geoId/51067" +"geoId/51069" +"geoId/51071" +"geoId/51073" +"geoId/51075" +"geoId/51077" +"geoId/51079" +"geoId/51083" +"geoId/51085" +"geoId/51087" +"geoId/51089" +"geoId/51093" +"geoId/51095" +"geoId/51099" +"geoId/51101" +"geoId/51105" +"geoId/51107" +"geoId/51109" +"geoId/51117" +"geoId/51121" +"geoId/51127" +"geoId/51137" +"geoId/51139" +"geoId/51141" +"geoId/51143" +"geoId/51145" +"geoId/51147" +"geoId/51149" +"geoId/51153" +"geoId/51155" +"geoId/51161" +"geoId/51163" +"geoId/51165" +"geoId/51167" +"geoId/51169" +"geoId/51171" +"geoId/51173" +"geoId/51175" +"geoId/51177" +"geoId/51179" +"geoId/51185" +"geoId/51187" +"geoId/51191" +"geoId/51193" +"geoId/51195" +"geoId/51197" +"geoId/51199" +"geoId/51510" +"geoId/51520" +"geoId/51540" +"geoId/51550" +"geoId/51570" +"geoId/51590" +"geoId/51600" +"geoId/51630" +"geoId/51650" +"geoId/51660" +"geoId/51670" +"geoId/51680" +"geoId/51690" +"geoId/51700" +"geoId/51710" +"geoId/51730" +"geoId/51740" +"geoId/51750" +"geoId/51760" +"geoId/51770" +"geoId/51775" +"geoId/51790" +"geoId/51800" +"geoId/51810" +"geoId/51820" +"geoId/51840" +"geoId/53" +"geoId/53001" +"geoId/53003" +"geoId/53005" +"geoId/53007" +"geoId/53009" +"geoId/53011" +"geoId/53015" +"geoId/53017" +"geoId/53021" +"geoId/53025" +"geoId/53027" +"geoId/53029" +"geoId/53031" +"geoId/53033" +"geoId/53035" +"geoId/53037" +"geoId/53039" +"geoId/53041" +"geoId/53045" +"geoId/53047" +"geoId/53049" +"geoId/53053" +"geoId/53055" +"geoId/53057" +"geoId/53061" +"geoId/53063" +"geoId/53065" +"geoId/53067" +"geoId/53071" +"geoId/53073" +"geoId/53075" +"geoId/53077" +"geoId/54" +"geoId/54003" +"geoId/54005" +"geoId/54009" +"geoId/54011" +"geoId/54019" +"geoId/54025" +"geoId/54027" +"geoId/54029" +"geoId/54033" +"geoId/54035" +"geoId/54037" +"geoId/54039" +"geoId/54041" +"geoId/54043" +"geoId/54045" +"geoId/54047" +"geoId/54049" +"geoId/54051" +"geoId/54053" +"geoId/54055" +"geoId/54057" +"geoId/54059" +"geoId/54061" +"geoId/54065" +"geoId/54067" +"geoId/54069" +"geoId/54077" +"geoId/54079" +"geoId/54081" +"geoId/54083" +"geoId/54091" +"geoId/54097" +"geoId/54099" +"geoId/54103" +"geoId/54107" +"geoId/54109" +"geoId/55" +"geoId/55001" +"geoId/55003" +"geoId/55005" +"geoId/55009" +"geoId/55013" +"geoId/55015" +"geoId/55017" +"geoId/55019" +"geoId/55021" +"geoId/55023" +"geoId/55025" +"geoId/55027" +"geoId/55029" +"geoId/55031" +"geoId/55033" +"geoId/55035" +"geoId/55039" +"geoId/55043" +"geoId/55045" +"geoId/55047" +"geoId/55049" +"geoId/55053" +"geoId/55055" +"geoId/55057" +"geoId/55059" +"geoId/55061" +"geoId/55063" +"geoId/55065" +"geoId/55067" +"geoId/55069" +"geoId/55071" +"geoId/55073" +"geoId/55075" +"geoId/55079" +"geoId/55081" +"geoId/55083" +"geoId/55085" +"geoId/55087" +"geoId/55089" +"geoId/55093" +"geoId/55095" +"geoId/55097" +"geoId/55101" +"geoId/55103" +"geoId/55105" +"geoId/55109" +"geoId/55111" +"geoId/55113" +"geoId/55115" +"geoId/55117" +"geoId/55119" +"geoId/55121" +"geoId/55123" +"geoId/55125" +"geoId/55127" +"geoId/55131" +"geoId/55133" +"geoId/55135" +"geoId/55137" +"geoId/55139" +"geoId/55141" +"geoId/56" +"geoId/56001" +"geoId/56005" +"geoId/56007" +"geoId/56013" +"geoId/56021" +"geoId/56023" +"geoId/56025" +"geoId/56029" +"geoId/56033" +"geoId/56037" +"geoId/56039" +"geoId/56041" +"geoId/02122" +"geoId/04012" +"geoId/29186" +"geoId/35006" +"geoId/51683" +"geoId/51685" +"geoId/12086" +"geoId/08014" +"geoId/09110" +"geoId/09120" +"geoId/09130" +"geoId/09140" +"geoId/09150" +"geoId/09160" +"geoId/09170" +"geoId/09180" +"geoId/09190" diff --git a/scripts/us_census/pep/population_estimates_by_asr/golden_data/golden_summary_report.csv b/scripts/us_census/pep/population_estimates_by_asr/golden_data/golden_summary_report.csv index aa5d0eaab8..7cef490f41 100644 --- a/scripts/us_census/pep/population_estimates_by_asr/golden_data/golden_summary_report.csv +++ b/scripts/us_census/pep/population_estimates_by_asr/golden_data/golden_summary_report.csv @@ -1,3420 +1,3420 @@ -"NumPlaces","observationPeriods","ScalingFactors","MeasurementMethods","StatVar","Units","MinDate" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_75To79Years_Female","[]","1970" -"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_45To49Years_Female_AsianOrPacificIslander","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_53Years_Female_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_95Years_Female_WhiteAlone","[]","1980" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0To4Years_Female_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_81Years_Female_NonWhite","[]","1940" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_45Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_32Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_63Years_Female","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_60To64Years_Female","[]","1970" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_67Years_Female","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_AsianOrPacificIslander","[]","1980" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_15To19Years_Female","[]","1970" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_44Years_Female_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_5Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_70Years_Female","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_82Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_56Years_Female","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_BlackOrAfricanAmericanAlone","[]","1960" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_19Years_Male_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_74Years_Female","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_58Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_34Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_57Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_52Years_Female","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_72Years_Female_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_90Years_BlackOrAfricanAmericanAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_84Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_BlackOrAfricanAmericanAlone","[]","1960" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_68Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_87Years_Male_WhiteAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_79Years_Male_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_81Years_Female","[]","1940" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_66Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_Female_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_82Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_45Years_Female","[]","1900" -"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_27Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_85Years_Female","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_19Years_Male_AsianAlone","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20To24Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_41Years_Female","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_17Years_Female_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_30Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_16Years_Male_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_24Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_78Years_Female","[]","1940" -"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_89Years_Female","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_58Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50Years_Female_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_19Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_38Years_Female","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_49Years_Female","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_79Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_63Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_73Years_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_71Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_Female_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_88Years_BlackOrAfricanAmericanAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65To69Years_Male_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_55Years_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_40Years_AsianAlone","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10To14Years_Female_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_37Years_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_50Years_Male_NonWhite","[]","1900" -"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_22Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_42Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_47Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_56Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_21Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_19Years_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_16Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_23Years_Female","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_44Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_77Years_Male","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_86Years_Male","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_78Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_25To29Years_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75Years_NonWhite","[]","1940" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_89Years_Female_BlackOrAfricanAmericanAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_13Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_84Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_27Years_Female","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_16Years_Female","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_31Years_Female_AsianAlone","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25To29Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_92Years_Female","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_79Years_NonWhite","[]","1940" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_6Years_Male_NonWhite","[]","1900" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_12Years_Female","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_34Years_Female","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_28Years_Female_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_8Years_Male_NonWhite","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_96Years_Female","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_87Years_Male","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_30Years_Female","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_73Years_Male_AsianAlone","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_80To84Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15To19Years_Male_WhiteAlone","[]","1970" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_93Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_59Years_Male","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_68Years_Female_AsianAlone","[]","2000" -"3193","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_Female_AsianOrPacificIslander","[]","1990" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_24Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_4Years_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_91Years_WhiteAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_21Years_Male_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_38Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_17Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_12Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_Female_WhiteAlone","[]","1900" -"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_65To69Years_Male_AsianOrPacificIslander","[]","1990" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_Male_AsianOrPacificIslander","[]","1980" -"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_30To34Years_Male_AsianOrPacificIslander","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_37Years_Male_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35To39Years_BlackOrAfricanAmericanAlone","[]","1970" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30To34Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_Male_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_61Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_67Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_BlackOrAfricanAmericanAlone","[]","1960" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5To9Years_Male_WhiteAlone","[]","1970" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_10To14Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_88Years_WhiteAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_Female_WhiteAlone","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_36Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_62Years_Male_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35To39Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_49Years_Female_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_77Years_NonWhite","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_76Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_43Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_68Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_22Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_3Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_55Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_6Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_18Years_Male_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_10Years_Male","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_30Years_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_24Years_Female_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_86Years_Male_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_90Years_Male_WhiteAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_13Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_27Years_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_100Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_39Years_Male_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_97Years_Male_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_26Years_NonWhite","[]","1900" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_70To74Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_61Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_WhiteAlone","[]","1940" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80To84Years_Female_BlackOrAfricanAmericanAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_23Years_Female_AsianAlone","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55To59Years_Female_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_45Years_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_64Years_Female_NonWhite","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_73Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_WhiteAlone","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_59Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_10Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_55To59Years_Female_AsianOrPacificIslander","[]","1990" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_96Years_WhiteAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_3Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_WhiteAlone","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_71Years_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55To59Years_AsianOrPacificIslander","[]","1990" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_Male_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3204","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_0To4Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_Male_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_55To59Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_60To64Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_90Years_Female_BlackOrAfricanAmericanAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_79Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_75Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_46Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_28Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_9Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_69Years_Female_TwoOrMoreRaces","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50To54Years_Male_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_10Years_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_90Years_Female_WhiteAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_23Years_Male_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_64Years_Male_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_61Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_70Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_WhiteAlone","[]","1900" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_95Years_BlackOrAfricanAmericanAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_72Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_70To74Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_82Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_2Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_52Years_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_24Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_WhiteAlone","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_32Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_Male_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_5To9Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_63Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_AsianOrPacificIslander","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_60To64Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_50Years_Female_NonWhite","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_10Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_42Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_71Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_38Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_51Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_65To69Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_66Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_69Years_Male","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_4Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_Female_WhiteAlone","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_94Years_Male","[]","1980" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_96Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_100Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60To64Years_Female_BlackOrAfricanAmericanAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_71Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_40Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_96Years_Male","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_36Years_Male_AsianAlone","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_Female_AsianOrPacificIslander","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_82Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_9Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_0To4Years_Female_AsianOrPacificIslander","[]","1990" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_36Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_78Years_Female_NonWhite","[]","1940" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_89Years_Female_WhiteAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_22Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_67Years_Male","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_21Years_Female_TwoOrMoreRaces","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_3Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_68Years_Male","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_98Years_Male_WhiteAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_9Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_50To54Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_95Years_Male","[]","1980" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65To69Years_Female_BlackOrAfricanAmericanAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_36Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50To54Years_BlackOrAfricanAmericanAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_Male_WhiteAlone","[]","1900" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_20Years_NonWhite","[]","1900" -"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_15To19Years_Male_AsianOrPacificIslander","[]","1990" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_34Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_Male_WhiteAlone","[]","1940" -"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30To34Years_AsianOrPacificIslander","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_30To34Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_50To54Years_AsianAlone","[]","2000" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_96Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_33Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_7Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_29Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_37Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_18Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_31Years_Male_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75OrMoreYears_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_Female_WhiteAlone","[]","1940" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_2Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_13Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_4Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_76Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_14Years_AsianAlone","[]","2000" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_80To84Years_Male","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_BlackOrAfricanAmericanAlone","[]","1960" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_67Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_57Years_Female_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_59Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_BlackOrAfricanAmericanAlone","[]","1960" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5To9Years_Female_BlackOrAfricanAmericanAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_71Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_Female_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_36Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_6Years_Female","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_84Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_Female_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_10Years_Male_NonWhite","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_69Years_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_58Years_Male","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_96Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_20Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_Male_WhiteAlone","[]","1940" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50To54Years_Female_BlackOrAfricanAmericanAlone","[]","1970" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_Female_WhiteAlone","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_91Years_Female_BlackOrAfricanAmericanAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_16Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_48Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_82Years_Male_AsianAlone","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_45To49Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_65To69Years_Female_AsianOrPacificIslander","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_84Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_Female_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_47Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_74Years_Female_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_28Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_95Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_BlackOrAfricanAmericanAlone","[]","1960" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_66Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_Male_WhiteAlone","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_14Years_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_31Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_94Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_8Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_51Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_55Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_63Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_Male_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_17Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_61Years_Female_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_40Years_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_99Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_Female_WhiteAlone","[]","1900" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_90Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_Male_WhiteAlone","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_65Years_NonWhite","[]","1900" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_85OrMoreYears_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_12Years_Female_TwoOrMoreRaces","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_89Years_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_70Years_Female_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50To54Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_62Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_56Years_Male_TwoOrMoreRaces","[]","2000" -"3204","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_44Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_32Years_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_49Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_78Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_81Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_51Years_NonWhite","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_10Years_Female_NonWhite","[]","1900" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45To49Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_9Years_Female","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_41Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_89Years_Male","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_31Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_31Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_30To34Years_Male","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_33Years_Male_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_94Years_Female_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_9Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_55To59Years_Male","[]","1970" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15To19Years_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25Years_Male_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_Female_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_96Years_Male_WhiteAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_Male_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_0Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_76Years_Male_AsianAlone","[]","2000" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_90Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_29Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_14Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_60To64Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_87Years_Female_WhiteAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75To79Years_Female_AsianOrPacificIslander","[]","1990" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_87Years_Female_BlackOrAfricanAmericanAlone","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_9Years_Female_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_75Years_Male","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_11Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_22Years_Male_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_43Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_80Years_Male_NonWhite","[]","1940" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_48Years_Male","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_21Years_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_61Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_31Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_93Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65To69Years_Female_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_63Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75To79Years_Female_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_44Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_WhiteAlone","[]","1940" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_93Years_Male_WhiteAlone","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_AsianOrPacificIslander","[]","1980" -"3143","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_1To4Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_51Years_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_93Years_WhiteAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_67Years_Male_TwoOrMoreRaces","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_55To59Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_40To44Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_55To59Years_Male_AsianOrPacificIslander","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_41Years_TwoOrMoreRaces","[]","2000" -"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_20To24Years_Male_AsianOrPacificIslander","[]","1990" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10To14Years_BlackOrAfricanAmericanAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_33Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_8Years_Female_NonWhite","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_55Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_60Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_95Years_Male_WhiteAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_WhiteAlone","[]","1900" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45To49Years_BlackOrAfricanAmericanAlone","[]","1970" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_92Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_43Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_Male_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15To19Years_AsianOrPacificIslander","[]","1990" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_33Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_70To74Years_Male_AsianOrPacificIslander","[]","1990" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_50To54Years_Female","[]","1970" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_57Years_Female_TwoOrMoreRaces","[]","2000" -"3204","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_TwoOrMoreRaces","[]","2000" -"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_5To9Years_Male_AsianOrPacificIslander","[]","1990" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_97Years_Female_WhiteAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_54Years_Male_NonWhite","[]","1900" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_0To4Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10To14Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_Male_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50To54Years_AsianOrPacificIslander","[]","1990" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75OrMoreYears_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_29Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_Female_WhiteAlone","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_89Years_Male_BlackOrAfricanAmericanAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_6Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_85Years_Male","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_Female_WhiteAlone","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_3Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_22Years_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_53Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_82Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_1Years_Male","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_WhiteAlone","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_87Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_20Years_Female","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_BlackOrAfricanAmericanAlone","[]","1960" -"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_33Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_14Years_Male_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_41Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_47Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_Male_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_99Years_BlackOrAfricanAmericanAlone","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_56Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75OrMoreYears_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_50Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_43Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_47Years_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_32Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_Male_WhiteAlone","[]","1900" -"3204","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_5To9Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_58Years_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_67Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_Female_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_94Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_79Years_Male","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_31Years_Female","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_Male_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_38Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_66Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_3Years_Male","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5Years_Female_TwoOrMoreRaces","[]","2000" -"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75To79Years_AsianOrPacificIslander","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_70To74Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_92Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30Years_Male_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_87Years_Male_BlackOrAfricanAmericanAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_28Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_42Years_Female","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_7Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_39Years_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_7Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_65Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_Female_WhiteAlone","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_47Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_9Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_29Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_53Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_BlackOrAfricanAmericanAlone","[]","1960" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75To79Years_Female_BlackOrAfricanAmericanAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_1Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_5To9Years_Female","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_83Years_Male","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_58Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_39Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_83Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_Male_AsianOrPacificIslander","[]","1980" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80To84Years_Female_WhiteAlone","[]","1970" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_92Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_7Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_7Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85Years_Male_BlackOrAfricanAmericanAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Male_BlackOrAfricanAmericanAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_46Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_21Years_Female_AsianAlone","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_Male_WhiteAlone","[]","1940" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_62Years_Female","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_67Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_47Years_Male","[]","1900" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65To69Years_Male_BlackOrAfricanAmericanAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_78Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_Female_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_77Years_Male_NonWhite","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_84Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_2Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_68Years_Female","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_43Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_57Years_Female","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_Female_WhiteAlone","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_89Years_Male_WhiteAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_59Years_Female","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_83Years_Female_NonWhite","[]","1940" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_58Years_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_38Years_Male","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_13Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_48Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_40To44Years_Male_AsianOrPacificIslander","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_87Years_BlackOrAfricanAmericanAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_73Years_Female","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_51Years_Female","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_59Years_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75To79Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60Years_Female_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_56Years_Male","[]","1900" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80To84Years_BlackOrAfricanAmericanAlone","[]","1970" -"3204","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_0To4Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_69Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_31Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_98Years_BlackOrAfricanAmericanAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_22Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_52Years_Male_TwoOrMoreRaces","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_75To79Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_46Years_Female_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35To39Years_Male_BlackOrAfricanAmericanAlone","[]","1970" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_Female_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Male_WhiteAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_Male_AsianOrPacificIslander","[]","1980" -"3204","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_20To24Years_Male","[]","1970" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_Male_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85Years_Female_BlackOrAfricanAmericanAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_71Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_57Years_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_55Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_Male_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_34Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_48Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_83Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_Female_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_92Years_Female_WhiteAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_22Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_95Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_Male_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_70Years_AsianAlone","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_80To84Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_40Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_31Years_Male","[]","1900" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25To29Years_Male_BlackOrAfricanAmericanAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_76Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_62Years_TwoOrMoreRaces","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_20To24Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_43Years_AsianAlone","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_55Years_Male_NonWhite","[]","1900" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30To34Years_Female_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_34Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_41Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_35To39Years_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_56Years_Male_NonWhite","[]","1900" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70To74Years_Female_WhiteAlone","[]","1970" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20To24Years_Female_BlackOrAfricanAmericanAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_13Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60To64Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_Male_AsianOrPacificIslander","[]","1980" -"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_0To4Years_Male_AsianOrPacificIslander","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_72Years_Female_AsianAlone","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_20To24Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_92Years_Male","[]","1980" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_91Years_BlackOrAfricanAmericanAlone","[]","1980" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_75To79Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_Male_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_99Years_Male_WhiteAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_78Years_Male_NonWhite","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_Male_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_72Years_Male_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_35Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_Female_WhiteAlone","[]","1940" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_26Years_Female","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_19Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_13Years_Female","[]","1900" -"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_50To54Years_Female_AsianOrPacificIslander","[]","1990" -"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85OrMoreYears_Male_NonWhite","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_Male_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_78Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_27Years_Female_TwoOrMoreRaces","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30To34Years_Female_BlackOrAfricanAmericanAlone","[]","1970" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_9Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_53Years_Male_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_56Years_Female_NonWhite","[]","1900" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_18Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_Female_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_13Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_21Years_Male","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_40Years_Female","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_94Years_WhiteAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70To74Years_AsianOrPacificIslander","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_17Years_Male_AsianAlone","[]","2000" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30To34Years_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_22Years_Male","[]","1900" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_65To69Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_70Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_44Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_72Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_15Years_AsianAlone","[]","2000" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_65To69Years_Male","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_47Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_Male_WhiteAlone","[]","1900" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45To49Years_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_79Years_Female","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_73Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_48Years_Female","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_37Years_Female","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_54Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_BlackOrAfricanAmericanAlone","[]","1960" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_27Years_Female_AsianAlone","[]","2000" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_97Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_Female_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_89Years_BlackOrAfricanAmericanAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_66Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_77Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_73Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_5Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_98Years_Female_WhiteAlone","[]","1980" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55To59Years_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_79Years_Male_AsianAlone","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_5To9Years_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_92Years_Female_BlackOrAfricanAmericanAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_86Years_Female_WhiteAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_39Years_Male","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_41Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_88Years_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_81Years_NonWhite","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_36Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75OrMoreYears_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_75Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_78Years_Male_AsianAlone","[]","2000" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20To24Years_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_84Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_23Years_Male_AsianAlone","[]","2000" -"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_BlackOrAfricanAmericanAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_16Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_Male_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25To29Years_Female_BlackOrAfricanAmericanAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_64Years_Male","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_74Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_88Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_46Years_Male","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_77Years_Female_NonWhite","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_63Years_Female_NonWhite","[]","1900" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_0To4Years_Male","[]","1970" -"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_5To9Years_Female_AsianOrPacificIslander","[]","1990" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_80To84Years_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_TwoOrMoreRaces","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_45To49Years_AsianAlone","[]","2000" -"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_38Years_Female_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_79Years_Male_NonWhite","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_28Years_Male_TwoOrMoreRaces","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_28Years_Male_NonWhite","[]","1900" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_75To79Years_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_12Years_Male_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_34Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_71Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_Female_AsianOrPacificIslander","[]","1980" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40To44Years_Female_BlackOrAfricanAmericanAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_Male_WhiteAlone","[]","1900" -"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_70To74Years_Female_AsianOrPacificIslander","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_Female_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35Years_Female_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_Male_WhiteAlone","[]","1900" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5To9Years_Male_BlackOrAfricanAmericanAlone","[]","1970" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85Years_BlackOrAfricanAmericanAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_73Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_81Years_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_96Years_BlackOrAfricanAmericanAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_70To74Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_45To49Years_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_8Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_26Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_10Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_52Years_Female_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_57Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_47Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_56Years_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_24Years_Female","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_12Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_Female_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_11Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_93Years_Male","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_49Years_Male_NonWhite","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85Years_Male_AsianOrPacificIslander","[]","1980" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70To74Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_56Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_Male_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_72Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_Female_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_95Years_Female_BlackOrAfricanAmericanAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_53Years_AsianAlone","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_85OrMoreYears_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_59Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_15Years_Female","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_26Years_Male_TwoOrMoreRaces","[]","2000" -"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_60To64Years_Female_AsianOrPacificIslander","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_24Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_Male_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_46Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_14Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_Female_WhiteAlone","[]","1900" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20To24Years_Male_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_66Years_Male_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_20Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_15Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_74Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_58Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_26Years_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_48Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_13Years_Male","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_57Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50Years_Male_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_62Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_38Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_17Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_46Years_Female","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_35Years_Female","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_62Years_Female_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_18Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_77Years_Female_AsianAlone","[]","2000" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_5To9Years_Male","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40Years_Female_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_Male_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_59Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_Female_AsianOrPacificIslander","[]","1980" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40To44Years_Female_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0To4Years_AsianOrPacificIslander","[]","1990" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55To59Years_Male_BlackOrAfricanAmericanAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_37Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_Female_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_14Years_Male","[]","1900" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_Female_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_91Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_16Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_63Years_Male","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_Male_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_14Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_90Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_Male_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_53Years_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_68Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_68Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_Female_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_82Years_Female_NonWhite","[]","1940" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_6Years_Male","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_88Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_4Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_53Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_BlackOrAfricanAmericanAlone","[]","1960" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5To9Years_BlackOrAfricanAmericanAlone","[]","1970" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_67Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_6Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_32Years_Female_AsianAlone","[]","2000" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_94Years_BlackOrAfricanAmericanAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_45Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_97Years_Male","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_84Years_Female_NonWhite","[]","1940" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_78Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_30Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_81Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_4Years_Female","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_58Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_WhiteAlone","[]","1940" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_37Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_27Years_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_86Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_81Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_Male_AsianOrPacificIslander","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_87Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_58Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_86Years_WhiteAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_37Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_92Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_27Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35Years_Female_AsianAlone","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55To59Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_72Years_Male","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_38Years_Male_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_69Years_Male_NonWhite","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_92Years_Female_AsianOrPacificIslander","[]","1980" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_45To49Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_98Years_WhiteAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_Female_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_48Years_Male_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_Female_AsianOrPacificIslander","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_14Years_Male_AsianAlone","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_59Years_Male_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_61Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_93Years_AsianOrPacificIslander","[]","1980" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40To44Years_BlackOrAfricanAmericanAlone","[]","1970" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_Female_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_26Years_Male_NonWhite","[]","1900" -"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_AmericanIndianAndAlaskaNativeAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_34Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_93Years_BlackOrAfricanAmericanAlone","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_Male_WhiteAlone","[]","1900" -"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_0Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_70Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_Male_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_Female_AsianOrPacificIslander","[]","1980" -"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_0Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_69Years_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_15Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_77Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_76Years_Male","[]","1940" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10Years_Male_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_69Years_Female_NonWhite","[]","1900" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_65To69Years_Female","[]","1970" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_70To74Years_Female","[]","1970" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_83Years_Female_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_18Years_Male","[]","1900" -"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20To24Years_AsianOrPacificIslander","[]","1990" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_72Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_60Years_AsianAlone","[]","2000" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_95Years_AsianOrPacificIslander","[]","1980" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_20To24Years_Female","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_16Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_49Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_97Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_57Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_1Years_Female","[]","1900" -"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_80To84Years_Female_AsianOrPacificIslander","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_44Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_50Years_NonWhite","[]","1900" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15To19Years_Female_BlackOrAfricanAmericanAlone","[]","1970" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_Male_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_50To54Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_74Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_Female_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_78Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_38Years_Female_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_88Years_Male","[]","1980" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20To24Years_Female_WhiteAlone","[]","1970" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_59Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_98Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_80Years_Female_NonWhite","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_72Years_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_Male_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_55Years_Male","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_23Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_54Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_Male_WhiteAlone","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_25Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_12Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_36Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_72Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_35Years_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_86Years_Female_BlackOrAfricanAmericanAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_Male_WhiteAlone","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_1Years_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_35To39Years_Male","[]","1970" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_69Years_Female_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_24Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_25Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_17Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_28Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_11Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_54Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_59Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70To74Years_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_WhiteAlone","[]","1940" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_14Years_Male_NonWhite","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_67Years_Female_NonWhite","[]","1900" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_15To19Years_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_80Years_NonWhite","[]","1940" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_51Years_Male","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_47Years_Male_NonWhite","[]","1900" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_10To14Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_Female_WhiteAlone","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_27Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_Male_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_76Years_Female_NonWhite","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_2Years_Female_TwoOrMoreRaces","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_0To4Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_97Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_60To64Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_26Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_64Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_64Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_74Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_80Years_Male","[]","1940" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65To69Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_50To54Years_Male","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_45Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_64Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_Female_WhiteAlone","[]","1940" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_58Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_2Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_63Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_6Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_12Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_Female_WhiteAlone","[]","1940" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_29Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_Male_WhiteAlone","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_75OrMoreYears_Male","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_41Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_2Years_Male","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_47Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_7Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_93Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_18Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80To84Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_38Years_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_37Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_26Years_Male","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_98Years_Female","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_95Years_Female","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_45To49Years_Male_AsianOrPacificIslander","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_33Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_84Years_Male","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_4Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_11Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_30Years_Male","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45To49Years_AsianOrPacificIslander","[]","1990" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_16Years_TwoOrMoreRaces","[]","2000" -"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_80To84Years_Male_AsianOrPacificIslander","[]","1990" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_100Years_Male","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_84Years_Female","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_9Years_NonWhite","[]","1900" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_85OrMoreYears_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75Years_Female_NonWhite","[]","1940" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_97Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_68Years_Female_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_66Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_74Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_89Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_42Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_BlackOrAfricanAmericanAlone","[]","1960" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70To74Years_Male_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_81Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_73Years_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_Female_AsianOrPacificIslander","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_10To14Years_TwoOrMoreRaces","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_63Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_Female_WhiteAlone","[]","1900" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_92Years_BlackOrAfricanAmericanAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55To59Years_BlackOrAfricanAmericanAlone","[]","1970" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_19Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_54Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_86Years_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_61Years_Female","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_70Years_Male","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_8Years_Male","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_64Years_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_21Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_65Years_Female","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_7Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_Male_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_BlackOrAfricanAmericanAlone","[]","1960" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_45To49Years_Female","[]","1970" -"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_10To14Years_Female_AsianOrPacificIslander","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_17Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_87Years_Female_AsianOrPacificIslander","[]","1980" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_30To34Years_Female","[]","1970" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_99Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_69Years_Female","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_95Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_58Years_Female","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_AsianOrPacificIslander","[]","1980" -"3204","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_57Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_72Years_Female","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_50Years_Female","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_94Years_Male_BlackOrAfricanAmericanAlone","[]","1980" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80To84Years_WhiteAlone","[]","1970" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_76Years_Female","[]","1940" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_54Years_Female","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_61Years_Male","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10To14Years_Male_BlackOrAfricanAmericanAlone","[]","1970" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_60To64Years_Male","[]","1970" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_23Years_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_39Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_Male_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_48Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_83Years_Female","[]","1940" -"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_Female_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_82Years_AsianAlone","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_Female_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_87Years_Female","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_43Years_Female","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_43Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_Male_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_23Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_46Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_24Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_36Years_Female","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_47Years_Female","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_83Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_88Years_Male_BlackOrAfricanAmericanAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_67Years_Male_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_AsianOrPacificIslander","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_28Years_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_88Years_Female_WhiteAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_79Years_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_Male_WhiteAlone","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_61Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50To54Years_Female_WhiteAlone","[]","1970" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_46Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_27Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_52Years_Male","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_31Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_58Years_Female_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_17Years_Male","[]","1900" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40To44Years_Male_BlackOrAfricanAmericanAlone","[]","1970" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_40To44Years_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_70Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_34Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_39Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_55To59Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_WhiteAlone","[]","1940" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_Male_BlackOrAfricanAmericanAlone","[]","1960" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_97Years_BlackOrAfricanAmericanAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_60Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_21Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_BlackOrAfricanAmericanAlone","[]","1960" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_74Years_NonWhite","[]","1900" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50To54Years_Male_BlackOrAfricanAmericanAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20Years_Male_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_18Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_86Years_BlackOrAfricanAmericanAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_Female_WhiteAlone","[]","1940" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_80To84Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_41Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_42Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_BlackOrAfricanAmericanAlone","[]","1960" -"3193","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_Male_AsianOrPacificIslander","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_52Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_77Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_66Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_76Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_BlackOrAfricanAmericanAlone","[]","1960" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_56Years_Female_AsianAlone","[]","2000" -"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40To44Years_AsianOrPacificIslander","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_6Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_97Years_WhiteAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_38Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_76Years_NonWhite","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_32Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_57Years_Male_TwoOrMoreRaces","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20To24Years_Male_BlackOrAfricanAmericanAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_83Years_Male_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10Years_Female_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_99Years_Female_BlackOrAfricanAmericanAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_35Years_Male","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_19Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_78Years_NonWhite","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70To74Years_BlackOrAfricanAmericanAlone","[]","1970" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_75To79Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_98Years_Female_BlackOrAfricanAmericanAlone","[]","1980" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0To4Years_Male_WhiteAlone","[]","1970" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_87Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_68Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_77Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_19Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_WhiteAlone","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_17Years_Female_NonWhite","[]","1900" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30To34Years_Male_BlackOrAfricanAmericanAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_WhiteAlone","[]","1940" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_34Years_Male","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_17Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_42Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_62Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30To34Years_Male_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_62Years_Male","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_39Years_Male_NonWhite","[]","1900" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_36Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30Years_Female_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_23Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_62Years_Female_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_4Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_9Years_Male","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_26Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_65Years_TwoOrMoreRaces","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25To29Years_Female_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_28Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_67Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_36Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_36Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80To84Years_Male_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_18Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_21Years_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_0Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_BlackOrAfricanAmericanAlone","[]","1960" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_Female_WhiteAlone","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_97Years_Female_BlackOrAfricanAmericanAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_28Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_71Years_Male","[]","1900" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_35To39Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_87Years_WhiteAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_15Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_83Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80To84Years_Male_BlackOrAfricanAmericanAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_61Years_Female_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_90Years_WhiteAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_24Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_44Years_Male","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_51Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_10To14Years_Male","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_23Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_AsianOrPacificIslander","[]","1980" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_75To79Years_Male","[]","1970" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_65Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_61Years_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_30Years_Male_NonWhite","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_37Years_Female_NonWhite","[]","1900" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_30To34Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_86Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_77Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_80Years_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_92Years_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_79Years_Female_NonWhite","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_56Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_46Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_48Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_97Years_Male_WhiteAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_80Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_WhiteAlone","[]","1900" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60To64Years_Male_BlackOrAfricanAmericanAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_59Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_26Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_Male_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_2Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_21Years_Male_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_63Years_Male_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_46Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_36Years_Female_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_39Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_34Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_71Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_29Years_Female_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_90Years_Female_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85OrMoreYears_Female_NonWhite","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_21Years_Female","[]","1900" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_WhiteAlone","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_51Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_16Years_Male","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_81Years_Female_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_25To29Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_29Years_Female","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_18Years_Female","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_96Years_Female_WhiteAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_8Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_AsianOrPacificIslander","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_11Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_WhiteAlone","[]","1900" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_32Years_Female","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_94Years_Female","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_15Years_Male","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_10Years_Female","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_84Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_Female_AsianOrPacificIslander","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_87Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_2Years_NonWhite","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75OrMoreYears_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_Female_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_43Years_Male","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_50To54Years_Male_AsianOrPacificIslander","[]","1990" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15To19Years_BlackOrAfricanAmericanAlone","[]","1970" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_100Years_Male_WhiteAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_Female_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_7Years_Female","[]","1900" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_25To29Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_5Years_Male_NonWhite","[]","1900" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_AsianAlone","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_75To79Years_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_9Years_Male_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_69Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_Male_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_4Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_35Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_25To29Years_Male","[]","1970" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_93Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_6Years_NonWhite","[]","1900" -"3204","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_Female_WhiteAlone","[]","1900" -"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_64Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_57Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_42Years_Male","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_4Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_29Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_BlackOrAfricanAmericanAlone","[]","1960" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_47Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_97Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_Female_WhiteAlone","[]","1900" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_15To19Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_Male_WhiteAlone","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_41Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_9Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_50Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_86Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_Female_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_98Years_Female_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_88Years_Male_AsianOrPacificIslander","[]","1980" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0To4Years_Female_BlackOrAfricanAmericanAlone","[]","1970" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_35To39Years_Male_AsianOrPacificIslander","[]","1990" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_BlackOrAfricanAmericanAlone","[]","1960" -"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30To34Years_BlackOrAfricanAmericanAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_Female_WhiteAlone","[]","1940" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_91Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_54Years_Male","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_11Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_34Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_Male_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_11Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_49Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_32Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_88Years_Male_WhiteAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_Female_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_31Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35To39Years_Male_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_16Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_100Years_WhiteAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_81Years_Male","[]","1940" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_18Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_42Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3195","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_0Years_Female","[]","1900" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5To9Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_96Years_Female_BlackOrAfricanAmericanAlone","[]","1980" -"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_WhiteAlone","[]","1900" -"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5To9Years_AsianOrPacificIslander","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_22Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_55To59Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_67Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_24Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60To64Years_AsianOrPacificIslander","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_BlackOrAfricanAmericanAlone","[]","1960" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_WhiteAlone","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_Female_WhiteAlone","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_89Years_WhiteAlone","[]","1980" -"3143","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_1To4Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_WhiteAlone","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25To29Years_AsianOrPacificIslander","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_67Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_92Years_WhiteAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_29Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_AsianOrPacificIslander","[]","1980" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65To69Years_BlackOrAfricanAmericanAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_95Years_WhiteAlone","[]","1980" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_85OrMoreYears_Male","[]","1940" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_42Years_Male_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65To69Years_AsianOrPacificIslander","[]","1990" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_53Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_100Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_18Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_90Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_74Years_Female_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_88Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_51Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60Years_Male_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_31Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_89Years_Male_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_14Years_Female_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_13Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_69Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10To14Years_Female_BlackOrAfricanAmericanAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_73Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_82Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_Female_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_66Years_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_66Years_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_23Years_Male","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_6Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_72Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_69Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75To79Years_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_9Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_50Years_Male","[]","1900" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_52Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_Female_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_100Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55Years_Female_TwoOrMoreRaces","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_65To69Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_94Years_Female_WhiteAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_68Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_33Years_Male","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_49Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_84Years_AsianAlone","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_10To14Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_86Years_Male_WhiteAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_38Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_51Years_AsianAlone","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5To9Years_Female_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_Female_WhiteAlone","[]","1900" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60To64Years_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_91Years_Female_WhiteAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_Female_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_Female_WhiteAlone","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_19Years_Male","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_16Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_46Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_Male_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_5To9Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_45Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_11Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45To49Years_Male_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_29Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_BlackOrAfricanAmericanAlone","[]","1960" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60To64Years_Female_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_64Years_Female_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_7Years_Male","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_2Years_TwoOrMoreRaces","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_10To14Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_Female_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_62Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_64Years_Male_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_35Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_AsianOrPacificIslander","[]","1980" -"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_33Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45Years_Female_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_62Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_31Years_TwoOrMoreRaces","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_5To9Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_18Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_Male_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_53Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_87Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_45Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_22Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_49Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_15To19Years_Male","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_11Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_48Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_24Years_Male_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_25Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_6Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_6Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_Female_WhiteAlone","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_94Years_Male_WhiteAlone","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_50To54Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_64Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_72Years_NonWhite","[]","1900" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_BlackOrAfricanAmericanAlone","[]","1960" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_Male_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_91Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_4Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_49Years_TwoOrMoreRaces","[]","2000" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_40To44Years_Female","[]","1970" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_18Years_Male_NonWhite","[]","1900" -"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_40To44Years_Female_AsianOrPacificIslander","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_13Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_60Years_Male","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_21Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_26Years_Male_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_15Years_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_76Years_Male_NonWhite","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_20Years_Female_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_98Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_69Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_5Years_Male","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75Years_Male_AsianAlone","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70To74Years_Male_BlackOrAfricanAmericanAlone","[]","1970" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_65Years_Male_NonWhite","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_96Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_82Years_NonWhite","[]","1940" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_35To39Years_Female","[]","1970" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_60Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_44Years_Male_NonWhite","[]","1900" -"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_20To24Years_Female_AsianOrPacificIslander","[]","1990" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_11Years_Female_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_41Years_Female_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_20To24Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_14Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_13Years_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_39Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_37Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_3Years_Male_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_11Years_Male_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_100Years_Male_BlackOrAfricanAmericanAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_25Years_Male","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_59Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_16Years_Female_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_19Years_Female","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_12Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_54Years_Female_NonWhite","[]","1900" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_29Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_54Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_68Years_Male_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_86Years_Male_BlackOrAfricanAmericanAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_32Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_90Years_Female","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_WhiteAlone","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_21Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_Male_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_50Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_78Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_32Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_78Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_52Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_Male_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_3Years_Female","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_83Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_7Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_1Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_74Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_51Years_Female_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_73Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_77Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_41Years_Female_TwoOrMoreRaces","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_70To74Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_7Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_Female_AsianOrPacificIslander","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_TwoOrMoreRaces","[]","2000" -"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_30To34Years_Female_AsianOrPacificIslander","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_12Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_Female_WhiteAlone","[]","1900" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_98Years_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_70To74Years_Male","[]","1970" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_49Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"3143","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_1To4Years_Male","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_27Years_Male","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_37Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_2Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_60Years_Female","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_77Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_3Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_66Years_Female","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_64Years_Female","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_61Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_27Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35To39Years_Female_BlackOrAfricanAmericanAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_Female_WhiteAlone","[]","1900" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_94Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_14Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_99Years_Female_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_8Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_99Years_Male","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_71Years_Female","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_58Years_Male_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_73Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_71Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_77Years_Female","[]","1940" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_55Years_Female","[]","1900" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75To79Years_Male_BlackOrAfricanAmericanAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_Female_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_75Years_Female","[]","1940" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_53Years_Female","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_81Years_Male_AsianAlone","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_TwoOrMoreRaces","[]","2000" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25To29Years_BlackOrAfricanAmericanAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_5Years_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_42Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_3Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_Female_AsianOrPacificIslander","[]","1980" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40To44Years_Male_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_4Years_Male","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_60Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_81Years_Male_NonWhite","[]","1940" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_63Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_59Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_82Years_Male_NonWhite","[]","1940" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_29Years_Male","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85Years_Male_WhiteAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_54Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_44Years_Male_AsianAlone","[]","2000" -"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_39Years_Female_AsianAlone","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_30To34Years_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_46Years_Female_NonWhite","[]","1900" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_98Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75To79Years_Male_AsianOrPacificIslander","[]","1990" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_52Years_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_8Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_58Years_AsianAlone","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15To19Years_Male_BlackOrAfricanAmericanAlone","[]","1970" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_49Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_65Years_Male","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_60Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_100Years_Female_WhiteAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_25Years_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_99Years_Male_BlackOrAfricanAmericanAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_32Years_Female_NonWhite","[]","1900" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5To9Years_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_Female_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_52Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_Female_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_52Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_48Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_30To34Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_22Years_Female","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_WhiteAlone","[]","1940" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_19Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_Male_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_30Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_17Years_Female","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_Male_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_91Years_Male","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_93Years_Female","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_20To24Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_Female_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_90Years_Male_BlackOrAfricanAmericanAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_0Years_Male_NonWhite","[]","1900" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Male_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_32Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_47Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_Male_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_97Years_Female","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_74Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_33Years_Female","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_8Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_68Years_Male_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_Male_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_89Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_99Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_Female_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_52Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_2Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_82Years_Female","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_27Years_Male_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_26Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_44Years_Female","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_86Years_Female","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_34Years_Female_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_91Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_74Years_Male","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_75OrMoreYears_Female","[]","1900" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_AsianAlone","[]","2000" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_Male_WhiteAlone","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_49Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_Male_WhiteAlone","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_Male_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85Years_WhiteAlone","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_20To24Years_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_5Years_Female_NonWhite","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85OrMoreYears_NonWhite","[]","1940" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_50To54Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_0To4Years_Female","[]","1970" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_34Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_53Years_Female_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_48Years_Male_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_39Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_TwoOrMoreRaces","[]","2000" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40To44Years_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_89Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_9Years_Male_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_89Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_82Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_95Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3193","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_AsianOrPacificIslander","[]","1990" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_94Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_44Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35To39Years_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_81Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_23Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_86Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45To49Years_Female_BlackOrAfricanAmericanAlone","[]","1970" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_2Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_11Years_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_19Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0To4Years_BlackOrAfricanAmericanAlone","[]","1970" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_AsianOrPacificIslander","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_54Years_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_92Years_Male_WhiteAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35To39Years_Female_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_79Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_76Years_Female_TwoOrMoreRaces","[]","2000" -"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_29Years_Female_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_2Years_Male_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_22Years_Female_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45To49Years_Female_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_69Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_7Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_44Years_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_93Years_Female_WhiteAlone","[]","1980" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_65To69Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_60To64Years_Male_AsianOrPacificIslander","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_33Years_Female_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_21Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_33Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_Female_WhiteAlone","[]","1940" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_25To29Years_Female","[]","1970" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_BlackOrAfricanAmericanAlone","[]","1960" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_15To19Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_22Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_Female_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_67Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_3Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_12Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_66Years_Male","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_73Years_Male","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_3Years_Female_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_Male_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75Years_Male_NonWhite","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_12Years_Male","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_4Years_Male_AsianAlone","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_37Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_Male_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65Years_Female_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_98Years_Male","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_25To29Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_57Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60To64Years_BlackOrAfricanAmericanAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_Male_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_100Years_BlackOrAfricanAmericanAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_83Years_NonWhite","[]","1940" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_37Years_Male","[]","1900" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25To29Years_Male_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_28Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_16Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0To4Years_Male_BlackOrAfricanAmericanAlone","[]","1970" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_41Years_Male_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_40Years_Male","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_25Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_15Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_24Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_42Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_71Years_Male_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_16Years_Female_NonWhite","[]","1900" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_41Years_Male","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_44Years_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_91Years_Female","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_55To59Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_35Years_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_36Years_Female_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_94Years_Female_BlackOrAfricanAmericanAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_99Years_Female","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_40To44Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55To59Years_Male_WhiteAlone","[]","1970" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_45To49Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_66Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75OrMoreYears_WhiteAlone","[]","1900" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_55To59Years_Female","[]","1970" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_96Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_33Years_Female_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_88Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_80Years_Female","[]","1940" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Female_WhiteAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_84Years_Female_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_1Years_Male_NonWhite","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_29Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_Female_WhiteAlone","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_88Years_Female","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_85OrMoreYears_Female","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_77Years_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_30To34Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_64Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_71Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_68Years_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_15To19Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_3Years_TwoOrMoreRaces","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_35To39Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_20Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_63Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_3Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_43Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_80Years_AsianAlone","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_20Years_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_30Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_93Years_Female_BlackOrAfricanAmericanAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20Years_Female_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_Female_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_91Years_Male_WhiteAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_14Years_Female_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_100Years_Female_BlackOrAfricanAmericanAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_43Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_76Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_68Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_74Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_4Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_Female_WhiteAlone","[]","1900" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_27Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75To79Years_BlackOrAfricanAmericanAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_28Years_Female_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_99Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_37Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_49Years_Male","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_94Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_WhiteAlone","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_41Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_Male_AsianOrPacificIslander","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_60To64Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_Male_WhiteAlone","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_93Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_96Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_Female_AsianOrPacificIslander","[]","1980" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0To4Years_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_56Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_20Years_Male","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45Years_Male_AsianAlone","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55To59Years_Female_BlackOrAfricanAmericanAlone","[]","1970" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0To4Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_100Years_Male_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_90Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10To14Years_WhiteAlone","[]","1970" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_91Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65To69Years_WhiteAlone","[]","1970" -"3195","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_36Years_Male","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_8Years_Female","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_2Years_Female","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_Male_WhiteAlone","[]","1940" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_Female_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_99Years_Female_WhiteAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_Female_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_WhiteAlone","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_47Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_17Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_24Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_35To39Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_63Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_13Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_76Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_92Years_Male_BlackOrAfricanAmericanAlone","[]","1980" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_45To49Years_Male","[]","1970" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_45Years_Male","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_7Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_65To69Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_65Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_12Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_79Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_52Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_24Years_Male","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_11Years_Male","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Female_TwoOrMoreRaces","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10To14Years_Male_WhiteAlone","[]","1970" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_18Years_Female_NonWhite","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_98Years_Male_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_13Years_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_40To44Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_49Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_Female_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_6Years_Male_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_79Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_79Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_34Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_32Years_Male","[]","1900" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25To29Years_WhiteAlone","[]","1970" -"3143","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_1To4Years_WhiteAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_84Years_NonWhite","[]","1940" -"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_25To29Years_Male_AsianOrPacificIslander","[]","1990" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_BlackOrAfricanAmericanAlone","[]","1960" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15To19Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_81Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_Male_WhiteAlone","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_51Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_32Years_Female_TwoOrMoreRaces","[]","2000" -"3143","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_1To4Years_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_3Years_AsianAlone","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60To64Years_Male_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_62Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_15To19Years_Female_AsianOrPacificIslander","[]","1990" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_Male_AsianOrPacificIslander","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_57Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_15To19Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_17Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_35Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45Years_Female_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65Years_Male_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_BlackOrAfricanAmericanAlone","[]","1960" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_75Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_26Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_5Years_Female","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_Female_AsianOrPacificIslander","[]","1980" -"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35To39Years_AsianOrPacificIslander","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_88Years_Female_BlackOrAfricanAmericanAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_42Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_54Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_Male_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75Years_Female_TwoOrMoreRaces","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_AsianAlone","[]","2000" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_40To44Years_Male","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_Female_WhiteAlone","[]","1900" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_35To39Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_100Years_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_64Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_13Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40To44Years_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_8Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_74Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50To54Years_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_Female_AsianOrPacificIslander","[]","1980" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_12Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_56Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_31Years_Female_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_90Years_Male","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_Male_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60Years_Male_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_93Years_Male_BlackOrAfricanAmericanAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_63Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_54Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_61Years_Male_AsianAlone","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75To79Years_Male_WhiteAlone","[]","1970" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_83Years_Male_NonWhite","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_23Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15To19Years_Female_WhiteAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_73Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_1Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_27Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_53Years_Male","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_53Years_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_39Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_42Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_99Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_46Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_83Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_38Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_39Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_43Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40Years_Male_TwoOrMoreRaces","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_100Years_Female","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_Female_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_99Years_WhiteAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_91Years_Male_BlackOrAfricanAmericanAlone","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_72Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_Male_WhiteAlone","[]","1900" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_62Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"3143","[P1Y]","[]","[CensusPEPSurvey]","Count_Person_1To4Years_Female","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_76Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_59Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_7Years_Male_AsianAlone","[]","2000" -"3143","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Female_BlackOrAfricanAmericanAlone","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_25To29Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_BlackOrAfricanAmericanAlone","[]","1960" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_71Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_48Years_Female_TwoOrMoreRaces","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_43Years_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_4Years_Female_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_Male_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_40Years_Male_NonWhite","[]","1900" -"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_35To39Years_Female_AsianOrPacificIslander","[]","1990" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_57Years_Male","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_61Years_Male_NonWhite","[]","1900" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_73Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_Female_WhiteAlone","[]","1900" -"3204","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_0To4Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_8Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_40To44Years_AsianAlone","[]","2000" -"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10To14Years_AsianOrPacificIslander","[]","1990" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_51Years_Male_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_78Years_Male","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_52Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_25Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_Male_WhiteAlone","[]","1940" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_43Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_33Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_WhiteAlone","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_80To84Years_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85Years_Female_WhiteAlone","[]","1980" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_33Years_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_56Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_25Years_Female","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_14Years_Female","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_Female_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_91Years_Female_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_84Years_Male_NonWhite","[]","1940" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_98Years_Male_BlackOrAfricanAmericanAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_38Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_28Years_Female","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_53Years_Male_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_66Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_83Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40Years_Female_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_51Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_11Years_Female","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70Years_Female_AsianAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_22Years_Female_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_Male_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_42Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_23Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_Male_AsianOrPacificIslander","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_12Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_44Years_Female_TwoOrMoreRaces","[]","2000" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_80To84Years_Female","[]","1970" -"3231","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20To24Years_BlackOrAfricanAmericanAlone","[]","1970" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_Male_WhiteAlone","[]","1940" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_6Years_Male_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_97Years_Male_BlackOrAfricanAmericanAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_54Years_Male_TwoOrMoreRaces","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3195","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_0Years_Male","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_62Years_Male_TwoOrMoreRaces","[]","2000" -"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_25To29Years_Female_AsianOrPacificIslander","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25Years_Female_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_95Years_Male_BlackOrAfricanAmericanAlone","[]","1980" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_Female_WhiteAlone","[]","1940" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_46Years_Male_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_23Years_AsianAlone","[]","2000" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_17Years_Female_TwoOrMoreRaces","[]","2000" -"3141","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80To84Years_AsianOrPacificIslander","[]","1990" -"3231","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_10To14Years_Female","[]","1970" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_82Years_Male","[]","1940" -"3208","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_AsianAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_19Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_28Years_Male","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_8Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_96Years_Male_BlackOrAfricanAmericanAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_Female_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_Female_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_39Years_Female","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70Years_Male_TwoOrMoreRaces","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45To49Years_Male_BlackOrAfricanAmericanAlone","[]","1970" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_0Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_Female_WhiteAlone","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_Male_AsianOrPacificIslander","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_19Years_Male_TwoOrMoreRaces","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_40Years_Female_NonWhite","[]","1900" -"52","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_Male_AsianOrPacificIslander","[]","1980" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_26Years_Female_NonWhite","[]","1900" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"3141","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_10To14Years_Male_AsianOrPacificIslander","[]","1990" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_48Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","2000" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_BlackOrAfricanAmericanAlone","[]","1960" -"1","[P1Y]","[]","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_95Years_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_1Years_AsianAlone","[]","2000" -"3212","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70To74Years_Female_BlackOrAfricanAmericanAlone","[]","1970" -"1","[P1Y]","[]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_5Years_NonWhite","[]","1900" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"3144","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","2020" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1980" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_Male_BlackOrAfricanAmericanAlone","[]","1960" -"52","[P1Y]","[]","[CensusPEPSurvey_Race2000Onwards]","Count_Person_8Years_Female_TwoOrMoreRaces","[]","2000" +"observationPeriods","ScalingFactors","MinDate","MeasurementMethods","StatVar","Units","NumPlaces" +"[P1Y]","[]","1970","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_75To79Years_Female","[]","3231" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999]","Count_Person_45To49Years_Female_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_53Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_95Years_Female_WhiteAlone","[]","1" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0To4Years_Female_WhiteAlone","[]","3212" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_RaceUpto1999]","Count_Person_81Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_45Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_32Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_63Years_Female","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1970","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_60To64Years_Female","[]","3231" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_67Years_Female","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1970","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_15To19Years_Female","[]","3231" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_44Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_5Years_AsianAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_70Years_Female","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_82Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_56Years_Female","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_19Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_74Years_Female","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_58Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_34Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_57Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_52Years_Female","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_72Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_90Years_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_84Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_AsianAlone","[]","3208" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_68Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_87Years_Male_WhiteAlone","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_79Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1940","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_81Years_Female","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_66Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_82Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_AsianAlone","[]","3208" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_45Years_Female","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","3195" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_27Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey]","Count_Person_85Years_Female","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_AsianAlone","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_19Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20To24Years_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_41Years_Female","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_17Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_30Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_16Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_24Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1940","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_78Years_Female","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey]","Count_Person_89Years_Female","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_58Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_19Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_38Years_Female","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_49Years_Female","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_79Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_63Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_73Years_AsianAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_71Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_88Years_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65To69Years_Male_WhiteAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_55Years_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_40Years_AsianAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10To14Years_Female_WhiteAlone","[]","3212" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_37Years_AsianAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_50Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","3143" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_22Years_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_42Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_47Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_56Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_21Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_19Years_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_16Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_23Years_Female","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_44Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1940","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_77Years_Male","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_Male_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1980","[CensusPEPSurvey]","Count_Person_86Years_Male","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_78Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_25To29Years_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","1940","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75Years_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_89Years_Female_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_13Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_84Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_27Years_Female","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_16Years_Female","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_31Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25To29Years_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey]","Count_Person_92Years_Female","[]","1" +"[P1Y]","[]","1940","[CensusPEPSurvey_RaceUpto1999]","Count_Person_79Years_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_6Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_12Years_Female","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_34Years_Female","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_28Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_8Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey]","Count_Person_96Years_Female","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","1980","[CensusPEPSurvey]","Count_Person_87Years_Male","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_30Years_Female","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_73Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_80To84Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15To19Years_Male_WhiteAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_93Years_Female_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_59Years_Male","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_68Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_Female_AsianOrPacificIslander","[]","3193" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_24Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_Female_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_4Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_91Years_WhiteAlone","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_21Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_38Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_17Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_12Years_AsianAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999]","Count_Person_65To69Years_Male_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999]","Count_Person_30To34Years_Male_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_37Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35To39Years_BlackOrAfricanAmericanAlone","[]","3231" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30To34Years_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_61Years_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_67Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_BlackOrAfricanAmericanAlone","[]","3231" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5To9Years_Male_WhiteAlone","[]","3212" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_10To14Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_88Years_WhiteAlone","[]","1" +"[P1Y]","[]","1940","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_36Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_62Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35To39Years_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_49Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_RaceUpto1999]","Count_Person_77Years_NonWhite","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_76Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_43Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_AsianAlone","[]","3208" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_68Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_22Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_3Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_55Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_6Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_18Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_10Years_Male","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_30Years_AsianAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_24Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_86Years_Male_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_90Years_Male_WhiteAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_13Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_27Years_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_100Years_Female_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_39Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_97Years_Male_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_26Years_NonWhite","[]","1" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_70To74Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_61Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_WhiteAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80To84Years_Female_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_23Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55To59Years_Female_WhiteAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_45Years_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_64Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_73Years_NonWhite","[]","1" +"[P1Y]","[]","1940","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_59Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_10Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999]","Count_Person_55To59Years_Female_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_96Years_WhiteAlone","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_3Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_71Years_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1990","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55To59Years_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_0To4Years_AsianAlone","[]","3204" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_55To59Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_60To64Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_90Years_Female_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_79Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_75Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_46Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_28Years_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_9Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_69Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50To54Years_Male_WhiteAlone","[]","3212" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_10Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_90Years_Female_WhiteAlone","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_23Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_64Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_61Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_70Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_95Years_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_72Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_70To74Years_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_82Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_2Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_52Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_24Years_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_32Years_NonWhite","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_5To9Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_63Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_60To64Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_50Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_10Years_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_42Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_71Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_38Years_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_51Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_65To69Years_AsianAlone","[]","3208" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_66Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_69Years_Male","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_4Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey]","Count_Person_94Years_Male","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_96Years_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_100Years_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60To64Years_Female_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_71Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_40Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey]","Count_Person_96Years_Male","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_36Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_AsianAlone","[]","3208" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_82Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_9Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999]","Count_Person_0To4Years_Female_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_36Years_NonWhite","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_RaceUpto1999]","Count_Person_78Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_89Years_Female_WhiteAlone","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_22Years_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_67Years_Male","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_21Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_3Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_68Years_Male","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_98Years_Male_WhiteAlone","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_9Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_50To54Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","1980","[CensusPEPSurvey]","Count_Person_95Years_Male","[]","1" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65To69Years_Female_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_36Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50To54Years_BlackOrAfricanAmericanAlone","[]","3231" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_20Years_NonWhite","[]","1" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999]","Count_Person_15To19Years_Male_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_34Years_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","1990","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30To34Years_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_30To34Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_50To54Years_AsianAlone","[]","3208" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_96Years_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_33Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_7Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_WhiteAlone","[]","3195" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_29Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_37Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_18Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_31Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75OrMoreYears_NonWhite","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_2Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_13Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_4Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_76Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_14Years_AsianAlone","[]","52" +"[P1Y]","[]","1970","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_80To84Years_Male","[]","3231" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_67Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_57Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_59Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5To9Years_Female_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_71Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_36Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_6Years_Female","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_84Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_10Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_69Years_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_58Years_Male","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_96Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_20Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50To54Years_Female_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_91Years_Female_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_16Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_48Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_82Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_45To49Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999]","Count_Person_65To69Years_Female_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_84Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_47Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_74Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_28Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_95Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_AsianAlone","[]","3208" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_Male_BlackOrAfricanAmericanAlone","[]","3195" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_66Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_14Years_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_31Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_94Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_8Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_51Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_55Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_63Years_AsianAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_17Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_61Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_40Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_99Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_90Years_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_65Years_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_85OrMoreYears_AsianAlone","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_12Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_89Years_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_70Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50To54Years_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_62Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_56Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","3204" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_44Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_32Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_49Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_78Years_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_81Years_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_51Years_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_10Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45To49Years_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_9Years_Female","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_41Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey]","Count_Person_89Years_Male","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_31Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_31Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1970","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_30To34Years_Male","[]","3231" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_33Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_94Years_Female_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_9Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1970","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_55To59Years_Male","[]","3231" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15To19Years_WhiteAlone","[]","3231" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_96Years_Male_WhiteAlone","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_0Years_TwoOrMoreRaces","[]","3195" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_76Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_90Years_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_29Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_14Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_60To64Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_87Years_Female_WhiteAlone","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75To79Years_Female_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_87Years_Female_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_AsianAlone","[]","3208" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_9Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1940","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_75Years_Male","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_11Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_22Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_AsianAlone","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_43Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_RaceUpto1999]","Count_Person_80Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_48Years_Male","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_21Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_61Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_31Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_93Years_Male_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65To69Years_Female_WhiteAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_63Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75To79Years_Female_WhiteAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_44Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_93Years_Male_WhiteAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_1To4Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","3143" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_51Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_93Years_WhiteAlone","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_67Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_55To59Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_40To44Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999]","Count_Person_55To59Years_Male_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_41Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999]","Count_Person_20To24Years_Male_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10To14Years_BlackOrAfricanAmericanAlone","[]","3231" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_33Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_8Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_55Years_NonWhite","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_60Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_95Years_Male_WhiteAlone","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_WhiteAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45To49Years_BlackOrAfricanAmericanAlone","[]","3231" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_92Years_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_43Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1990","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15To19Years_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_33Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999]","Count_Person_70To74Years_Male_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_AmericanIndianAndAlaskaNativeAlone","[]","3195" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1970","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_50To54Years_Female","[]","3231" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_57Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_TwoOrMoreRaces","[]","3204" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999]","Count_Person_5To9Years_Male_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_97Years_Female_WhiteAlone","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_54Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_0To4Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10To14Years_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1990","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50To54Years_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75OrMoreYears_Female_WhiteAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_29Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_89Years_Male_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_6Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey]","Count_Person_85Years_Male","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_3Years_NonWhite","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_22Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_53Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_82Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_1Years_Male","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_87Years_Male_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_20Years_Female","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","3143" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_33Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_14Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_41Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_47Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_99Years_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_AsianAlone","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_56Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75OrMoreYears_Male_WhiteAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_50Years_AsianAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_43Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_47Years_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_32Years_AsianAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_AsianAlone","[]","3204" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_5To9Years_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_58Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_67Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_94Years_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1940","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_79Years_Male","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_31Years_Female","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_38Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_66Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_3Years_Male","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1990","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75To79Years_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_70To74Years_AsianAlone","[]","3208" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_92Years_Male_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_87Years_Male_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_28Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_42Years_Female","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_7Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_39Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_7Years_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_65Years_AsianAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_47Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_9Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_29Years_AsianAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_53Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75To79Years_Female_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_1Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1970","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_5To9Years_Female","[]","3231" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1940","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_83Years_Male","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_58Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_39Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_83Years_AsianAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80To84Years_Female_WhiteAlone","[]","3212" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_92Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_7Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_7Years_AsianAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85Years_Male_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Male_BlackOrAfricanAmericanAlone","[]","3143" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_46Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_21Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_Male_WhiteAlone","[]","3212" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_62Years_Female","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_67Years_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_47Years_Male","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65To69Years_Male_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_78Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_RaceUpto1999]","Count_Person_77Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_84Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_2Years_AsianAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_68Years_Female","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_43Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_57Years_Female","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_89Years_Male_WhiteAlone","[]","1" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_59Years_Female","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_RaceUpto1999]","Count_Person_83Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_58Years_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_38Years_Male","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_13Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_48Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999]","Count_Person_40To44Years_Male_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_87Years_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_73Years_Female","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_51Years_Female","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_59Years_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75To79Years_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85Years_Female_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_56Years_Male","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80To84Years_BlackOrAfricanAmericanAlone","[]","3231" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_0To4Years_TwoOrMoreRaces","[]","3204" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_69Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_31Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_98Years_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_22Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_52Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_75To79Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_46Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35To39Years_Male_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Male_WhiteAlone","[]","3143" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","3204" +"[P1Y]","[]","1970","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_20To24Years_Male","[]","3231" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85Years_Female_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_71Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_57Years_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_55Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_34Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_48Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_83Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_92Years_Female_WhiteAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_22Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_95Years_Female_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_70Years_AsianAlone","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_80To84Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_40Years_NonWhite","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_31Years_Male","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25To29Years_Male_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_76Years_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_62Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_20To24Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_43Years_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_55Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30To34Years_Female_WhiteAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_34Years_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_41Years_NonWhite","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_35To39Years_AsianAlone","[]","3208" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_56Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70To74Years_Female_WhiteAlone","[]","3212" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20To24Years_Female_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_13Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_AsianAlone","[]","3208" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60To64Years_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999]","Count_Person_0To4Years_Male_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_72Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_20To24Years_AsianAlone","[]","3208" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey]","Count_Person_92Years_Male","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_91Years_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_75To79Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_99Years_Male_WhiteAlone","[]","1" +"[P1Y]","[]","1940","[CensusPEPSurvey_RaceUpto1999]","Count_Person_78Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_72Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_35Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1940","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_26Years_Female","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_19Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_13Years_Female","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999]","Count_Person_50To54Years_Female_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_Male_WhiteAlone","[]","3195" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85OrMoreYears_Male_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_78Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_27Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30To34Years_Female_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_9Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_53Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_56Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_18Years_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_13Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_21Years_Male","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_40Years_Female","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_94Years_WhiteAlone","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1990","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70To74Years_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_17Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30To34Years_WhiteAlone","[]","3231" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_22Years_Male","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_65To69Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_70Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_44Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_72Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_15Years_AsianAlone","[]","52" +"[P1Y]","[]","1970","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_65To69Years_Male","[]","3231" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_47Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45To49Years_WhiteAlone","[]","3231" +"[P1Y]","[]","1940","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_79Years_Female","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_73Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_48Years_Female","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_37Years_Female","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_54Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_27Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_97Years_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_89Years_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_66Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_77Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_73Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_5Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_98Years_Female_WhiteAlone","[]","1" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55To59Years_WhiteAlone","[]","3231" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_79Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_5To9Years_AsianAlone","[]","3208" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_92Years_Female_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_86Years_Female_WhiteAlone","[]","1" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_39Years_Male","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_41Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_88Years_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1940","[CensusPEPSurvey_RaceUpto1999]","Count_Person_81Years_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_36Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75OrMoreYears_Female_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_75Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_78Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20To24Years_WhiteAlone","[]","3231" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_84Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_23Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_BlackOrAfricanAmericanAlone","[]","3143" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_16Years_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25To29Years_Female_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_64Years_Male","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_74Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_88Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_46Years_Male","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_RaceUpto1999]","Count_Person_77Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_63Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1970","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_0To4Years_Male","[]","3231" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999]","Count_Person_5To9Years_Female_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_80To84Years_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_45To49Years_AsianAlone","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Male_TwoOrMoreRaces","[]","3143" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_38Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_RaceUpto1999]","Count_Person_79Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_28Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_AsianAlone","[]","3208" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_28Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_75To79Years_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_12Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_34Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_71Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40To44Years_Female_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999]","Count_Person_70To74Years_Female_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5To9Years_Male_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85Years_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_73Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_81Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_96Years_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_70To74Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_45To49Years_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_8Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_26Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_10Years_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_52Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_57Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_47Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_56Years_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_24Years_Female","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_12Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_11Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey]","Count_Person_93Years_Male","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_49Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85Years_Male_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70To74Years_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_56Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_72Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_95Years_Female_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_53Years_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_85OrMoreYears_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_59Years_AsianAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_15Years_Female","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_26Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999]","Count_Person_60To64Years_Female_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_24Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_46Years_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_14Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20To24Years_Male_WhiteAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_66Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_20Years_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_15Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_74Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_58Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_26Years_AsianAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_48Years_NonWhite","[]","1" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_13Years_Male","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_57Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_62Years_AsianAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_38Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_17Years_AsianAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_46Years_Female","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_35Years_Female","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_62Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_18Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_77Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1970","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_5To9Years_Male","[]","3231" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_59Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40To44Years_Female_WhiteAlone","[]","3212" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1990","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0To4Years_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55To59Years_Male_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_37Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_14Years_Male","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_AsianAlone","[]","3208" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_91Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_16Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_63Years_Male","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_14Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_90Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_53Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_68Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_68Years_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_RaceUpto1999]","Count_Person_82Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_6Years_Male","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_88Years_Female_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_4Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_53Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5To9Years_BlackOrAfricanAmericanAlone","[]","3231" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_67Years_NonWhite","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_6Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_32Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_94Years_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_45Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey]","Count_Person_97Years_Male","[]","1" +"[P1Y]","[]","1940","[CensusPEPSurvey_RaceUpto1999]","Count_Person_84Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_AsianAlone","[]","3208" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_78Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_30Years_NonWhite","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_81Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_4Years_Female","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_58Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_WhiteAlone","[]","3231" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_37Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_27Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_86Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_81Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_87Years_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_58Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_86Years_WhiteAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_37Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_92Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_27Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55To59Years_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_72Years_Male","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_38Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_69Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_92Years_Female_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_45To49Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_98Years_WhiteAlone","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_48Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_AsianAlone","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_AsianAlone","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_14Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_AsianAlone","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_59Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_61Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_93Years_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40To44Years_BlackOrAfricanAmericanAlone","[]","3231" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_26Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_AmericanIndianAndAlaskaNativeAlone","[]","3143" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_34Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_93Years_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_0Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","3195" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_70Years_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_0Years_AsianAlone","[]","3195" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_69Years_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_15Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_77Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1940","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_76Years_Male","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_69Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1970","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_65To69Years_Female","[]","3231" +"[P1Y]","[]","1970","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_70To74Years_Female","[]","3231" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_83Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_18Years_Male","[]","52" +"[P1Y]","[]","1990","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20To24Years_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_72Years_AsianAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_60Years_AsianAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_95Years_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","1970","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_20To24Years_Female","[]","3231" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_16Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_49Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_97Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_57Years_AsianAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_1Years_Female","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999]","Count_Person_80To84Years_Female_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_44Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_50Years_NonWhite","[]","1" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15To19Years_Female_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_50To54Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_74Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_78Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_38Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey]","Count_Person_88Years_Male","[]","1" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20To24Years_Female_WhiteAlone","[]","3212" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_59Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_98Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_RaceUpto1999]","Count_Person_80Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_72Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_55Years_Male","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_23Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_54Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_25Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_12Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_36Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_72Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_35Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_86Years_Female_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_1Years_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1970","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_35To39Years_Male","[]","3231" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_69Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_24Years_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_25Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_17Years_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_28Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_11Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_54Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_59Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70To74Years_WhiteAlone","[]","3231" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_14Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_67Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_15To19Years_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","1940","[CensusPEPSurvey_RaceUpto1999]","Count_Person_80Years_NonWhite","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_51Years_Male","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_47Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_10To14Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_27Years_NonWhite","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_RaceUpto1999]","Count_Person_76Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_2Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_0To4Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_97Years_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_60To64Years_AsianAlone","[]","3208" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_26Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_64Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_64Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_74Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1940","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_80Years_Male","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65To69Years_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1970","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_50To54Years_Male","[]","3231" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_45Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_64Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1940","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_58Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_2Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_63Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_6Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_12Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_29Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey]","Count_Person_75OrMoreYears_Male","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_41Years_AsianAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_2Years_Male","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_47Years_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_7Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_93Years_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_18Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80To84Years_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_38Years_AsianAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_37Years_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","3195" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_26Years_Male","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey]","Count_Person_98Years_Female","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey]","Count_Person_95Years_Female","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999]","Count_Person_45To49Years_Male_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_33Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1940","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_84Years_Male","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_4Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_11Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_30Years_Male","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1990","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45To49Years_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_16Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999]","Count_Person_80To84Years_Male_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey]","Count_Person_100Years_Male","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1940","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_84Years_Female","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_AsianAlone","[]","3208" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_9Years_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_85OrMoreYears_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","1940","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_97Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_68Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_66Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_74Years_AsianAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_89Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_42Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70To74Years_Male_WhiteAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_81Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_73Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_10To14Years_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_AsianAlone","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_63Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_92Years_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55To59Years_BlackOrAfricanAmericanAlone","[]","3231" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_19Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_54Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_86Years_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_61Years_Female","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_70Years_Male","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_8Years_Male","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_64Years_AsianAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_21Years_NonWhite","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_65Years_Female","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_7Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_BlackOrAfricanAmericanAlone","[]","3195" +"[P1Y]","[]","1970","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_45To49Years_Female","[]","3231" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999]","Count_Person_10To14Years_Female_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_17Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_87Years_Female_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","1970","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_30To34Years_Female","[]","3231" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_99Years_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_69Years_Female","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_95Years_Male_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_58Years_Female","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_AsianAlone","[]","3204" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_57Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_72Years_Female","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_50Years_Female","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_94Years_Male_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80To84Years_WhiteAlone","[]","3231" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1940","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_76Years_Female","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_54Years_Female","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_61Years_Male","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10To14Years_Male_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85Years_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","1970","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_60To64Years_Male","[]","3231" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_23Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_39Years_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_48Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1940","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_83Years_Female","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_Female_WhiteAlone","[]","3195" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_82Years_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_AsianAlone","[]","3208" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey]","Count_Person_87Years_Female","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_43Years_Female","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_43Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_23Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_46Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_24Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_36Years_Female","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_47Years_Female","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_83Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_88Years_Male_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_67Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_28Years_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_88Years_Female_WhiteAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_79Years_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1940","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_61Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50To54Years_Female_WhiteAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_46Years_AsianAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_27Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_52Years_Male","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_31Years_AsianAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_58Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_17Years_Male","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40To44Years_Male_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_40To44Years_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_70Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_34Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_39Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_55To59Years_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","1940","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_Male_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_97Years_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_60Years_NonWhite","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_21Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_AsianAlone","[]","3208" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_74Years_NonWhite","[]","1" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50To54Years_Male_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_18Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_86Years_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_80To84Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_41Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_42Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_Male_AsianOrPacificIslander","[]","3193" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_52Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_77Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_66Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_76Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_56Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1990","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40To44Years_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_6Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_97Years_WhiteAlone","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_38Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_RaceUpto1999]","Count_Person_76Years_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_32Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_57Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20To24Years_Male_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_83Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_99Years_Female_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_35Years_Male","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_19Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_RaceUpto1999]","Count_Person_78Years_NonWhite","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70To74Years_BlackOrAfricanAmericanAlone","[]","3231" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_75To79Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_98Years_Female_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0To4Years_Male_WhiteAlone","[]","3212" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_87Years_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_68Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_77Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_19Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_17Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30To34Years_Male_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","1940","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_34Years_Male","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_17Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_42Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_AsianAlone","[]","3208" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_62Years_NonWhite","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30To34Years_Male_WhiteAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_62Years_Male","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_39Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_36Years_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_23Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_62Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_4Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_9Years_Male","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_26Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_65Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25To29Years_Female_WhiteAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_28Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_67Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_36Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_36Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80To84Years_Male_WhiteAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_18Years_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_21Years_AsianAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_0Years_NonWhite","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_97Years_Female_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_28Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_71Years_Male","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_35To39Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_87Years_WhiteAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_15Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_83Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80To84Years_Male_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_61Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_90Years_WhiteAlone","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_24Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_44Years_Male","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_51Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1970","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_10To14Years_Male","[]","3231" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_23Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1970","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_75To79Years_Male","[]","3231" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_65Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_61Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_30Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_37Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_30To34Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_86Years_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_77Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_80Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_92Years_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_RaceUpto1999]","Count_Person_79Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_56Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_46Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_48Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_97Years_Male_WhiteAlone","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_80Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_WhiteAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60To64Years_Male_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_59Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_26Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_2Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_21Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_63Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_46Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_36Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_39Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_34Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_71Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_29Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_90Years_Female_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","1940","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85OrMoreYears_Female_NonWhite","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_21Years_Female","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_AsianAlone","[]","3208" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_51Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_16Years_Male","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_81Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_25To29Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_29Years_Female","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_18Years_Female","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_96Years_Female_WhiteAlone","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_8Years_NonWhite","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_11Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_32Years_Female","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey]","Count_Person_94Years_Female","[]","1" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_15Years_Male","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_10Years_Female","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_84Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_87Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_2Years_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75OrMoreYears_Male_NonWhite","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_43Years_Male","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999]","Count_Person_50To54Years_Male_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15To19Years_BlackOrAfricanAmericanAlone","[]","3231" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_100Years_Male_WhiteAlone","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_7Years_Female","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_25To29Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_5Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_AsianAlone","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_75To79Years_AsianAlone","[]","3208" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_9Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_69Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_4Years_NonWhite","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_35Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1970","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_25To29Years_Male","[]","3231" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_93Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_6Years_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_TwoOrMoreRaces","[]","3204" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0Years_Female_AsianAlone","[]","3195" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_64Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_57Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_42Years_Male","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_4Years_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_29Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_47Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_97Years_Female_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_15To19Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_41Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_9Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_50Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_86Years_Female_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_98Years_Female_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_88Years_Male_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0To4Years_Female_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999]","Count_Person_35To39Years_Male_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","3143" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30To34Years_BlackOrAfricanAmericanAlone","[]","3231" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_WhiteAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_91Years_Male_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_54Years_Male","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_11Years_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_34Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_11Years_AsianAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_49Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_32Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_88Years_Male_WhiteAlone","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_31Years_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35To39Years_Male_WhiteAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_16Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_100Years_WhiteAlone","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1940","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_81Years_Male","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_18Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_42Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_0Years_Female","[]","3195" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5To9Years_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_96Years_Female_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0Years_Male_TwoOrMoreRaces","[]","3195" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_WhiteAlone","[]","52" +"[P1Y]","[]","1990","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5To9Years_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_22Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_55To59Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_67Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_24Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1990","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60To64Years_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_AsianAlone","[]","3208" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_WhiteAlone","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_89Years_WhiteAlone","[]","1" +"[P1Y]","[]","2000","[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_1To4Years_AsianAlone","[]","3143" +"[P1Y]","[]","1940","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1990","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25To29Years_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_67Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_92Years_WhiteAlone","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_29Years_NonWhite","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65To69Years_BlackOrAfricanAmericanAlone","[]","3231" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_95Years_WhiteAlone","[]","1" +"[P1Y]","[]","1940","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_85OrMoreYears_Male","[]","3231" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_42Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1990","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65To69Years_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_53Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_100Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_18Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_90Years_Male_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_74Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_88Years_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_51Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_31Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_89Years_Male_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_14Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_13Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_69Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10To14Years_Female_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_73Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_82Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_66Years_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_66Years_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_23Years_Male","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_6Years_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_72Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_69Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75To79Years_WhiteAlone","[]","3231" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_9Years_AsianAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_50Years_Male","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_52Years_NonWhite","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_100Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_65To69Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_94Years_Female_WhiteAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_68Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_33Years_Male","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_49Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_84Years_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_10To14Years_AsianAlone","[]","3208" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_86Years_Male_WhiteAlone","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_38Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_51Years_AsianAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5To9Years_Female_WhiteAlone","[]","3212" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60To64Years_WhiteAlone","[]","3231" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_91Years_Female_WhiteAlone","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_Female_WhiteAlone","[]","3212" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_19Years_Male","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_16Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_46Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_5To9Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_45Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_11Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45To49Years_Male_WhiteAlone","[]","3212" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_29Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60To64Years_Female_WhiteAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_64Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_7Years_Male","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_2Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_10To14Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","3143" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_62Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_64Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_35Years_NonWhite","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0Years_Male_AsianAlone","[]","3195" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_33Years_AsianAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_62Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_31Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_5To9Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_18Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_53Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_87Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_45Years_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_22Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_49Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1970","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_15To19Years_Male","[]","3231" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_11Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_48Years_AsianAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_24Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_25Years_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_6Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_6Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_94Years_Male_WhiteAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_50To54Years_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_64Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_72Years_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_91Years_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_4Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_49Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1970","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_40To44Years_Female","[]","3231" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_18Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999]","Count_Person_40To44Years_Female_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_13Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_60Years_Male","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_21Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_26Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_15Years_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1940","[CensusPEPSurvey_RaceUpto1999]","Count_Person_76Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_20Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_98Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_69Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_5Years_Male","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70To74Years_Male_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_65Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_96Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","1940","[CensusPEPSurvey_RaceUpto1999]","Count_Person_82Years_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1970","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_35To39Years_Female","[]","3231" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_60Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_44Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999]","Count_Person_20To24Years_Female_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_11Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_41Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_20To24Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_14Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_13Years_AsianAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_39Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_37Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_3Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_11Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_100Years_Male_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_25Years_Male","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_59Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_16Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_19Years_Female","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_12Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_54Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_29Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_54Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_68Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_86Years_Male_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_32Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey]","Count_Person_90Years_Female","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_21Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","3195" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_50Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_78Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_32Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_78Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_52Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_3Years_Female","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_83Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_7Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_1Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_74Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_51Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_WhiteAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_73Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_77Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_41Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_70To74Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_7Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999]","Count_Person_30To34Years_Female_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_12Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_98Years_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1970","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_70To74Years_Male","[]","3231" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_49Years_NonWhite","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey]","Count_Person_1To4Years_Male","[]","3143" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_27Years_Male","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_37Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_2Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_60Years_Female","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_77Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_3Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_66Years_Female","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_64Years_Female","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_61Years_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_27Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35To39Years_Female_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_94Years_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_14Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_99Years_Female_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_8Years_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey]","Count_Person_99Years_Male","[]","1" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_71Years_Female","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_58Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_73Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_71Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1940","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_77Years_Female","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_55Years_Female","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75To79Years_Male_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1940","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_75Years_Female","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_53Years_Female","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_81Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25To29Years_BlackOrAfricanAmericanAlone","[]","3231" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_5Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_42Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_3Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40To44Years_Male_WhiteAlone","[]","3212" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_AsianAlone","[]","3208" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_4Years_Male","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_60Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_AsianAlone","[]","3208" +"[P1Y]","[]","1940","[CensusPEPSurvey_RaceUpto1999]","Count_Person_81Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_63Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_59Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1940","[CensusPEPSurvey_RaceUpto1999]","Count_Person_82Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_29Years_Male","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85Years_Male_WhiteAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_54Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_77Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_44Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Female_AsianAlone","[]","3143" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_39Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_30To34Years_AsianAlone","[]","3208" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_46Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_98Years_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75To79Years_Male_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_52Years_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_8Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_58Years_AsianAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15To19Years_Male_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_49Years_AsianAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_65Years_Male","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_60Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_100Years_Female_WhiteAlone","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_25Years_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_99Years_Male_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_32Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5To9Years_WhiteAlone","[]","3231" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_41Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_52Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_52Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_48Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_30To34Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_22Years_Female","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_AsianAlone","[]","3208" +"[P1Y]","[]","1940","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_19Years_NonWhite","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_39Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_30Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_17Years_Female","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_73Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey]","Count_Person_91Years_Male","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","1980","[CensusPEPSurvey]","Count_Person_93Years_Female","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_20To24Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_90Years_Male_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_0Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Male_AsianAlone","[]","3143" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_32Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_47Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey]","Count_Person_97Years_Female","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_74Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_33Years_Female","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_Female_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_8Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_68Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_89Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_99Years_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_52Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_2Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1940","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_82Years_Female","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_27Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_26Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_44Years_Female","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey]","Count_Person_86Years_Female","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_34Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_91Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_74Years_Male","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey]","Count_Person_75OrMoreYears_Female","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_AsianAlone","[]","3208" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85Years_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_49Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85Years_WhiteAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_20To24Years_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_5Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1940","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85OrMoreYears_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_50To54Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1970","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_0To4Years_Female","[]","3231" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_34Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_53Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_48Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_39Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40To44Years_WhiteAlone","[]","3231" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_89Years_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_9Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_48Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_89Years_Female_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_82Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_95Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","1990","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_85OrMoreYears_AsianOrPacificIslander","[]","3193" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_94Years_Male_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_44Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35To39Years_WhiteAlone","[]","3231" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_81Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_23Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_86Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45To49Years_Female_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_2Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_11Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_19Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0To4Years_BlackOrAfricanAmericanAlone","[]","3231" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_54Years_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_92Years_Male_WhiteAlone","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_22Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35To39Years_Female_WhiteAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_79Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_76Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","3195" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_29Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_2Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_22Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45To49Years_Female_WhiteAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_69Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_7Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_44Years_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_93Years_Female_WhiteAlone","[]","1" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_65To69Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999]","Count_Person_60To64Years_Male_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_33Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_21Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_33Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_46Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_79Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1970","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_25To29Years_Female","[]","3231" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_15To19Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_22Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_67Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_3Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_12Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_66Years_Male","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_73Years_Male","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_3Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_12Years_Male","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_4Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_37Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey]","Count_Person_98Years_Male","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_25To29Years_AsianAlone","[]","3208" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_57Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60To64Years_BlackOrAfricanAmericanAlone","[]","3231" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_100Years_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","1940","[CensusPEPSurvey_RaceUpto1999]","Count_Person_83Years_NonWhite","[]","1" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_37Years_Male","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25To29Years_Male_WhiteAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_28Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_16Years_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0To4Years_Male_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_41Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_40Years_Male","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_25Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_15Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_24Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_42Years_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_71Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_16Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_41Years_Male","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_44Years_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey]","Count_Person_91Years_Female","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_55To59Years_AsianAlone","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_35Years_AsianAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_36Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_94Years_Female_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey]","Count_Person_99Years_Female","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_40To44Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55To59Years_Male_WhiteAlone","[]","3212" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_45To49Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_66Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_75OrMoreYears_WhiteAlone","[]","1" +"[P1Y]","[]","1970","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_55To59Years_Female","[]","3231" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_96Years_Male_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_33Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_88Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1940","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_80Years_Female","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Female_WhiteAlone","[]","3143" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_84Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_1Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_29Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_49Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey]","Count_Person_88Years_Female","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_38Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1940","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_85OrMoreYears_Female","[]","3231" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_77Years_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_30To34Years_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_64Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_71Years_AsianAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_68Years_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_15To19Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_3Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_35To39Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_69Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_20Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_63Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_29Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_3Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_43Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_80Years_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_AsianAlone","[]","3208" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_20Years_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0Years_Female_BlackOrAfricanAmericanAlone","[]","3195" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_30Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_93Years_Female_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_91Years_Male_WhiteAlone","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_14Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_100Years_Female_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_43Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_76Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_68Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_74Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_4Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_AsianAlone","[]","3208" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_27Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75To79Years_BlackOrAfricanAmericanAlone","[]","3231" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_28Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_99Years_Male_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_31Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50Years_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_37Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_49Years_Male","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_94Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_41Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_60To64Years_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_93Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_96Years_Female_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_44Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0To4Years_WhiteAlone","[]","3231" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_56Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_20Years_Male","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55To59Years_Female_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_0To4Years_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_100Years_Male_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_90Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10To14Years_WhiteAlone","[]","3231" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_91Years_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65To69Years_WhiteAlone","[]","3231" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0Years_Female_TwoOrMoreRaces","[]","3195" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_WhiteAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_23Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_36Years_Male","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_8Years_Female","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_2Years_Female","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_76Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_99Years_Female_WhiteAlone","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_26Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_83Years_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_47Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_17Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_24Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_35To39Years_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_3Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_63Years_Male_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_13Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_76Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_92Years_Male_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","1970","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_45To49Years_Male","[]","3231" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_45Years_Male","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_7Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_65To69Years_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_65Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_12Years_NonWhite","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_1Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_79Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_52Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_24Years_Male","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_11Years_Male","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Female_TwoOrMoreRaces","[]","3143" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10To14Years_Male_WhiteAlone","[]","3212" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_18Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_98Years_Male_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_13Years_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_40To44Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_49Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_6Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_79Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_79Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_34Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_32Years_Male","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25To29Years_WhiteAlone","[]","3231" +"[P1Y]","[]","2000","[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_1To4Years_WhiteAlone","[]","3143" +"[P1Y]","[]","1940","[CensusPEPSurvey_RaceUpto1999]","Count_Person_84Years_NonWhite","[]","1" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999]","Count_Person_25To29Years_Male_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15To19Years_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_81Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_34Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_51Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_32Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_1To4Years_TwoOrMoreRaces","[]","3143" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_3Years_AsianAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60To64Years_Male_WhiteAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_62Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999]","Count_Person_15To19Years_Female_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_AsianAlone","[]","3208" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_74Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_57Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_15To19Years_AsianAlone","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_17Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_35Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_71Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_75Years_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_26Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_5Years_Female","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1990","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35To39Years_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_35Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_88Years_Female_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_42Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_54Years_AsianAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_AsianAlone","[]","3208" +"[P1Y]","[]","1970","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_40To44Years_Male","[]","3231" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Male_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_35To39Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_42Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_100Years_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_55To59Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_4Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_64Years_NonWhite","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_13Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_52Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_40To44Years_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_8Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_74Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_43Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_50To54Years_WhiteAlone","[]","3231" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_32Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_75To79Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_12Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_56Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_31Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey]","Count_Person_90Years_Male","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_28Years_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_93Years_Male_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_63Years_NonWhite","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_54Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_61Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_75To79Years_Male_WhiteAlone","[]","3212" +"[P1Y]","[]","1940","[CensusPEPSurvey_RaceUpto1999]","Count_Person_83Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_23Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15To19Years_Female_WhiteAlone","[]","3212" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_73Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_58Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_1Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_27Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_53Years_Male","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_53Years_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_39Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_42Years_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_47Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_7Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_99Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_46Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_30Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_83Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_38Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_39Years_AsianAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_43Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey]","Count_Person_100Years_Female","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_68Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_99Years_WhiteAlone","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_91Years_Male_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_72Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_67Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Male_AsianAlone","[]","3208" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_62Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey]","Count_Person_1To4Years_Female","[]","3143" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_76Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_63Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_59Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_7Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_1To4Years_Female_BlackOrAfricanAmericanAlone","[]","3143" +"[P1Y]","[]","1990","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999]","Count_Person_25To29Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","3212" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_64Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Male_TwoOrMoreRaces","[]","3208" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_71Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_48Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","3208" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70To74Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_12Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_43Years_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_4Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_60Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_40Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999]","Count_Person_35To39Years_Female_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_10To14Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_57Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_6Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_57Years_Male","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_61Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_73Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_9Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_0To4Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","3204" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_8Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_40To44Years_AsianAlone","[]","3208" +"[P1Y]","[]","1990","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10To14Years_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_51Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_51Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1940","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_78Years_Male","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_52Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_25Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_84Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_72Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1940","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_81Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_78Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_43Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_17Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_33Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_14Years_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_45To49Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_80To84Years_AsianAlone","[]","3208" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_85Years_Female_WhiteAlone","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_62Years_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_24Years_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_36Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_33Years_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_56Years_AsianAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_25Years_Female","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_14Years_Female","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_2Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_91Years_Female_AsianOrPacificIslander","[]","1" +"[P1Y]","[]","1940","[CensusPEPSurvey_RaceUpto1999]","Count_Person_84Years_Male_NonWhite","[]","1" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_98Years_Male_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_38Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_28Years_Female","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_53Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_27Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_66Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_8Years_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_83Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_18Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_33Years_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_51Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_11Years_Female","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_50To54Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_22Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_66Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_42Years_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_23Years_NonWhite","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_54Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_12Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_44Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1970","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_80To84Years_Female","[]","3231" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_20To24Years_BlackOrAfricanAmericanAlone","[]","3231" +"[P1Y]","[]","1940","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80Years_Male_WhiteAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_6Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_97Years_Male_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_21Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_54Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_53Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_35To39Years_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_0Years_Male","[]","3195" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_62Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999]","Count_Person_25To29Years_Female_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_19Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25Years_Female_AsianAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_95Years_Male_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1940","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_82Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_46Years_Male_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_23Years_AsianAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_17Years_Female_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1990","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_80To84Years_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","1970","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_10To14Years_Female","[]","3231" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_60To64Years_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1940","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_82Years_Male","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_65To69Years_Female_AsianAlone","[]","3208" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_19Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_28Years_Male","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_61Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_25Years_Male_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_16Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_80To84Years_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_56Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_8Years_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","1980","[CensusPEPSurvey_RaceUpto1999]","Count_Person_96Years_Male_BlackOrAfricanAmericanAlone","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_13Years_Female_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_59Years_Female_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate, CensusPEPSurvey]","Count_Person_39Years_Female","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_70Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_45To49Years_Male_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_0To4Years_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_85OrMoreYears_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_25To29Years_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_0Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1900","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_37Years_Female_WhiteAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_10Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_19Years_Male_TwoOrMoreRaces","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_40To44Years_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_30To34Years_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_40Years_Female_NonWhite","[]","1" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_5Years_Male_AsianOrPacificIslander","[]","52" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_26Years_Female_NonWhite","[]","1" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_5To9Years_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1990","[CensusPEPSurvey_RaceUpto1999]","Count_Person_10To14Years_Male_AsianOrPacificIslander","[]","3141" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_48Years_NativeHawaiianAndOtherPacificIslanderAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_15To19Years_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_65Years_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","1980","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_95Years_AmericanIndianAndAlaskaNativeAlone","[]","1" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","Count_Person_1Years_AsianAlone","[]","52" +"[P1Y]","[]","1970","[CensusPEPSurvey_Race2000Onwards, CensusPEPSurvey_RaceUpto1999, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_70To74Years_Female_BlackOrAfricanAmericanAlone","[]","3212" +"[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_5Years_NonWhite","[]","1" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_15Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2020","[CensusPEPSurvey_Race2000Onwards]","Count_Person_20To24Years_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","3144" +"[P1Y]","[]","1980","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_11Years_Female_AmericanIndianAndAlaskaNativeAlone","[]","52" +"[P1Y]","[]","1960","[CensusPEPSurvey_Race2000Onwards, dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_55Years_Male_BlackOrAfricanAmericanAlone","[]","52" +"[P1Y]","[]","2000","[CensusPEPSurvey_Race2000Onwards]","Count_Person_8Years_Female_TwoOrMoreRaces","[]","52" diff --git a/scripts/us_census/pep/population_estimates_by_asr/validation_config.json b/scripts/us_census/pep/population_estimates_by_asr/validation_config.json index 8741a1f351..5b71e5fb82 100644 --- a/scripts/us_census/pep/population_estimates_by_asr/validation_config.json +++ b/scripts/us_census/pep/population_estimates_by_asr/validation_config.json @@ -15,6 +15,15 @@ "params": { "golden_files": "../../../../golden_data/golden_summary_report.csv" } + }, + { + "rule_id": "Check_goldens_output_csv", + "description": "Verifies the generated output CSV data matches established critical golden records", + "validator": "GOLDENS_CHECK", + "params": { + "golden_files": "../../../../golden_data/golden_observations.csv", + "input_files": "../../../../output/usa_population_asr.csv" + } } ] } From 3aaa7508ec69e8994cbc27c73504a465306494b8 Mon Sep 17 00:00:00 2001 From: Nivedita Singh Date: Sun, 26 Jul 2026 18:14:58 +0000 Subject: [PATCH 10/13] modified goldens --- .../golden_observations_national_after.csv | 2 + .../golden_observations_national_before.csv | 2 + .../golden_observations_state_after.csv | 2155 +++++++++++++++++ .../golden_observations_state_before.csv | 2145 ++++++++++++++++ .../golden_summary_report_national_after.csv | 46 +- .../golden_summary_report_national_before.csv | 22 +- .../golden_summary_report_state_after.csv | 46 +- .../golden_summary_report_state_before.csv | 18 +- .../pep/us_pep_sexrace/validation_config.json | 52 +- 9 files changed, 4414 insertions(+), 74 deletions(-) create mode 100644 scripts/us_census/pep/us_pep_sexrace/golden_data/golden_observations_national_after.csv create mode 100644 scripts/us_census/pep/us_pep_sexrace/golden_data/golden_observations_national_before.csv create mode 100644 scripts/us_census/pep/us_pep_sexrace/golden_data/golden_observations_state_after.csv create mode 100644 scripts/us_census/pep/us_pep_sexrace/golden_data/golden_observations_state_before.csv diff --git a/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_observations_national_after.csv b/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_observations_national_after.csv new file mode 100644 index 0000000000..caef2cbbdb --- /dev/null +++ b/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_observations_national_after.csv @@ -0,0 +1,2 @@ +"geo_ID" +"country/USA" diff --git a/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_observations_national_before.csv b/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_observations_national_before.csv new file mode 100644 index 0000000000..caef2cbbdb --- /dev/null +++ b/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_observations_national_before.csv @@ -0,0 +1,2 @@ +"geo_ID" +"country/USA" diff --git a/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_observations_state_after.csv b/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_observations_state_after.csv new file mode 100644 index 0000000000..3f16afd973 --- /dev/null +++ b/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_observations_state_after.csv @@ -0,0 +1,2155 @@ +"geo_ID" +"geoId/01" +"geoId/01001" +"geoId/01003" +"geoId/01005" +"geoId/01007" +"geoId/01009" +"geoId/01013" +"geoId/01015" +"geoId/01017" +"geoId/01019" +"geoId/01021" +"geoId/01023" +"geoId/01025" +"geoId/01031" +"geoId/01033" +"geoId/01039" +"geoId/01043" +"geoId/01045" +"geoId/01047" +"geoId/01049" +"geoId/01051" +"geoId/01053" +"geoId/01055" +"geoId/01057" +"geoId/01059" +"geoId/01061" +"geoId/01065" +"geoId/01067" +"geoId/01069" +"geoId/01071" +"geoId/01073" +"geoId/01077" +"geoId/01079" +"geoId/01081" +"geoId/01083" +"geoId/01087" +"geoId/01089" +"geoId/01091" +"geoId/01093" +"geoId/01095" +"geoId/01097" +"geoId/01099" +"geoId/01101" +"geoId/01103" +"geoId/01107" +"geoId/01109" +"geoId/01111" +"geoId/01113" +"geoId/01115" +"geoId/01117" +"geoId/01119" +"geoId/01121" +"geoId/01123" +"geoId/01125" +"geoId/01127" +"geoId/01129" +"geoId/01133" +"geoId/02" +"geoId/02020" +"geoId/02050" +"geoId/02090" +"geoId/02110" +"geoId/02122" +"geoId/02170" +"geoId/04" +"geoId/04001" +"geoId/04003" +"geoId/04005" +"geoId/04007" +"geoId/04009" +"geoId/04012" +"geoId/04013" +"geoId/04015" +"geoId/04017" +"geoId/04019" +"geoId/04021" +"geoId/04023" +"geoId/04025" +"geoId/04027" +"geoId/05" +"geoId/05001" +"geoId/05003" +"geoId/05005" +"geoId/05007" +"geoId/05009" +"geoId/05015" +"geoId/05017" +"geoId/05019" +"geoId/05021" +"geoId/05023" +"geoId/05027" +"geoId/05029" +"geoId/05031" +"geoId/05033" +"geoId/05035" +"geoId/05037" +"geoId/05041" +"geoId/05043" +"geoId/05045" +"geoId/05047" +"geoId/05051" +"geoId/05053" +"geoId/05055" +"geoId/05057" +"geoId/05059" +"geoId/05063" +"geoId/05067" +"geoId/05069" +"geoId/05071" +"geoId/05075" +"geoId/05077" +"geoId/05083" +"geoId/05085" +"geoId/05087" +"geoId/05089" +"geoId/05091" +"geoId/05093" +"geoId/05103" +"geoId/05107" +"geoId/05111" +"geoId/05113" +"geoId/05115" +"geoId/05119" +"geoId/05121" +"geoId/05123" +"geoId/05125" +"geoId/05131" +"geoId/05133" +"geoId/05135" +"geoId/05139" +"geoId/05141" +"geoId/05143" +"geoId/05145" +"geoId/05149" +"geoId/06" +"geoId/06001" +"geoId/06005" +"geoId/06007" +"geoId/06009" +"geoId/06011" +"geoId/06013" +"geoId/06015" +"geoId/06017" +"geoId/06019" +"geoId/06021" +"geoId/06023" +"geoId/06025" +"geoId/06027" +"geoId/06029" +"geoId/06031" +"geoId/06033" +"geoId/06035" +"geoId/06037" +"geoId/06039" +"geoId/06041" +"geoId/06043" +"geoId/06045" +"geoId/06047" +"geoId/06053" +"geoId/06055" +"geoId/06057" +"geoId/06059" +"geoId/06061" +"geoId/06063" +"geoId/06065" +"geoId/06067" +"geoId/06069" +"geoId/06071" +"geoId/06073" +"geoId/06075" +"geoId/06077" +"geoId/06079" +"geoId/06081" +"geoId/06083" +"geoId/06085" +"geoId/06087" +"geoId/06089" +"geoId/06093" +"geoId/06095" +"geoId/06097" +"geoId/06099" +"geoId/06101" +"geoId/06103" +"geoId/06107" +"geoId/06109" +"geoId/06111" +"geoId/06113" +"geoId/06115" +"geoId/08" +"geoId/08001" +"geoId/08005" +"geoId/08013" +"geoId/08014" +"geoId/08015" +"geoId/08029" +"geoId/08031" +"geoId/08035" +"geoId/08037" +"geoId/08039" +"geoId/08041" +"geoId/08043" +"geoId/08045" +"geoId/08051" +"geoId/08059" +"geoId/08067" +"geoId/08069" +"geoId/08075" +"geoId/08077" +"geoId/08083" +"geoId/08085" +"geoId/08087" +"geoId/08089" +"geoId/08093" +"geoId/08097" +"geoId/08101" +"geoId/08107" +"geoId/08117" +"geoId/08119" +"geoId/08123" +"geoId/09" +"geoId/09001" +"geoId/09003" +"geoId/09005" +"geoId/09007" +"geoId/09009" +"geoId/09011" +"geoId/09013" +"geoId/09015" +"geoId/10" +"geoId/10001" +"geoId/10003" +"geoId/10005" +"geoId/11" +"geoId/11001" +"geoId/12" +"geoId/12001" +"geoId/12003" +"geoId/12005" +"geoId/12007" +"geoId/12009" +"geoId/12011" +"geoId/12015" +"geoId/12017" +"geoId/12019" +"geoId/12021" +"geoId/12023" +"geoId/12027" +"geoId/12029" +"geoId/12031" +"geoId/12033" +"geoId/12035" +"geoId/12039" +"geoId/12041" +"geoId/12049" +"geoId/12051" +"geoId/12053" +"geoId/12055" +"geoId/12057" +"geoId/12059" +"geoId/12061" +"geoId/12063" +"geoId/12069" +"geoId/12071" +"geoId/12073" +"geoId/12075" +"geoId/12079" +"geoId/12081" +"geoId/12083" +"geoId/12085" +"geoId/12086" +"geoId/12087" +"geoId/12089" +"geoId/12091" +"geoId/12093" +"geoId/12095" +"geoId/12097" +"geoId/12099" +"geoId/12101" +"geoId/12103" +"geoId/12105" +"geoId/12107" +"geoId/12109" +"geoId/12111" +"geoId/12113" +"geoId/12115" +"geoId/12117" +"geoId/12119" +"geoId/12121" +"geoId/12123" +"geoId/12127" +"geoId/12129" +"geoId/12131" +"geoId/12133" +"geoId/13" +"geoId/13001" +"geoId/13009" +"geoId/13011" +"geoId/13013" +"geoId/13015" +"geoId/13017" +"geoId/13019" +"geoId/13021" +"geoId/13025" +"geoId/13029" +"geoId/13031" +"geoId/13033" +"geoId/13035" +"geoId/13039" +"geoId/13045" +"geoId/13047" +"geoId/13051" +"geoId/13053" +"geoId/13055" +"geoId/13057" +"geoId/13059" +"geoId/13063" +"geoId/13067" +"geoId/13069" +"geoId/13071" +"geoId/13073" +"geoId/13075" +"geoId/13077" +"geoId/13081" +"geoId/13085" +"geoId/13087" +"geoId/13089" +"geoId/13091" +"geoId/13095" +"geoId/13097" +"geoId/13103" +"geoId/13105" +"geoId/13107" +"geoId/13111" +"geoId/13113" +"geoId/13115" +"geoId/13117" +"geoId/13119" +"geoId/13121" +"geoId/13123" +"geoId/13127" +"geoId/13129" +"geoId/13131" +"geoId/13133" +"geoId/13135" +"geoId/13137" +"geoId/13139" +"geoId/13143" +"geoId/13145" +"geoId/13147" +"geoId/13151" +"geoId/13153" +"geoId/13157" +"geoId/13159" +"geoId/13163" +"geoId/13169" +"geoId/13171" +"geoId/13175" +"geoId/13177" +"geoId/13179" +"geoId/13183" +"geoId/13185" +"geoId/13187" +"geoId/13189" +"geoId/13195" +"geoId/13199" +"geoId/13205" +"geoId/13207" +"geoId/13211" +"geoId/13213" +"geoId/13215" +"geoId/13217" +"geoId/13219" +"geoId/13223" +"geoId/13225" +"geoId/13227" +"geoId/13229" +"geoId/13231" +"geoId/13233" +"geoId/13237" +"geoId/13241" +"geoId/13245" +"geoId/13247" +"geoId/13255" +"geoId/13257" +"geoId/13261" +"geoId/13267" +"geoId/13275" +"geoId/13277" +"geoId/13279" +"geoId/13285" +"geoId/13291" +"geoId/13293" +"geoId/13295" +"geoId/13297" +"geoId/13299" +"geoId/13303" +"geoId/13305" +"geoId/13311" +"geoId/13313" +"geoId/13321" +"geoId/15" +"geoId/15001" +"geoId/15003" +"geoId/15007" +"geoId/15009" +"geoId/16" +"geoId/16001" +"geoId/16005" +"geoId/16011" +"geoId/16013" +"geoId/16017" +"geoId/16019" +"geoId/16027" +"geoId/16031" +"geoId/16039" +"geoId/16045" +"geoId/16049" +"geoId/16051" +"geoId/16053" +"geoId/16055" +"geoId/16057" +"geoId/16065" +"geoId/16067" +"geoId/16069" +"geoId/16075" +"geoId/16079" +"geoId/16083" +"geoId/17" +"geoId/17001" +"geoId/17005" +"geoId/17007" +"geoId/17011" +"geoId/17015" +"geoId/17019" +"geoId/17021" +"geoId/17023" +"geoId/17027" +"geoId/17029" +"geoId/17031" +"geoId/17033" +"geoId/17037" +"geoId/17039" +"geoId/17041" +"geoId/17043" +"geoId/17045" +"geoId/17049" +"geoId/17051" +"geoId/17055" +"geoId/17057" +"geoId/17061" +"geoId/17063" +"geoId/17067" +"geoId/17073" +"geoId/17075" +"geoId/17077" +"geoId/17081" +"geoId/17083" +"geoId/17085" +"geoId/17089" +"geoId/17091" +"geoId/17093" +"geoId/17095" +"geoId/17097" +"geoId/17099" +"geoId/17101" +"geoId/17103" +"geoId/17105" +"geoId/17107" +"geoId/17109" +"geoId/17111" +"geoId/17113" +"geoId/17115" +"geoId/17117" +"geoId/17119" +"geoId/17121" +"geoId/17125" +"geoId/17131" +"geoId/17133" +"geoId/17135" +"geoId/17137" +"geoId/17141" +"geoId/17143" +"geoId/17145" +"geoId/17149" +"geoId/17157" +"geoId/17159" +"geoId/17161" +"geoId/17163" +"geoId/17165" +"geoId/17167" +"geoId/17173" +"geoId/17177" +"geoId/17179" +"geoId/17181" +"geoId/17183" +"geoId/17187" +"geoId/17191" +"geoId/17193" +"geoId/17195" +"geoId/17197" +"geoId/17199" +"geoId/17201" +"geoId/17203" +"geoId/18" +"geoId/18001" +"geoId/18003" +"geoId/18005" +"geoId/18011" +"geoId/18015" +"geoId/18017" +"geoId/18019" +"geoId/18021" +"geoId/18023" +"geoId/18027" +"geoId/18029" +"geoId/18031" +"geoId/18033" +"geoId/18035" +"geoId/18037" +"geoId/18039" +"geoId/18041" +"geoId/18043" +"geoId/18045" +"geoId/18047" +"geoId/18049" +"geoId/18051" +"geoId/18053" +"geoId/18055" +"geoId/18057" +"geoId/18059" +"geoId/18061" +"geoId/18063" +"geoId/18065" +"geoId/18067" +"geoId/18069" +"geoId/18071" +"geoId/18073" +"geoId/18075" +"geoId/18077" +"geoId/18079" +"geoId/18081" +"geoId/18083" +"geoId/18085" +"geoId/18087" +"geoId/18089" +"geoId/18091" +"geoId/18093" +"geoId/18095" +"geoId/18097" +"geoId/18099" +"geoId/18103" +"geoId/18105" +"geoId/18107" +"geoId/18109" +"geoId/18113" +"geoId/18117" +"geoId/18119" +"geoId/18121" +"geoId/18123" +"geoId/18127" +"geoId/18129" +"geoId/18133" +"geoId/18135" +"geoId/18137" +"geoId/18139" +"geoId/18141" +"geoId/18143" +"geoId/18145" +"geoId/18147" +"geoId/18149" +"geoId/18151" +"geoId/18153" +"geoId/18157" +"geoId/18163" +"geoId/18165" +"geoId/18167" +"geoId/18169" +"geoId/18173" +"geoId/18175" +"geoId/18177" +"geoId/18179" +"geoId/18181" +"geoId/18183" +"geoId/19" +"geoId/19011" +"geoId/19013" +"geoId/19015" +"geoId/19017" +"geoId/19019" +"geoId/19021" +"geoId/19023" +"geoId/19027" +"geoId/19029" +"geoId/19031" +"geoId/19033" +"geoId/19035" +"geoId/19041" +"geoId/19043" +"geoId/19045" +"geoId/19047" +"geoId/19049" +"geoId/19055" +"geoId/19057" +"geoId/19059" +"geoId/19061" +"geoId/19065" +"geoId/19067" +"geoId/19079" +"geoId/19083" +"geoId/19085" +"geoId/19087" +"geoId/19097" +"geoId/19099" +"geoId/19101" +"geoId/19103" +"geoId/19105" +"geoId/19109" +"geoId/19111" +"geoId/19113" +"geoId/19121" +"geoId/19123" +"geoId/19125" +"geoId/19127" +"geoId/19133" +"geoId/19139" +"geoId/19141" +"geoId/19145" +"geoId/19149" +"geoId/19153" +"geoId/19155" +"geoId/19157" +"geoId/19163" +"geoId/19167" +"geoId/19169" +"geoId/19171" +"geoId/19179" +"geoId/19181" +"geoId/19183" +"geoId/19187" +"geoId/19191" +"geoId/19193" +"geoId/19197" +"geoId/20" +"geoId/20005" +"geoId/20009" +"geoId/20015" +"geoId/20021" +"geoId/20035" +"geoId/20037" +"geoId/20041" +"geoId/20045" +"geoId/20051" +"geoId/20055" +"geoId/20057" +"geoId/20059" +"geoId/20061" +"geoId/20079" +"geoId/20087" +"geoId/20091" +"geoId/20099" +"geoId/20103" +"geoId/20111" +"geoId/20113" +"geoId/20121" +"geoId/20125" +"geoId/20133" +"geoId/20139" +"geoId/20149" +"geoId/20155" +"geoId/20161" +"geoId/20169" +"geoId/20173" +"geoId/20175" +"geoId/20177" +"geoId/20191" +"geoId/20209" +"geoId/21" +"geoId/21001" +"geoId/21003" +"geoId/21005" +"geoId/21009" +"geoId/21013" +"geoId/21015" +"geoId/21017" +"geoId/21019" +"geoId/21021" +"geoId/21025" +"geoId/21027" +"geoId/21029" +"geoId/21035" +"geoId/21037" +"geoId/21043" +"geoId/21047" +"geoId/21049" +"geoId/21051" +"geoId/21059" +"geoId/21067" +"geoId/21071" +"geoId/21073" +"geoId/21079" +"geoId/21081" +"geoId/21083" +"geoId/21085" +"geoId/21089" +"geoId/21093" +"geoId/21095" +"geoId/21097" +"geoId/21099" +"geoId/21101" +"geoId/21107" +"geoId/21111" +"geoId/21113" +"geoId/21115" +"geoId/21117" +"geoId/21119" +"geoId/21121" +"geoId/21125" +"geoId/21133" +"geoId/21137" +"geoId/21141" +"geoId/21145" +"geoId/21147" +"geoId/21151" +"geoId/21155" +"geoId/21157" +"geoId/21161" +"geoId/21163" +"geoId/21167" +"geoId/21173" +"geoId/21177" +"geoId/21179" +"geoId/21183" +"geoId/21185" +"geoId/21193" +"geoId/21195" +"geoId/21199" +"geoId/21203" +"geoId/21205" +"geoId/21207" +"geoId/21209" +"geoId/21211" +"geoId/21213" +"geoId/21215" +"geoId/21217" +"geoId/21225" +"geoId/21227" +"geoId/21231" +"geoId/21235" +"geoId/21239" +"geoId/22" +"geoId/22001" +"geoId/22003" +"geoId/22005" +"geoId/22007" +"geoId/22009" +"geoId/22011" +"geoId/22015" +"geoId/22017" +"geoId/22019" +"geoId/22027" +"geoId/22029" +"geoId/22031" +"geoId/22033" +"geoId/22037" +"geoId/22039" +"geoId/22041" +"geoId/22043" +"geoId/22045" +"geoId/22047" +"geoId/22049" +"geoId/22051" +"geoId/22053" +"geoId/22055" +"geoId/22057" +"geoId/22061" +"geoId/22063" +"geoId/22067" +"geoId/22069" +"geoId/22071" +"geoId/22073" +"geoId/22075" +"geoId/22077" +"geoId/22079" +"geoId/22083" +"geoId/22085" +"geoId/22087" +"geoId/22089" +"geoId/22093" +"geoId/22095" +"geoId/22097" +"geoId/22099" +"geoId/22101" +"geoId/22103" +"geoId/22105" +"geoId/22109" +"geoId/22111" +"geoId/22113" +"geoId/22115" +"geoId/22117" +"geoId/22119" +"geoId/22121" +"geoId/22127" +"geoId/23" +"geoId/23001" +"geoId/23003" +"geoId/23005" +"geoId/23007" +"geoId/23009" +"geoId/23011" +"geoId/23013" +"geoId/23015" +"geoId/23017" +"geoId/23019" +"geoId/23021" +"geoId/23023" +"geoId/23025" +"geoId/23027" +"geoId/23029" +"geoId/23031" +"geoId/24" +"geoId/24001" +"geoId/24003" +"geoId/24005" +"geoId/24009" +"geoId/24011" +"geoId/24013" +"geoId/24015" +"geoId/24017" +"geoId/24019" +"geoId/24021" +"geoId/24023" +"geoId/24025" +"geoId/24027" +"geoId/24029" +"geoId/24031" +"geoId/24033" +"geoId/24035" +"geoId/24037" +"geoId/24039" +"geoId/24041" +"geoId/24043" +"geoId/24045" +"geoId/24047" +"geoId/24510" +"geoId/25" +"geoId/25001" +"geoId/25003" +"geoId/25005" +"geoId/25007" +"geoId/25009" +"geoId/25011" +"geoId/25013" +"geoId/25015" +"geoId/25017" +"geoId/25021" +"geoId/25023" +"geoId/25025" +"geoId/25027" +"geoId/26" +"geoId/26005" +"geoId/26007" +"geoId/26009" +"geoId/26011" +"geoId/26015" +"geoId/26017" +"geoId/26019" +"geoId/26021" +"geoId/26023" +"geoId/26025" +"geoId/26027" +"geoId/26029" +"geoId/26031" +"geoId/26033" +"geoId/26035" +"geoId/26037" +"geoId/26041" +"geoId/26043" +"geoId/26045" +"geoId/26047" +"geoId/26049" +"geoId/26051" +"geoId/26053" +"geoId/26055" +"geoId/26057" +"geoId/26059" +"geoId/26061" +"geoId/26063" +"geoId/26065" +"geoId/26067" +"geoId/26069" +"geoId/26073" +"geoId/26075" +"geoId/26077" +"geoId/26079" +"geoId/26081" +"geoId/26087" +"geoId/26089" +"geoId/26091" +"geoId/26093" +"geoId/26099" +"geoId/26101" +"geoId/26103" +"geoId/26105" +"geoId/26107" +"geoId/26109" +"geoId/26111" +"geoId/26115" +"geoId/26117" +"geoId/26121" +"geoId/26123" +"geoId/26125" +"geoId/26127" +"geoId/26129" +"geoId/26133" +"geoId/26137" +"geoId/26139" +"geoId/26143" +"geoId/26145" +"geoId/26147" +"geoId/26149" +"geoId/26151" +"geoId/26155" +"geoId/26157" +"geoId/26159" +"geoId/26161" +"geoId/26163" +"geoId/26165" +"geoId/27" +"geoId/27003" +"geoId/27005" +"geoId/27007" +"geoId/27009" +"geoId/27013" +"geoId/27015" +"geoId/27017" +"geoId/27019" +"geoId/27021" +"geoId/27025" +"geoId/27027" +"geoId/27035" +"geoId/27037" +"geoId/27039" +"geoId/27041" +"geoId/27043" +"geoId/27045" +"geoId/27047" +"geoId/27049" +"geoId/27053" +"geoId/27055" +"geoId/27057" +"geoId/27059" +"geoId/27061" +"geoId/27067" +"geoId/27071" +"geoId/27079" +"geoId/27083" +"geoId/27085" +"geoId/27091" +"geoId/27093" +"geoId/27095" +"geoId/27097" +"geoId/27099" +"geoId/27103" +"geoId/27105" +"geoId/27109" +"geoId/27111" +"geoId/27115" +"geoId/27119" +"geoId/27123" +"geoId/27127" +"geoId/27129" +"geoId/27131" +"geoId/27137" +"geoId/27139" +"geoId/27141" +"geoId/27145" +"geoId/27147" +"geoId/27153" +"geoId/27157" +"geoId/27161" +"geoId/27163" +"geoId/27169" +"geoId/27171" +"geoId/28" +"geoId/28001" +"geoId/28003" +"geoId/28007" +"geoId/28011" +"geoId/28017" +"geoId/28023" +"geoId/28025" +"geoId/28027" +"geoId/28029" +"geoId/28031" +"geoId/28033" +"geoId/28035" +"geoId/28039" +"geoId/28043" +"geoId/28045" +"geoId/28047" +"geoId/28049" +"geoId/28051" +"geoId/28057" +"geoId/28059" +"geoId/28061" +"geoId/28067" +"geoId/28071" +"geoId/28073" +"geoId/28075" +"geoId/28079" +"geoId/28081" +"geoId/28083" +"geoId/28085" +"geoId/28087" +"geoId/28089" +"geoId/28091" +"geoId/28093" +"geoId/28095" +"geoId/28099" +"geoId/28101" +"geoId/28105" +"geoId/28107" +"geoId/28109" +"geoId/28113" +"geoId/28115" +"geoId/28117" +"geoId/28121" +"geoId/28123" +"geoId/28127" +"geoId/28131" +"geoId/28133" +"geoId/28135" +"geoId/28137" +"geoId/28139" +"geoId/28141" +"geoId/28145" +"geoId/28149" +"geoId/28151" +"geoId/28153" +"geoId/28159" +"geoId/28163" +"geoId/29" +"geoId/29001" +"geoId/29003" +"geoId/29007" +"geoId/29009" +"geoId/29013" +"geoId/29015" +"geoId/29019" +"geoId/29021" +"geoId/29023" +"geoId/29027" +"geoId/29029" +"geoId/29031" +"geoId/29037" +"geoId/29043" +"geoId/29047" +"geoId/29049" +"geoId/29051" +"geoId/29053" +"geoId/29055" +"geoId/29059" +"geoId/29069" +"geoId/29071" +"geoId/29077" +"geoId/29083" +"geoId/29091" +"geoId/29095" +"geoId/29097" +"geoId/29099" +"geoId/29101" +"geoId/29105" +"geoId/29107" +"geoId/29109" +"geoId/29113" +"geoId/29119" +"geoId/29127" +"geoId/29131" +"geoId/29141" +"geoId/29143" +"geoId/29145" +"geoId/29147" +"geoId/29155" +"geoId/29157" +"geoId/29159" +"geoId/29161" +"geoId/29163" +"geoId/29165" +"geoId/29167" +"geoId/29169" +"geoId/29175" +"geoId/29177" +"geoId/29183" +"geoId/29186" +"geoId/29187" +"geoId/29189" +"geoId/29195" +"geoId/29201" +"geoId/29207" +"geoId/29209" +"geoId/29213" +"geoId/29215" +"geoId/29217" +"geoId/29219" +"geoId/29221" +"geoId/29225" +"geoId/29229" +"geoId/29510" +"geoId/30" +"geoId/30013" +"geoId/30029" +"geoId/30031" +"geoId/30041" +"geoId/30047" +"geoId/30049" +"geoId/30053" +"geoId/30063" +"geoId/30067" +"geoId/30081" +"geoId/30093" +"geoId/30111" +"geoId/31" +"geoId/31001" +"geoId/31019" +"geoId/31025" +"geoId/31043" +"geoId/31047" +"geoId/31053" +"geoId/31055" +"geoId/31067" +"geoId/31079" +"geoId/31109" +"geoId/31111" +"geoId/31119" +"geoId/31141" +"geoId/31153" +"geoId/31155" +"geoId/31157" +"geoId/31159" +"geoId/31177" +"geoId/32" +"geoId/32001" +"geoId/32003" +"geoId/32005" +"geoId/32007" +"geoId/32013" +"geoId/32019" +"geoId/32023" +"geoId/32031" +"geoId/32510" +"geoId/33" +"geoId/33001" +"geoId/33003" +"geoId/33005" +"geoId/33007" +"geoId/33009" +"geoId/33011" +"geoId/33013" +"geoId/33015" +"geoId/33017" +"geoId/33019" +"geoId/34" +"geoId/34001" +"geoId/34003" +"geoId/34005" +"geoId/34007" +"geoId/34009" +"geoId/34011" +"geoId/34013" +"geoId/34015" +"geoId/34017" +"geoId/34019" +"geoId/34021" +"geoId/34023" +"geoId/34025" +"geoId/34027" +"geoId/34029" +"geoId/34031" +"geoId/34033" +"geoId/34035" +"geoId/34037" +"geoId/34039" +"geoId/34041" +"geoId/35" +"geoId/35001" +"geoId/35005" +"geoId/35006" +"geoId/35009" +"geoId/35013" +"geoId/35015" +"geoId/35017" +"geoId/35025" +"geoId/35027" +"geoId/35028" +"geoId/35029" +"geoId/35031" +"geoId/35035" +"geoId/35039" +"geoId/35041" +"geoId/35043" +"geoId/35045" +"geoId/35047" +"geoId/35049" +"geoId/35053" +"geoId/35055" +"geoId/35057" +"geoId/35061" +"geoId/36" +"geoId/36001" +"geoId/36003" +"geoId/36005" +"geoId/36007" +"geoId/36009" +"geoId/36011" +"geoId/36013" +"geoId/36015" +"geoId/36017" +"geoId/36019" +"geoId/36021" +"geoId/36023" +"geoId/36025" +"geoId/36027" +"geoId/36029" +"geoId/36031" +"geoId/36033" +"geoId/36035" +"geoId/36037" +"geoId/36039" +"geoId/36043" +"geoId/36045" +"geoId/36047" +"geoId/36049" +"geoId/36051" +"geoId/36053" +"geoId/36055" +"geoId/36057" +"geoId/36059" +"geoId/36061" +"geoId/36063" +"geoId/36065" +"geoId/36067" +"geoId/36069" +"geoId/36071" +"geoId/36073" +"geoId/36075" +"geoId/36077" +"geoId/36079" +"geoId/36081" +"geoId/36083" +"geoId/36085" +"geoId/36087" +"geoId/36089" +"geoId/36091" +"geoId/36093" +"geoId/36095" +"geoId/36097" +"geoId/36099" +"geoId/36101" +"geoId/36103" +"geoId/36105" +"geoId/36107" +"geoId/36109" +"geoId/36111" +"geoId/36113" +"geoId/36115" +"geoId/36117" +"geoId/36119" +"geoId/36121" +"geoId/36123" +"geoId/37" +"geoId/37001" +"geoId/37003" +"geoId/37007" +"geoId/37009" +"geoId/37011" +"geoId/37013" +"geoId/37015" +"geoId/37017" +"geoId/37019" +"geoId/37021" +"geoId/37023" +"geoId/37025" +"geoId/37027" +"geoId/37031" +"geoId/37033" +"geoId/37035" +"geoId/37037" +"geoId/37039" +"geoId/37045" +"geoId/37047" +"geoId/37049" +"geoId/37051" +"geoId/37053" +"geoId/37055" +"geoId/37057" +"geoId/37059" +"geoId/37061" +"geoId/37063" +"geoId/37065" +"geoId/37067" +"geoId/37069" +"geoId/37071" +"geoId/37077" +"geoId/37079" +"geoId/37081" +"geoId/37083" +"geoId/37085" +"geoId/37087" +"geoId/37089" +"geoId/37091" +"geoId/37093" +"geoId/37097" +"geoId/37099" +"geoId/37101" +"geoId/37105" +"geoId/37107" +"geoId/37109" +"geoId/37111" +"geoId/37113" +"geoId/37115" +"geoId/37117" +"geoId/37119" +"geoId/37123" +"geoId/37125" +"geoId/37127" +"geoId/37129" +"geoId/37131" +"geoId/37133" +"geoId/37135" +"geoId/37139" +"geoId/37141" +"geoId/37145" +"geoId/37147" +"geoId/37149" +"geoId/37151" +"geoId/37153" +"geoId/37155" +"geoId/37157" +"geoId/37159" +"geoId/37161" +"geoId/37163" +"geoId/37165" +"geoId/37167" +"geoId/37169" +"geoId/37171" +"geoId/37175" +"geoId/37179" +"geoId/37181" +"geoId/37183" +"geoId/37185" +"geoId/37189" +"geoId/37191" +"geoId/37193" +"geoId/37195" +"geoId/37197" +"geoId/37199" +"geoId/38" +"geoId/38015" +"geoId/38017" +"geoId/38035" +"geoId/38059" +"geoId/38077" +"geoId/38089" +"geoId/38093" +"geoId/38101" +"geoId/38105" +"geoId/39" +"geoId/39001" +"geoId/39003" +"geoId/39005" +"geoId/39007" +"geoId/39009" +"geoId/39011" +"geoId/39013" +"geoId/39015" +"geoId/39017" +"geoId/39019" +"geoId/39021" +"geoId/39023" +"geoId/39025" +"geoId/39027" +"geoId/39029" +"geoId/39031" +"geoId/39033" +"geoId/39035" +"geoId/39037" +"geoId/39039" +"geoId/39041" +"geoId/39043" +"geoId/39045" +"geoId/39047" +"geoId/39049" +"geoId/39051" +"geoId/39053" +"geoId/39055" +"geoId/39057" +"geoId/39059" +"geoId/39061" +"geoId/39063" +"geoId/39065" +"geoId/39067" +"geoId/39069" +"geoId/39071" +"geoId/39073" +"geoId/39075" +"geoId/39077" +"geoId/39079" +"geoId/39081" +"geoId/39083" +"geoId/39085" +"geoId/39087" +"geoId/39089" +"geoId/39091" +"geoId/39093" +"geoId/39095" +"geoId/39097" +"geoId/39099" +"geoId/39101" +"geoId/39103" +"geoId/39105" +"geoId/39107" +"geoId/39109" +"geoId/39111" +"geoId/39113" +"geoId/39117" +"geoId/39119" +"geoId/39123" +"geoId/39125" +"geoId/39127" +"geoId/39129" +"geoId/39131" +"geoId/39133" +"geoId/39135" +"geoId/39137" +"geoId/39139" +"geoId/39141" +"geoId/39143" +"geoId/39145" +"geoId/39147" +"geoId/39149" +"geoId/39151" +"geoId/39153" +"geoId/39155" +"geoId/39157" +"geoId/39159" +"geoId/39161" +"geoId/39165" +"geoId/39167" +"geoId/39169" +"geoId/39171" +"geoId/39173" +"geoId/39175" +"geoId/40" +"geoId/40001" +"geoId/40009" +"geoId/40013" +"geoId/40015" +"geoId/40017" +"geoId/40019" +"geoId/40021" +"geoId/40023" +"geoId/40027" +"geoId/40031" +"geoId/40037" +"geoId/40039" +"geoId/40041" +"geoId/40047" +"geoId/40049" +"geoId/40051" +"geoId/40065" +"geoId/40071" +"geoId/40079" +"geoId/40081" +"geoId/40083" +"geoId/40087" +"geoId/40089" +"geoId/40091" +"geoId/40095" +"geoId/40097" +"geoId/40101" +"geoId/40109" +"geoId/40111" +"geoId/40113" +"geoId/40115" +"geoId/40119" +"geoId/40121" +"geoId/40123" +"geoId/40125" +"geoId/40131" +"geoId/40133" +"geoId/40135" +"geoId/40137" +"geoId/40139" +"geoId/40143" +"geoId/40145" +"geoId/40147" +"geoId/40149" +"geoId/40153" +"geoId/41" +"geoId/41003" +"geoId/41005" +"geoId/41007" +"geoId/41009" +"geoId/41011" +"geoId/41013" +"geoId/41015" +"geoId/41017" +"geoId/41019" +"geoId/41027" +"geoId/41029" +"geoId/41031" +"geoId/41033" +"geoId/41035" +"geoId/41039" +"geoId/41041" +"geoId/41043" +"geoId/41045" +"geoId/41047" +"geoId/41051" +"geoId/41053" +"geoId/41057" +"geoId/41059" +"geoId/41061" +"geoId/41065" +"geoId/41067" +"geoId/41071" +"geoId/42" +"geoId/42001" +"geoId/42003" +"geoId/42005" +"geoId/42007" +"geoId/42009" +"geoId/42011" +"geoId/42013" +"geoId/42015" +"geoId/42017" +"geoId/42019" +"geoId/42021" +"geoId/42025" +"geoId/42027" +"geoId/42029" +"geoId/42031" +"geoId/42033" +"geoId/42035" +"geoId/42037" +"geoId/42039" +"geoId/42041" +"geoId/42043" +"geoId/42045" +"geoId/42047" +"geoId/42049" +"geoId/42051" +"geoId/42055" +"geoId/42059" +"geoId/42061" +"geoId/42063" +"geoId/42065" +"geoId/42067" +"geoId/42069" +"geoId/42071" +"geoId/42073" +"geoId/42075" +"geoId/42077" +"geoId/42079" +"geoId/42081" +"geoId/42083" +"geoId/42085" +"geoId/42087" +"geoId/42089" +"geoId/42091" +"geoId/42093" +"geoId/42095" +"geoId/42097" +"geoId/42099" +"geoId/42101" +"geoId/42103" +"geoId/42105" +"geoId/42107" +"geoId/42109" +"geoId/42111" +"geoId/42115" +"geoId/42117" +"geoId/42119" +"geoId/42121" +"geoId/42123" +"geoId/42125" +"geoId/42127" +"geoId/42129" +"geoId/42131" +"geoId/42133" +"geoId/44" +"geoId/44001" +"geoId/44003" +"geoId/44005" +"geoId/44007" +"geoId/44009" +"geoId/45" +"geoId/45001" +"geoId/45003" +"geoId/45007" +"geoId/45009" +"geoId/45011" +"geoId/45013" +"geoId/45015" +"geoId/45019" +"geoId/45021" +"geoId/45023" +"geoId/45025" +"geoId/45027" +"geoId/45029" +"geoId/45031" +"geoId/45033" +"geoId/45035" +"geoId/45037" +"geoId/45039" +"geoId/45041" +"geoId/45043" +"geoId/45045" +"geoId/45047" +"geoId/45049" +"geoId/45051" +"geoId/45053" +"geoId/45055" +"geoId/45057" +"geoId/45059" +"geoId/45061" +"geoId/45063" +"geoId/45067" +"geoId/45069" +"geoId/45071" +"geoId/45073" +"geoId/45075" +"geoId/45077" +"geoId/45079" +"geoId/45081" +"geoId/45083" +"geoId/45085" +"geoId/45087" +"geoId/45089" +"geoId/45091" +"geoId/46" +"geoId/46005" +"geoId/46011" +"geoId/46013" +"geoId/46029" +"geoId/46035" +"geoId/46065" +"geoId/46081" +"geoId/46083" +"geoId/46093" +"geoId/46099" +"geoId/46103" +"geoId/46127" +"geoId/46135" +"geoId/47" +"geoId/47001" +"geoId/47003" +"geoId/47009" +"geoId/47011" +"geoId/47013" +"geoId/47017" +"geoId/47019" +"geoId/47021" +"geoId/47023" +"geoId/47025" +"geoId/47029" +"geoId/47031" +"geoId/47035" +"geoId/47037" +"geoId/47041" +"geoId/47043" +"geoId/47045" +"geoId/47047" +"geoId/47049" +"geoId/47051" +"geoId/47053" +"geoId/47055" +"geoId/47057" +"geoId/47059" +"geoId/47063" +"geoId/47065" +"geoId/47069" +"geoId/47071" +"geoId/47073" +"geoId/47075" +"geoId/47077" +"geoId/47079" +"geoId/47081" +"geoId/47085" +"geoId/47089" +"geoId/47091" +"geoId/47093" +"geoId/47097" +"geoId/47099" +"geoId/47103" +"geoId/47105" +"geoId/47107" +"geoId/47109" +"geoId/47111" +"geoId/47113" +"geoId/47115" +"geoId/47117" +"geoId/47119" +"geoId/47123" +"geoId/47125" +"geoId/47129" +"geoId/47131" +"geoId/47133" +"geoId/47139" +"geoId/47141" +"geoId/47143" +"geoId/47145" +"geoId/47147" +"geoId/47149" +"geoId/47151" +"geoId/47153" +"geoId/47155" +"geoId/47157" +"geoId/47159" +"geoId/47163" +"geoId/47165" +"geoId/47167" +"geoId/47171" +"geoId/47173" +"geoId/47177" +"geoId/47179" +"geoId/47181" +"geoId/47183" +"geoId/47185" +"geoId/47187" +"geoId/47189" +"geoId/48" +"geoId/48001" +"geoId/48003" +"geoId/48005" +"geoId/48007" +"geoId/48013" +"geoId/48015" +"geoId/48019" +"geoId/48021" +"geoId/48025" +"geoId/48027" +"geoId/48029" +"geoId/48035" +"geoId/48037" +"geoId/48039" +"geoId/48041" +"geoId/48049" +"geoId/48051" +"geoId/48053" +"geoId/48055" +"geoId/48057" +"geoId/48061" +"geoId/48067" +"geoId/48071" +"geoId/48073" +"geoId/48085" +"geoId/48089" +"geoId/48091" +"geoId/48097" +"geoId/48099" +"geoId/48113" +"geoId/48117" +"geoId/48121" +"geoId/48123" +"geoId/48133" +"geoId/48135" +"geoId/48139" +"geoId/48141" +"geoId/48143" +"geoId/48145" +"geoId/48147" +"geoId/48149" +"geoId/48157" +"geoId/48161" +"geoId/48163" +"geoId/48165" +"geoId/48167" +"geoId/48171" +"geoId/48177" +"geoId/48179" +"geoId/48181" +"geoId/48183" +"geoId/48185" +"geoId/48187" +"geoId/48189" +"geoId/48199" +"geoId/48201" +"geoId/48203" +"geoId/48209" +"geoId/48213" +"geoId/48215" +"geoId/48217" +"geoId/48219" +"geoId/48221" +"geoId/48223" +"geoId/48225" +"geoId/48227" +"geoId/48231" +"geoId/48233" +"geoId/48241" +"geoId/48245" +"geoId/48249" +"geoId/48251" +"geoId/48253" +"geoId/48257" +"geoId/48259" +"geoId/48265" +"geoId/48273" +"geoId/48277" +"geoId/48279" +"geoId/48281" +"geoId/48285" +"geoId/48287" +"geoId/48289" +"geoId/48291" +"geoId/48293" +"geoId/48299" +"geoId/48303" +"geoId/48309" +"geoId/48321" +"geoId/48323" +"geoId/48325" +"geoId/48329" +"geoId/48331" +"geoId/48337" +"geoId/48339" +"geoId/48341" +"geoId/48347" +"geoId/48349" +"geoId/48353" +"geoId/48355" +"geoId/48361" +"geoId/48363" +"geoId/48365" +"geoId/48367" +"geoId/48371" +"geoId/48373" +"geoId/48375" +"geoId/48381" +"geoId/48389" +"geoId/48395" +"geoId/48397" +"geoId/48401" +"geoId/48407" +"geoId/48409" +"geoId/48415" +"geoId/48419" +"geoId/48423" +"geoId/48427" +"geoId/48439" +"geoId/48441" +"geoId/48449" +"geoId/48451" +"geoId/48453" +"geoId/48457" +"geoId/48459" +"geoId/48463" +"geoId/48465" +"geoId/48467" +"geoId/48469" +"geoId/48471" +"geoId/48473" +"geoId/48477" +"geoId/48479" +"geoId/48481" +"geoId/48485" +"geoId/48489" +"geoId/48491" +"geoId/48493" +"geoId/48497" +"geoId/48499" +"geoId/48503" +"geoId/49" +"geoId/49003" +"geoId/49005" +"geoId/49007" +"geoId/49011" +"geoId/49013" +"geoId/49021" +"geoId/49035" +"geoId/49039" +"geoId/49041" +"geoId/49043" +"geoId/49045" +"geoId/49047" +"geoId/49049" +"geoId/49051" +"geoId/49053" +"geoId/49057" +"geoId/50" +"geoId/50001" +"geoId/50003" +"geoId/50005" +"geoId/50007" +"geoId/50011" +"geoId/50015" +"geoId/50017" +"geoId/50019" +"geoId/50021" +"geoId/50023" +"geoId/50025" +"geoId/50027" +"geoId/51" +"geoId/51001" +"geoId/51003" +"geoId/51005" +"geoId/51009" +"geoId/51013" +"geoId/51015" +"geoId/51019" +"geoId/51023" +"geoId/51025" +"geoId/51027" +"geoId/51029" +"geoId/51031" +"geoId/51033" +"geoId/51035" +"geoId/51041" +"geoId/51047" +"geoId/51051" +"geoId/51053" +"geoId/51059" +"geoId/51061" +"geoId/51065" +"geoId/51067" +"geoId/51069" +"geoId/51071" +"geoId/51073" +"geoId/51075" +"geoId/51077" +"geoId/51079" +"geoId/51083" +"geoId/51085" +"geoId/51087" +"geoId/51089" +"geoId/51093" +"geoId/51095" +"geoId/51099" +"geoId/51101" +"geoId/51105" +"geoId/51107" +"geoId/51109" +"geoId/51117" +"geoId/51121" +"geoId/51127" +"geoId/51137" +"geoId/51139" +"geoId/51141" +"geoId/51143" +"geoId/51145" +"geoId/51147" +"geoId/51149" +"geoId/51153" +"geoId/51155" +"geoId/51161" +"geoId/51163" +"geoId/51165" +"geoId/51167" +"geoId/51169" +"geoId/51171" +"geoId/51173" +"geoId/51175" +"geoId/51177" +"geoId/51179" +"geoId/51185" +"geoId/51187" +"geoId/51191" +"geoId/51193" +"geoId/51195" +"geoId/51197" +"geoId/51199" +"geoId/51510" +"geoId/51520" +"geoId/51540" +"geoId/51550" +"geoId/51570" +"geoId/51590" +"geoId/51600" +"geoId/51630" +"geoId/51650" +"geoId/51660" +"geoId/51670" +"geoId/51680" +"geoId/51683" +"geoId/51685" +"geoId/51690" +"geoId/51700" +"geoId/51710" +"geoId/51730" +"geoId/51740" +"geoId/51750" +"geoId/51760" +"geoId/51770" +"geoId/51775" +"geoId/51790" +"geoId/51800" +"geoId/51810" +"geoId/51820" +"geoId/51840" +"geoId/53" +"geoId/53001" +"geoId/53003" +"geoId/53005" +"geoId/53007" +"geoId/53009" +"geoId/53011" +"geoId/53015" +"geoId/53017" +"geoId/53021" +"geoId/53025" +"geoId/53027" +"geoId/53029" +"geoId/53031" +"geoId/53033" +"geoId/53035" +"geoId/53037" +"geoId/53039" +"geoId/53041" +"geoId/53045" +"geoId/53047" +"geoId/53049" +"geoId/53053" +"geoId/53055" +"geoId/53057" +"geoId/53061" +"geoId/53063" +"geoId/53065" +"geoId/53067" +"geoId/53071" +"geoId/53073" +"geoId/53075" +"geoId/53077" +"geoId/54" +"geoId/54003" +"geoId/54005" +"geoId/54009" +"geoId/54011" +"geoId/54019" +"geoId/54025" +"geoId/54027" +"geoId/54029" +"geoId/54033" +"geoId/54035" +"geoId/54037" +"geoId/54039" +"geoId/54041" +"geoId/54043" +"geoId/54045" +"geoId/54047" +"geoId/54049" +"geoId/54051" +"geoId/54053" +"geoId/54055" +"geoId/54057" +"geoId/54059" +"geoId/54061" +"geoId/54065" +"geoId/54067" +"geoId/54069" +"geoId/54077" +"geoId/54079" +"geoId/54081" +"geoId/54083" +"geoId/54091" +"geoId/54097" +"geoId/54099" +"geoId/54103" +"geoId/54107" +"geoId/54109" +"geoId/55" +"geoId/55001" +"geoId/55003" +"geoId/55005" +"geoId/55009" +"geoId/55013" +"geoId/55015" +"geoId/55017" +"geoId/55019" +"geoId/55021" +"geoId/55023" +"geoId/55025" +"geoId/55027" +"geoId/55029" +"geoId/55031" +"geoId/55033" +"geoId/55035" +"geoId/55039" +"geoId/55043" +"geoId/55045" +"geoId/55047" +"geoId/55049" +"geoId/55053" +"geoId/55055" +"geoId/55057" +"geoId/55059" +"geoId/55061" +"geoId/55063" +"geoId/55065" +"geoId/55067" +"geoId/55069" +"geoId/55071" +"geoId/55073" +"geoId/55075" +"geoId/55079" +"geoId/55081" +"geoId/55083" +"geoId/55085" +"geoId/55087" +"geoId/55089" +"geoId/55093" +"geoId/55095" +"geoId/55097" +"geoId/55101" +"geoId/55103" +"geoId/55105" +"geoId/55109" +"geoId/55111" +"geoId/55113" +"geoId/55115" +"geoId/55117" +"geoId/55119" +"geoId/55121" +"geoId/55123" +"geoId/55125" +"geoId/55127" +"geoId/55131" +"geoId/55133" +"geoId/55135" +"geoId/55137" +"geoId/55139" +"geoId/55141" +"geoId/56" +"geoId/56001" +"geoId/56005" +"geoId/56007" +"geoId/56013" +"geoId/56021" +"geoId/56023" +"geoId/56025" +"geoId/56029" +"geoId/56033" +"geoId/56037" +"geoId/56039" +"geoId/56041" +"geoId/09110" +"geoId/09120" +"geoId/09130" +"geoId/09140" +"geoId/09150" +"geoId/09160" +"geoId/09170" +"geoId/09180" +"geoId/09190" diff --git a/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_observations_state_before.csv b/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_observations_state_before.csv new file mode 100644 index 0000000000..c7fac9e609 --- /dev/null +++ b/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_observations_state_before.csv @@ -0,0 +1,2145 @@ +"geo_ID" +"geoId/01" +"geoId/01001" +"geoId/01003" +"geoId/01005" +"geoId/01007" +"geoId/01009" +"geoId/01013" +"geoId/01015" +"geoId/01017" +"geoId/01019" +"geoId/01021" +"geoId/01023" +"geoId/01025" +"geoId/01031" +"geoId/01033" +"geoId/01039" +"geoId/01043" +"geoId/01045" +"geoId/01047" +"geoId/01049" +"geoId/01051" +"geoId/01053" +"geoId/01055" +"geoId/01057" +"geoId/01059" +"geoId/01061" +"geoId/01065" +"geoId/01067" +"geoId/01069" +"geoId/01071" +"geoId/01073" +"geoId/01077" +"geoId/01079" +"geoId/01081" +"geoId/01083" +"geoId/01087" +"geoId/01089" +"geoId/01091" +"geoId/01093" +"geoId/01095" +"geoId/01097" +"geoId/01099" +"geoId/01101" +"geoId/01103" +"geoId/01107" +"geoId/01109" +"geoId/01111" +"geoId/01113" +"geoId/01115" +"geoId/01117" +"geoId/01119" +"geoId/01121" +"geoId/01123" +"geoId/01125" +"geoId/01127" +"geoId/01129" +"geoId/01133" +"geoId/02" +"geoId/02020" +"geoId/02050" +"geoId/02090" +"geoId/02110" +"geoId/02170" +"geoId/04" +"geoId/04001" +"geoId/04003" +"geoId/04005" +"geoId/04007" +"geoId/04009" +"geoId/04013" +"geoId/04015" +"geoId/04017" +"geoId/04019" +"geoId/04021" +"geoId/04023" +"geoId/04025" +"geoId/04027" +"geoId/05" +"geoId/05001" +"geoId/05003" +"geoId/05005" +"geoId/05007" +"geoId/05009" +"geoId/05015" +"geoId/05017" +"geoId/05019" +"geoId/05021" +"geoId/05023" +"geoId/05027" +"geoId/05029" +"geoId/05031" +"geoId/05033" +"geoId/05035" +"geoId/05037" +"geoId/05041" +"geoId/05043" +"geoId/05045" +"geoId/05047" +"geoId/05051" +"geoId/05053" +"geoId/05055" +"geoId/05057" +"geoId/05059" +"geoId/05063" +"geoId/05067" +"geoId/05069" +"geoId/05071" +"geoId/05075" +"geoId/05077" +"geoId/05083" +"geoId/05085" +"geoId/05087" +"geoId/05089" +"geoId/05091" +"geoId/05093" +"geoId/05103" +"geoId/05107" +"geoId/05111" +"geoId/05113" +"geoId/05115" +"geoId/05119" +"geoId/05121" +"geoId/05123" +"geoId/05125" +"geoId/05131" +"geoId/05133" +"geoId/05135" +"geoId/05139" +"geoId/05141" +"geoId/05143" +"geoId/05145" +"geoId/05149" +"geoId/06" +"geoId/06001" +"geoId/06005" +"geoId/06007" +"geoId/06009" +"geoId/06011" +"geoId/06013" +"geoId/06015" +"geoId/06017" +"geoId/06019" +"geoId/06021" +"geoId/06023" +"geoId/06025" +"geoId/06027" +"geoId/06029" +"geoId/06031" +"geoId/06033" +"geoId/06035" +"geoId/06037" +"geoId/06039" +"geoId/06041" +"geoId/06043" +"geoId/06045" +"geoId/06047" +"geoId/06053" +"geoId/06055" +"geoId/06057" +"geoId/06059" +"geoId/06061" +"geoId/06063" +"geoId/06065" +"geoId/06067" +"geoId/06069" +"geoId/06071" +"geoId/06073" +"geoId/06075" +"geoId/06077" +"geoId/06079" +"geoId/06081" +"geoId/06083" +"geoId/06085" +"geoId/06087" +"geoId/06089" +"geoId/06093" +"geoId/06095" +"geoId/06097" +"geoId/06099" +"geoId/06101" +"geoId/06103" +"geoId/06107" +"geoId/06109" +"geoId/06111" +"geoId/06113" +"geoId/06115" +"geoId/08" +"geoId/08001" +"geoId/08005" +"geoId/08013" +"geoId/08015" +"geoId/08029" +"geoId/08031" +"geoId/08035" +"geoId/08037" +"geoId/08039" +"geoId/08041" +"geoId/08043" +"geoId/08045" +"geoId/08051" +"geoId/08059" +"geoId/08067" +"geoId/08069" +"geoId/08075" +"geoId/08077" +"geoId/08083" +"geoId/08085" +"geoId/08087" +"geoId/08089" +"geoId/08093" +"geoId/08097" +"geoId/08101" +"geoId/08107" +"geoId/08117" +"geoId/08119" +"geoId/08123" +"geoId/09" +"geoId/09001" +"geoId/09003" +"geoId/09005" +"geoId/09007" +"geoId/09009" +"geoId/09011" +"geoId/09013" +"geoId/09015" +"geoId/10" +"geoId/10001" +"geoId/10003" +"geoId/10005" +"geoId/11" +"geoId/11001" +"geoId/12" +"geoId/12001" +"geoId/12003" +"geoId/12005" +"geoId/12007" +"geoId/12009" +"geoId/12011" +"geoId/12015" +"geoId/12017" +"geoId/12019" +"geoId/12021" +"geoId/12023" +"geoId/12027" +"geoId/12029" +"geoId/12031" +"geoId/12033" +"geoId/12035" +"geoId/12039" +"geoId/12041" +"geoId/12049" +"geoId/12051" +"geoId/12053" +"geoId/12055" +"geoId/12057" +"geoId/12059" +"geoId/12061" +"geoId/12063" +"geoId/12069" +"geoId/12071" +"geoId/12073" +"geoId/12075" +"geoId/12079" +"geoId/12081" +"geoId/12083" +"geoId/12085" +"geoId/12087" +"geoId/12089" +"geoId/12091" +"geoId/12093" +"geoId/12095" +"geoId/12097" +"geoId/12099" +"geoId/12101" +"geoId/12103" +"geoId/12105" +"geoId/12107" +"geoId/12109" +"geoId/12111" +"geoId/12113" +"geoId/12115" +"geoId/12117" +"geoId/12119" +"geoId/12121" +"geoId/12123" +"geoId/12127" +"geoId/12129" +"geoId/12131" +"geoId/12133" +"geoId/13" +"geoId/13001" +"geoId/13009" +"geoId/13011" +"geoId/13013" +"geoId/13015" +"geoId/13017" +"geoId/13019" +"geoId/13021" +"geoId/13025" +"geoId/13029" +"geoId/13031" +"geoId/13033" +"geoId/13035" +"geoId/13039" +"geoId/13045" +"geoId/13047" +"geoId/13051" +"geoId/13053" +"geoId/13055" +"geoId/13057" +"geoId/13059" +"geoId/13063" +"geoId/13067" +"geoId/13069" +"geoId/13071" +"geoId/13073" +"geoId/13075" +"geoId/13077" +"geoId/13081" +"geoId/13085" +"geoId/13087" +"geoId/13089" +"geoId/13091" +"geoId/13095" +"geoId/13097" +"geoId/13103" +"geoId/13105" +"geoId/13107" +"geoId/13111" +"geoId/13113" +"geoId/13115" +"geoId/13117" +"geoId/13119" +"geoId/13121" +"geoId/13123" +"geoId/13127" +"geoId/13129" +"geoId/13131" +"geoId/13133" +"geoId/13135" +"geoId/13137" +"geoId/13139" +"geoId/13143" +"geoId/13145" +"geoId/13147" +"geoId/13151" +"geoId/13153" +"geoId/13157" +"geoId/13159" +"geoId/13163" +"geoId/13169" +"geoId/13171" +"geoId/13175" +"geoId/13177" +"geoId/13179" +"geoId/13183" +"geoId/13185" +"geoId/13187" +"geoId/13189" +"geoId/13195" +"geoId/13199" +"geoId/13205" +"geoId/13207" +"geoId/13211" +"geoId/13213" +"geoId/13215" +"geoId/13217" +"geoId/13219" +"geoId/13223" +"geoId/13225" +"geoId/13227" +"geoId/13229" +"geoId/13231" +"geoId/13233" +"geoId/13237" +"geoId/13241" +"geoId/13245" +"geoId/13247" +"geoId/13255" +"geoId/13257" +"geoId/13261" +"geoId/13267" +"geoId/13275" +"geoId/13277" +"geoId/13279" +"geoId/13285" +"geoId/13291" +"geoId/13293" +"geoId/13295" +"geoId/13297" +"geoId/13299" +"geoId/13303" +"geoId/13305" +"geoId/13311" +"geoId/13313" +"geoId/13321" +"geoId/15" +"geoId/15001" +"geoId/15003" +"geoId/15007" +"geoId/15009" +"geoId/16" +"geoId/16001" +"geoId/16005" +"geoId/16011" +"geoId/16013" +"geoId/16017" +"geoId/16019" +"geoId/16027" +"geoId/16031" +"geoId/16039" +"geoId/16045" +"geoId/16049" +"geoId/16051" +"geoId/16053" +"geoId/16055" +"geoId/16057" +"geoId/16065" +"geoId/16067" +"geoId/16069" +"geoId/16075" +"geoId/16079" +"geoId/16083" +"geoId/17" +"geoId/17001" +"geoId/17005" +"geoId/17007" +"geoId/17011" +"geoId/17015" +"geoId/17019" +"geoId/17021" +"geoId/17023" +"geoId/17027" +"geoId/17029" +"geoId/17031" +"geoId/17033" +"geoId/17037" +"geoId/17039" +"geoId/17041" +"geoId/17043" +"geoId/17045" +"geoId/17049" +"geoId/17051" +"geoId/17055" +"geoId/17057" +"geoId/17061" +"geoId/17063" +"geoId/17067" +"geoId/17073" +"geoId/17075" +"geoId/17077" +"geoId/17081" +"geoId/17083" +"geoId/17085" +"geoId/17089" +"geoId/17091" +"geoId/17093" +"geoId/17095" +"geoId/17097" +"geoId/17099" +"geoId/17101" +"geoId/17103" +"geoId/17105" +"geoId/17107" +"geoId/17109" +"geoId/17111" +"geoId/17113" +"geoId/17115" +"geoId/17117" +"geoId/17119" +"geoId/17121" +"geoId/17125" +"geoId/17131" +"geoId/17133" +"geoId/17135" +"geoId/17137" +"geoId/17141" +"geoId/17143" +"geoId/17145" +"geoId/17149" +"geoId/17157" +"geoId/17159" +"geoId/17161" +"geoId/17163" +"geoId/17165" +"geoId/17167" +"geoId/17173" +"geoId/17177" +"geoId/17179" +"geoId/17181" +"geoId/17183" +"geoId/17187" +"geoId/17191" +"geoId/17193" +"geoId/17195" +"geoId/17197" +"geoId/17199" +"geoId/17201" +"geoId/17203" +"geoId/18" +"geoId/18001" +"geoId/18003" +"geoId/18005" +"geoId/18011" +"geoId/18015" +"geoId/18017" +"geoId/18019" +"geoId/18021" +"geoId/18023" +"geoId/18027" +"geoId/18029" +"geoId/18031" +"geoId/18033" +"geoId/18035" +"geoId/18037" +"geoId/18039" +"geoId/18041" +"geoId/18043" +"geoId/18045" +"geoId/18047" +"geoId/18049" +"geoId/18051" +"geoId/18053" +"geoId/18055" +"geoId/18057" +"geoId/18059" +"geoId/18061" +"geoId/18063" +"geoId/18065" +"geoId/18067" +"geoId/18069" +"geoId/18071" +"geoId/18073" +"geoId/18075" +"geoId/18077" +"geoId/18079" +"geoId/18081" +"geoId/18083" +"geoId/18085" +"geoId/18087" +"geoId/18089" +"geoId/18091" +"geoId/18093" +"geoId/18095" +"geoId/18097" +"geoId/18099" +"geoId/18103" +"geoId/18105" +"geoId/18107" +"geoId/18109" +"geoId/18113" +"geoId/18117" +"geoId/18119" +"geoId/18121" +"geoId/18123" +"geoId/18127" +"geoId/18129" +"geoId/18133" +"geoId/18135" +"geoId/18137" +"geoId/18139" +"geoId/18141" +"geoId/18143" +"geoId/18145" +"geoId/18147" +"geoId/18149" +"geoId/18151" +"geoId/18153" +"geoId/18157" +"geoId/18163" +"geoId/18165" +"geoId/18167" +"geoId/18169" +"geoId/18173" +"geoId/18175" +"geoId/18177" +"geoId/18179" +"geoId/18181" +"geoId/18183" +"geoId/19" +"geoId/19011" +"geoId/19013" +"geoId/19015" +"geoId/19017" +"geoId/19019" +"geoId/19021" +"geoId/19023" +"geoId/19027" +"geoId/19029" +"geoId/19031" +"geoId/19033" +"geoId/19035" +"geoId/19041" +"geoId/19043" +"geoId/19045" +"geoId/19047" +"geoId/19049" +"geoId/19055" +"geoId/19057" +"geoId/19059" +"geoId/19061" +"geoId/19065" +"geoId/19067" +"geoId/19079" +"geoId/19083" +"geoId/19085" +"geoId/19087" +"geoId/19097" +"geoId/19099" +"geoId/19101" +"geoId/19103" +"geoId/19105" +"geoId/19109" +"geoId/19111" +"geoId/19113" +"geoId/19121" +"geoId/19123" +"geoId/19125" +"geoId/19127" +"geoId/19133" +"geoId/19139" +"geoId/19141" +"geoId/19145" +"geoId/19149" +"geoId/19153" +"geoId/19155" +"geoId/19157" +"geoId/19163" +"geoId/19167" +"geoId/19169" +"geoId/19171" +"geoId/19179" +"geoId/19181" +"geoId/19183" +"geoId/19187" +"geoId/19191" +"geoId/19193" +"geoId/19197" +"geoId/20" +"geoId/20005" +"geoId/20009" +"geoId/20015" +"geoId/20021" +"geoId/20035" +"geoId/20037" +"geoId/20041" +"geoId/20045" +"geoId/20051" +"geoId/20055" +"geoId/20057" +"geoId/20059" +"geoId/20061" +"geoId/20079" +"geoId/20087" +"geoId/20091" +"geoId/20099" +"geoId/20103" +"geoId/20111" +"geoId/20113" +"geoId/20121" +"geoId/20125" +"geoId/20133" +"geoId/20139" +"geoId/20149" +"geoId/20155" +"geoId/20161" +"geoId/20169" +"geoId/20173" +"geoId/20175" +"geoId/20177" +"geoId/20191" +"geoId/20209" +"geoId/21" +"geoId/21001" +"geoId/21003" +"geoId/21005" +"geoId/21009" +"geoId/21013" +"geoId/21015" +"geoId/21017" +"geoId/21019" +"geoId/21021" +"geoId/21025" +"geoId/21027" +"geoId/21029" +"geoId/21035" +"geoId/21037" +"geoId/21043" +"geoId/21047" +"geoId/21049" +"geoId/21051" +"geoId/21059" +"geoId/21067" +"geoId/21071" +"geoId/21073" +"geoId/21079" +"geoId/21081" +"geoId/21083" +"geoId/21085" +"geoId/21089" +"geoId/21093" +"geoId/21095" +"geoId/21097" +"geoId/21099" +"geoId/21101" +"geoId/21107" +"geoId/21111" +"geoId/21113" +"geoId/21115" +"geoId/21117" +"geoId/21119" +"geoId/21121" +"geoId/21125" +"geoId/21133" +"geoId/21137" +"geoId/21141" +"geoId/21145" +"geoId/21147" +"geoId/21151" +"geoId/21155" +"geoId/21157" +"geoId/21161" +"geoId/21163" +"geoId/21167" +"geoId/21173" +"geoId/21177" +"geoId/21179" +"geoId/21183" +"geoId/21185" +"geoId/21193" +"geoId/21195" +"geoId/21199" +"geoId/21203" +"geoId/21205" +"geoId/21207" +"geoId/21209" +"geoId/21211" +"geoId/21213" +"geoId/21215" +"geoId/21217" +"geoId/21225" +"geoId/21227" +"geoId/21231" +"geoId/21235" +"geoId/21239" +"geoId/22" +"geoId/22001" +"geoId/22003" +"geoId/22005" +"geoId/22007" +"geoId/22009" +"geoId/22011" +"geoId/22015" +"geoId/22017" +"geoId/22019" +"geoId/22027" +"geoId/22029" +"geoId/22031" +"geoId/22033" +"geoId/22037" +"geoId/22039" +"geoId/22041" +"geoId/22043" +"geoId/22045" +"geoId/22047" +"geoId/22049" +"geoId/22051" +"geoId/22053" +"geoId/22055" +"geoId/22057" +"geoId/22061" +"geoId/22063" +"geoId/22067" +"geoId/22069" +"geoId/22071" +"geoId/22073" +"geoId/22075" +"geoId/22077" +"geoId/22079" +"geoId/22083" +"geoId/22085" +"geoId/22087" +"geoId/22089" +"geoId/22093" +"geoId/22095" +"geoId/22097" +"geoId/22099" +"geoId/22101" +"geoId/22103" +"geoId/22105" +"geoId/22109" +"geoId/22111" +"geoId/22113" +"geoId/22115" +"geoId/22117" +"geoId/22119" +"geoId/22121" +"geoId/22127" +"geoId/23" +"geoId/23001" +"geoId/23003" +"geoId/23005" +"geoId/23007" +"geoId/23009" +"geoId/23011" +"geoId/23013" +"geoId/23015" +"geoId/23017" +"geoId/23019" +"geoId/23021" +"geoId/23023" +"geoId/23025" +"geoId/23027" +"geoId/23029" +"geoId/23031" +"geoId/24" +"geoId/24001" +"geoId/24003" +"geoId/24005" +"geoId/24009" +"geoId/24011" +"geoId/24013" +"geoId/24015" +"geoId/24017" +"geoId/24019" +"geoId/24021" +"geoId/24023" +"geoId/24025" +"geoId/24027" +"geoId/24029" +"geoId/24031" +"geoId/24033" +"geoId/24035" +"geoId/24037" +"geoId/24039" +"geoId/24041" +"geoId/24043" +"geoId/24045" +"geoId/24047" +"geoId/24510" +"geoId/25" +"geoId/25001" +"geoId/25003" +"geoId/25005" +"geoId/25007" +"geoId/25009" +"geoId/25011" +"geoId/25013" +"geoId/25015" +"geoId/25017" +"geoId/25021" +"geoId/25023" +"geoId/25025" +"geoId/25027" +"geoId/26" +"geoId/26005" +"geoId/26007" +"geoId/26009" +"geoId/26011" +"geoId/26015" +"geoId/26017" +"geoId/26019" +"geoId/26021" +"geoId/26023" +"geoId/26025" +"geoId/26027" +"geoId/26029" +"geoId/26031" +"geoId/26033" +"geoId/26035" +"geoId/26037" +"geoId/26041" +"geoId/26043" +"geoId/26045" +"geoId/26047" +"geoId/26049" +"geoId/26051" +"geoId/26053" +"geoId/26055" +"geoId/26057" +"geoId/26059" +"geoId/26061" +"geoId/26063" +"geoId/26065" +"geoId/26067" +"geoId/26069" +"geoId/26073" +"geoId/26075" +"geoId/26077" +"geoId/26079" +"geoId/26081" +"geoId/26087" +"geoId/26089" +"geoId/26091" +"geoId/26093" +"geoId/26099" +"geoId/26101" +"geoId/26103" +"geoId/26105" +"geoId/26107" +"geoId/26109" +"geoId/26111" +"geoId/26115" +"geoId/26117" +"geoId/26121" +"geoId/26123" +"geoId/26125" +"geoId/26127" +"geoId/26129" +"geoId/26133" +"geoId/26137" +"geoId/26139" +"geoId/26143" +"geoId/26145" +"geoId/26147" +"geoId/26149" +"geoId/26151" +"geoId/26155" +"geoId/26157" +"geoId/26159" +"geoId/26161" +"geoId/26163" +"geoId/26165" +"geoId/27" +"geoId/27003" +"geoId/27005" +"geoId/27007" +"geoId/27009" +"geoId/27013" +"geoId/27015" +"geoId/27017" +"geoId/27019" +"geoId/27021" +"geoId/27025" +"geoId/27027" +"geoId/27035" +"geoId/27037" +"geoId/27039" +"geoId/27041" +"geoId/27043" +"geoId/27045" +"geoId/27047" +"geoId/27049" +"geoId/27053" +"geoId/27055" +"geoId/27057" +"geoId/27059" +"geoId/27061" +"geoId/27067" +"geoId/27071" +"geoId/27079" +"geoId/27083" +"geoId/27085" +"geoId/27091" +"geoId/27093" +"geoId/27095" +"geoId/27097" +"geoId/27099" +"geoId/27103" +"geoId/27105" +"geoId/27109" +"geoId/27111" +"geoId/27115" +"geoId/27119" +"geoId/27123" +"geoId/27127" +"geoId/27129" +"geoId/27131" +"geoId/27137" +"geoId/27139" +"geoId/27141" +"geoId/27145" +"geoId/27147" +"geoId/27153" +"geoId/27157" +"geoId/27161" +"geoId/27163" +"geoId/27169" +"geoId/27171" +"geoId/28" +"geoId/28001" +"geoId/28003" +"geoId/28007" +"geoId/28011" +"geoId/28017" +"geoId/28023" +"geoId/28025" +"geoId/28027" +"geoId/28029" +"geoId/28031" +"geoId/28033" +"geoId/28035" +"geoId/28039" +"geoId/28043" +"geoId/28045" +"geoId/28047" +"geoId/28049" +"geoId/28051" +"geoId/28057" +"geoId/28059" +"geoId/28061" +"geoId/28067" +"geoId/28071" +"geoId/28073" +"geoId/28075" +"geoId/28079" +"geoId/28081" +"geoId/28083" +"geoId/28085" +"geoId/28087" +"geoId/28089" +"geoId/28091" +"geoId/28093" +"geoId/28095" +"geoId/28099" +"geoId/28101" +"geoId/28105" +"geoId/28107" +"geoId/28109" +"geoId/28113" +"geoId/28115" +"geoId/28117" +"geoId/28121" +"geoId/28123" +"geoId/28127" +"geoId/28131" +"geoId/28133" +"geoId/28135" +"geoId/28137" +"geoId/28139" +"geoId/28141" +"geoId/28145" +"geoId/28149" +"geoId/28151" +"geoId/28153" +"geoId/28159" +"geoId/28163" +"geoId/29" +"geoId/29001" +"geoId/29003" +"geoId/29007" +"geoId/29009" +"geoId/29013" +"geoId/29015" +"geoId/29019" +"geoId/29021" +"geoId/29023" +"geoId/29027" +"geoId/29029" +"geoId/29031" +"geoId/29037" +"geoId/29043" +"geoId/29047" +"geoId/29049" +"geoId/29051" +"geoId/29053" +"geoId/29055" +"geoId/29059" +"geoId/29069" +"geoId/29071" +"geoId/29077" +"geoId/29083" +"geoId/29091" +"geoId/29095" +"geoId/29097" +"geoId/29099" +"geoId/29101" +"geoId/29105" +"geoId/29107" +"geoId/29109" +"geoId/29113" +"geoId/29119" +"geoId/29127" +"geoId/29131" +"geoId/29141" +"geoId/29143" +"geoId/29145" +"geoId/29147" +"geoId/29155" +"geoId/29157" +"geoId/29159" +"geoId/29161" +"geoId/29163" +"geoId/29165" +"geoId/29167" +"geoId/29169" +"geoId/29175" +"geoId/29177" +"geoId/29183" +"geoId/29187" +"geoId/29189" +"geoId/29195" +"geoId/29201" +"geoId/29207" +"geoId/29209" +"geoId/29213" +"geoId/29215" +"geoId/29217" +"geoId/29219" +"geoId/29221" +"geoId/29225" +"geoId/29229" +"geoId/29510" +"geoId/30" +"geoId/30013" +"geoId/30029" +"geoId/30031" +"geoId/30041" +"geoId/30047" +"geoId/30049" +"geoId/30053" +"geoId/30063" +"geoId/30067" +"geoId/30081" +"geoId/30093" +"geoId/30111" +"geoId/31" +"geoId/31001" +"geoId/31019" +"geoId/31025" +"geoId/31043" +"geoId/31047" +"geoId/31053" +"geoId/31055" +"geoId/31067" +"geoId/31079" +"geoId/31109" +"geoId/31111" +"geoId/31119" +"geoId/31141" +"geoId/31153" +"geoId/31155" +"geoId/31157" +"geoId/31159" +"geoId/31177" +"geoId/32" +"geoId/32001" +"geoId/32003" +"geoId/32005" +"geoId/32007" +"geoId/32013" +"geoId/32019" +"geoId/32023" +"geoId/32031" +"geoId/32510" +"geoId/33" +"geoId/33001" +"geoId/33003" +"geoId/33005" +"geoId/33007" +"geoId/33009" +"geoId/33011" +"geoId/33013" +"geoId/33015" +"geoId/33017" +"geoId/33019" +"geoId/34" +"geoId/34001" +"geoId/34003" +"geoId/34005" +"geoId/34007" +"geoId/34009" +"geoId/34011" +"geoId/34013" +"geoId/34015" +"geoId/34017" +"geoId/34019" +"geoId/34021" +"geoId/34023" +"geoId/34025" +"geoId/34027" +"geoId/34029" +"geoId/34031" +"geoId/34033" +"geoId/34035" +"geoId/34037" +"geoId/34039" +"geoId/34041" +"geoId/35" +"geoId/35001" +"geoId/35005" +"geoId/35009" +"geoId/35013" +"geoId/35015" +"geoId/35017" +"geoId/35025" +"geoId/35027" +"geoId/35028" +"geoId/35029" +"geoId/35031" +"geoId/35035" +"geoId/35039" +"geoId/35041" +"geoId/35043" +"geoId/35045" +"geoId/35047" +"geoId/35049" +"geoId/35053" +"geoId/35055" +"geoId/35057" +"geoId/35061" +"geoId/36" +"geoId/36001" +"geoId/36003" +"geoId/36005" +"geoId/36007" +"geoId/36009" +"geoId/36011" +"geoId/36013" +"geoId/36015" +"geoId/36017" +"geoId/36019" +"geoId/36021" +"geoId/36023" +"geoId/36025" +"geoId/36027" +"geoId/36029" +"geoId/36031" +"geoId/36033" +"geoId/36035" +"geoId/36037" +"geoId/36039" +"geoId/36043" +"geoId/36045" +"geoId/36047" +"geoId/36049" +"geoId/36051" +"geoId/36053" +"geoId/36055" +"geoId/36057" +"geoId/36059" +"geoId/36061" +"geoId/36063" +"geoId/36065" +"geoId/36067" +"geoId/36069" +"geoId/36071" +"geoId/36073" +"geoId/36075" +"geoId/36077" +"geoId/36079" +"geoId/36081" +"geoId/36083" +"geoId/36085" +"geoId/36087" +"geoId/36089" +"geoId/36091" +"geoId/36093" +"geoId/36095" +"geoId/36097" +"geoId/36099" +"geoId/36101" +"geoId/36103" +"geoId/36105" +"geoId/36107" +"geoId/36109" +"geoId/36111" +"geoId/36113" +"geoId/36115" +"geoId/36117" +"geoId/36119" +"geoId/36121" +"geoId/36123" +"geoId/37" +"geoId/37001" +"geoId/37003" +"geoId/37007" +"geoId/37009" +"geoId/37011" +"geoId/37013" +"geoId/37015" +"geoId/37017" +"geoId/37019" +"geoId/37021" +"geoId/37023" +"geoId/37025" +"geoId/37027" +"geoId/37031" +"geoId/37033" +"geoId/37035" +"geoId/37037" +"geoId/37039" +"geoId/37045" +"geoId/37047" +"geoId/37049" +"geoId/37051" +"geoId/37053" +"geoId/37055" +"geoId/37057" +"geoId/37059" +"geoId/37061" +"geoId/37063" +"geoId/37065" +"geoId/37067" +"geoId/37069" +"geoId/37071" +"geoId/37077" +"geoId/37079" +"geoId/37081" +"geoId/37083" +"geoId/37085" +"geoId/37087" +"geoId/37089" +"geoId/37091" +"geoId/37093" +"geoId/37097" +"geoId/37099" +"geoId/37101" +"geoId/37105" +"geoId/37107" +"geoId/37109" +"geoId/37111" +"geoId/37113" +"geoId/37115" +"geoId/37117" +"geoId/37119" +"geoId/37123" +"geoId/37125" +"geoId/37127" +"geoId/37129" +"geoId/37131" +"geoId/37133" +"geoId/37135" +"geoId/37139" +"geoId/37141" +"geoId/37145" +"geoId/37147" +"geoId/37149" +"geoId/37151" +"geoId/37153" +"geoId/37155" +"geoId/37157" +"geoId/37159" +"geoId/37161" +"geoId/37163" +"geoId/37165" +"geoId/37167" +"geoId/37169" +"geoId/37171" +"geoId/37175" +"geoId/37179" +"geoId/37181" +"geoId/37183" +"geoId/37185" +"geoId/37189" +"geoId/37191" +"geoId/37193" +"geoId/37195" +"geoId/37197" +"geoId/37199" +"geoId/38" +"geoId/38015" +"geoId/38017" +"geoId/38035" +"geoId/38059" +"geoId/38077" +"geoId/38089" +"geoId/38093" +"geoId/38101" +"geoId/38105" +"geoId/39" +"geoId/39001" +"geoId/39003" +"geoId/39005" +"geoId/39007" +"geoId/39009" +"geoId/39011" +"geoId/39013" +"geoId/39015" +"geoId/39017" +"geoId/39019" +"geoId/39021" +"geoId/39023" +"geoId/39025" +"geoId/39027" +"geoId/39029" +"geoId/39031" +"geoId/39033" +"geoId/39035" +"geoId/39037" +"geoId/39039" +"geoId/39041" +"geoId/39043" +"geoId/39045" +"geoId/39047" +"geoId/39049" +"geoId/39051" +"geoId/39053" +"geoId/39055" +"geoId/39057" +"geoId/39059" +"geoId/39061" +"geoId/39063" +"geoId/39065" +"geoId/39067" +"geoId/39069" +"geoId/39071" +"geoId/39073" +"geoId/39075" +"geoId/39077" +"geoId/39079" +"geoId/39081" +"geoId/39083" +"geoId/39085" +"geoId/39087" +"geoId/39089" +"geoId/39091" +"geoId/39093" +"geoId/39095" +"geoId/39097" +"geoId/39099" +"geoId/39101" +"geoId/39103" +"geoId/39105" +"geoId/39107" +"geoId/39109" +"geoId/39111" +"geoId/39113" +"geoId/39117" +"geoId/39119" +"geoId/39123" +"geoId/39125" +"geoId/39127" +"geoId/39129" +"geoId/39131" +"geoId/39133" +"geoId/39135" +"geoId/39137" +"geoId/39139" +"geoId/39141" +"geoId/39143" +"geoId/39145" +"geoId/39147" +"geoId/39149" +"geoId/39151" +"geoId/39153" +"geoId/39155" +"geoId/39157" +"geoId/39159" +"geoId/39161" +"geoId/39165" +"geoId/39167" +"geoId/39169" +"geoId/39171" +"geoId/39173" +"geoId/39175" +"geoId/40" +"geoId/40001" +"geoId/40009" +"geoId/40013" +"geoId/40015" +"geoId/40017" +"geoId/40019" +"geoId/40021" +"geoId/40023" +"geoId/40027" +"geoId/40031" +"geoId/40037" +"geoId/40039" +"geoId/40041" +"geoId/40047" +"geoId/40049" +"geoId/40051" +"geoId/40065" +"geoId/40071" +"geoId/40079" +"geoId/40081" +"geoId/40083" +"geoId/40087" +"geoId/40089" +"geoId/40091" +"geoId/40095" +"geoId/40097" +"geoId/40101" +"geoId/40109" +"geoId/40111" +"geoId/40113" +"geoId/40115" +"geoId/40119" +"geoId/40121" +"geoId/40123" +"geoId/40125" +"geoId/40131" +"geoId/40133" +"geoId/40135" +"geoId/40137" +"geoId/40139" +"geoId/40143" +"geoId/40145" +"geoId/40147" +"geoId/40149" +"geoId/40153" +"geoId/41" +"geoId/41003" +"geoId/41005" +"geoId/41007" +"geoId/41009" +"geoId/41011" +"geoId/41013" +"geoId/41015" +"geoId/41017" +"geoId/41019" +"geoId/41027" +"geoId/41029" +"geoId/41031" +"geoId/41033" +"geoId/41035" +"geoId/41039" +"geoId/41041" +"geoId/41043" +"geoId/41045" +"geoId/41047" +"geoId/41051" +"geoId/41053" +"geoId/41057" +"geoId/41059" +"geoId/41061" +"geoId/41065" +"geoId/41067" +"geoId/41071" +"geoId/42" +"geoId/42001" +"geoId/42003" +"geoId/42005" +"geoId/42007" +"geoId/42009" +"geoId/42011" +"geoId/42013" +"geoId/42015" +"geoId/42017" +"geoId/42019" +"geoId/42021" +"geoId/42025" +"geoId/42027" +"geoId/42029" +"geoId/42031" +"geoId/42033" +"geoId/42035" +"geoId/42037" +"geoId/42039" +"geoId/42041" +"geoId/42043" +"geoId/42045" +"geoId/42047" +"geoId/42049" +"geoId/42051" +"geoId/42055" +"geoId/42059" +"geoId/42061" +"geoId/42063" +"geoId/42065" +"geoId/42067" +"geoId/42069" +"geoId/42071" +"geoId/42073" +"geoId/42075" +"geoId/42077" +"geoId/42079" +"geoId/42081" +"geoId/42083" +"geoId/42085" +"geoId/42087" +"geoId/42089" +"geoId/42091" +"geoId/42093" +"geoId/42095" +"geoId/42097" +"geoId/42099" +"geoId/42101" +"geoId/42103" +"geoId/42105" +"geoId/42107" +"geoId/42109" +"geoId/42111" +"geoId/42115" +"geoId/42117" +"geoId/42119" +"geoId/42121" +"geoId/42123" +"geoId/42125" +"geoId/42127" +"geoId/42129" +"geoId/42131" +"geoId/42133" +"geoId/44" +"geoId/44001" +"geoId/44003" +"geoId/44005" +"geoId/44007" +"geoId/44009" +"geoId/45" +"geoId/45001" +"geoId/45003" +"geoId/45007" +"geoId/45009" +"geoId/45011" +"geoId/45013" +"geoId/45015" +"geoId/45019" +"geoId/45021" +"geoId/45023" +"geoId/45025" +"geoId/45027" +"geoId/45029" +"geoId/45031" +"geoId/45033" +"geoId/45035" +"geoId/45037" +"geoId/45039" +"geoId/45041" +"geoId/45043" +"geoId/45045" +"geoId/45047" +"geoId/45049" +"geoId/45051" +"geoId/45053" +"geoId/45055" +"geoId/45057" +"geoId/45059" +"geoId/45061" +"geoId/45063" +"geoId/45067" +"geoId/45069" +"geoId/45071" +"geoId/45073" +"geoId/45075" +"geoId/45077" +"geoId/45079" +"geoId/45081" +"geoId/45083" +"geoId/45085" +"geoId/45087" +"geoId/45089" +"geoId/45091" +"geoId/46" +"geoId/46005" +"geoId/46011" +"geoId/46013" +"geoId/46029" +"geoId/46035" +"geoId/46065" +"geoId/46081" +"geoId/46083" +"geoId/46093" +"geoId/46099" +"geoId/46103" +"geoId/46127" +"geoId/46135" +"geoId/47" +"geoId/47001" +"geoId/47003" +"geoId/47009" +"geoId/47011" +"geoId/47013" +"geoId/47017" +"geoId/47019" +"geoId/47021" +"geoId/47023" +"geoId/47025" +"geoId/47029" +"geoId/47031" +"geoId/47035" +"geoId/47037" +"geoId/47041" +"geoId/47043" +"geoId/47045" +"geoId/47047" +"geoId/47049" +"geoId/47051" +"geoId/47053" +"geoId/47055" +"geoId/47057" +"geoId/47059" +"geoId/47063" +"geoId/47065" +"geoId/47069" +"geoId/47071" +"geoId/47073" +"geoId/47075" +"geoId/47077" +"geoId/47079" +"geoId/47081" +"geoId/47085" +"geoId/47089" +"geoId/47091" +"geoId/47093" +"geoId/47097" +"geoId/47099" +"geoId/47103" +"geoId/47105" +"geoId/47107" +"geoId/47109" +"geoId/47111" +"geoId/47113" +"geoId/47115" +"geoId/47117" +"geoId/47119" +"geoId/47123" +"geoId/47125" +"geoId/47129" +"geoId/47131" +"geoId/47133" +"geoId/47139" +"geoId/47141" +"geoId/47143" +"geoId/47145" +"geoId/47147" +"geoId/47149" +"geoId/47151" +"geoId/47153" +"geoId/47155" +"geoId/47157" +"geoId/47159" +"geoId/47163" +"geoId/47165" +"geoId/47167" +"geoId/47171" +"geoId/47173" +"geoId/47177" +"geoId/47179" +"geoId/47181" +"geoId/47183" +"geoId/47185" +"geoId/47187" +"geoId/47189" +"geoId/48" +"geoId/48001" +"geoId/48003" +"geoId/48005" +"geoId/48007" +"geoId/48013" +"geoId/48015" +"geoId/48019" +"geoId/48021" +"geoId/48025" +"geoId/48027" +"geoId/48029" +"geoId/48035" +"geoId/48037" +"geoId/48039" +"geoId/48041" +"geoId/48049" +"geoId/48051" +"geoId/48053" +"geoId/48055" +"geoId/48057" +"geoId/48061" +"geoId/48067" +"geoId/48071" +"geoId/48073" +"geoId/48085" +"geoId/48089" +"geoId/48091" +"geoId/48097" +"geoId/48099" +"geoId/48113" +"geoId/48117" +"geoId/48121" +"geoId/48123" +"geoId/48133" +"geoId/48135" +"geoId/48139" +"geoId/48141" +"geoId/48143" +"geoId/48145" +"geoId/48147" +"geoId/48149" +"geoId/48157" +"geoId/48161" +"geoId/48163" +"geoId/48165" +"geoId/48167" +"geoId/48171" +"geoId/48177" +"geoId/48179" +"geoId/48181" +"geoId/48183" +"geoId/48185" +"geoId/48187" +"geoId/48189" +"geoId/48199" +"geoId/48201" +"geoId/48203" +"geoId/48209" +"geoId/48213" +"geoId/48215" +"geoId/48217" +"geoId/48219" +"geoId/48221" +"geoId/48223" +"geoId/48225" +"geoId/48227" +"geoId/48231" +"geoId/48233" +"geoId/48241" +"geoId/48245" +"geoId/48249" +"geoId/48251" +"geoId/48253" +"geoId/48257" +"geoId/48259" +"geoId/48265" +"geoId/48273" +"geoId/48277" +"geoId/48279" +"geoId/48281" +"geoId/48285" +"geoId/48287" +"geoId/48289" +"geoId/48291" +"geoId/48293" +"geoId/48299" +"geoId/48303" +"geoId/48309" +"geoId/48321" +"geoId/48323" +"geoId/48325" +"geoId/48329" +"geoId/48331" +"geoId/48337" +"geoId/48339" +"geoId/48341" +"geoId/48347" +"geoId/48349" +"geoId/48353" +"geoId/48355" +"geoId/48361" +"geoId/48363" +"geoId/48365" +"geoId/48367" +"geoId/48371" +"geoId/48373" +"geoId/48375" +"geoId/48381" +"geoId/48389" +"geoId/48395" +"geoId/48397" +"geoId/48401" +"geoId/48407" +"geoId/48409" +"geoId/48415" +"geoId/48419" +"geoId/48423" +"geoId/48427" +"geoId/48439" +"geoId/48441" +"geoId/48449" +"geoId/48451" +"geoId/48453" +"geoId/48457" +"geoId/48459" +"geoId/48463" +"geoId/48465" +"geoId/48467" +"geoId/48469" +"geoId/48471" +"geoId/48473" +"geoId/48477" +"geoId/48479" +"geoId/48481" +"geoId/48485" +"geoId/48489" +"geoId/48491" +"geoId/48493" +"geoId/48497" +"geoId/48499" +"geoId/48503" +"geoId/49" +"geoId/49003" +"geoId/49005" +"geoId/49007" +"geoId/49011" +"geoId/49013" +"geoId/49021" +"geoId/49035" +"geoId/49039" +"geoId/49041" +"geoId/49043" +"geoId/49045" +"geoId/49047" +"geoId/49049" +"geoId/49051" +"geoId/49053" +"geoId/49057" +"geoId/50" +"geoId/50001" +"geoId/50003" +"geoId/50005" +"geoId/50007" +"geoId/50011" +"geoId/50015" +"geoId/50017" +"geoId/50019" +"geoId/50021" +"geoId/50023" +"geoId/50025" +"geoId/50027" +"geoId/51" +"geoId/51001" +"geoId/51003" +"geoId/51005" +"geoId/51009" +"geoId/51013" +"geoId/51015" +"geoId/51019" +"geoId/51023" +"geoId/51025" +"geoId/51027" +"geoId/51029" +"geoId/51031" +"geoId/51033" +"geoId/51035" +"geoId/51041" +"geoId/51047" +"geoId/51051" +"geoId/51053" +"geoId/51059" +"geoId/51061" +"geoId/51065" +"geoId/51067" +"geoId/51069" +"geoId/51071" +"geoId/51073" +"geoId/51075" +"geoId/51077" +"geoId/51079" +"geoId/51083" +"geoId/51085" +"geoId/51087" +"geoId/51089" +"geoId/51093" +"geoId/51095" +"geoId/51099" +"geoId/51101" +"geoId/51105" +"geoId/51107" +"geoId/51109" +"geoId/51117" +"geoId/51121" +"geoId/51127" +"geoId/51137" +"geoId/51139" +"geoId/51141" +"geoId/51143" +"geoId/51145" +"geoId/51147" +"geoId/51149" +"geoId/51153" +"geoId/51155" +"geoId/51161" +"geoId/51163" +"geoId/51165" +"geoId/51167" +"geoId/51169" +"geoId/51171" +"geoId/51173" +"geoId/51175" +"geoId/51177" +"geoId/51179" +"geoId/51185" +"geoId/51187" +"geoId/51191" +"geoId/51193" +"geoId/51195" +"geoId/51197" +"geoId/51199" +"geoId/51510" +"geoId/51520" +"geoId/51540" +"geoId/51550" +"geoId/51570" +"geoId/51590" +"geoId/51600" +"geoId/51630" +"geoId/51650" +"geoId/51660" +"geoId/51670" +"geoId/51680" +"geoId/51690" +"geoId/51700" +"geoId/51710" +"geoId/51730" +"geoId/51740" +"geoId/51750" +"geoId/51760" +"geoId/51770" +"geoId/51775" +"geoId/51790" +"geoId/51800" +"geoId/51810" +"geoId/51820" +"geoId/51840" +"geoId/53" +"geoId/53001" +"geoId/53003" +"geoId/53005" +"geoId/53007" +"geoId/53009" +"geoId/53011" +"geoId/53015" +"geoId/53017" +"geoId/53021" +"geoId/53025" +"geoId/53027" +"geoId/53029" +"geoId/53031" +"geoId/53033" +"geoId/53035" +"geoId/53037" +"geoId/53039" +"geoId/53041" +"geoId/53045" +"geoId/53047" +"geoId/53049" +"geoId/53053" +"geoId/53055" +"geoId/53057" +"geoId/53061" +"geoId/53063" +"geoId/53065" +"geoId/53067" +"geoId/53071" +"geoId/53073" +"geoId/53075" +"geoId/53077" +"geoId/54" +"geoId/54003" +"geoId/54005" +"geoId/54009" +"geoId/54011" +"geoId/54019" +"geoId/54025" +"geoId/54027" +"geoId/54029" +"geoId/54033" +"geoId/54035" +"geoId/54037" +"geoId/54039" +"geoId/54041" +"geoId/54043" +"geoId/54045" +"geoId/54047" +"geoId/54049" +"geoId/54051" +"geoId/54053" +"geoId/54055" +"geoId/54057" +"geoId/54059" +"geoId/54061" +"geoId/54065" +"geoId/54067" +"geoId/54069" +"geoId/54077" +"geoId/54079" +"geoId/54081" +"geoId/54083" +"geoId/54091" +"geoId/54097" +"geoId/54099" +"geoId/54103" +"geoId/54107" +"geoId/54109" +"geoId/55" +"geoId/55001" +"geoId/55003" +"geoId/55005" +"geoId/55009" +"geoId/55013" +"geoId/55015" +"geoId/55017" +"geoId/55019" +"geoId/55021" +"geoId/55023" +"geoId/55025" +"geoId/55027" +"geoId/55029" +"geoId/55031" +"geoId/55033" +"geoId/55035" +"geoId/55039" +"geoId/55043" +"geoId/55045" +"geoId/55047" +"geoId/55049" +"geoId/55053" +"geoId/55055" +"geoId/55057" +"geoId/55059" +"geoId/55061" +"geoId/55063" +"geoId/55065" +"geoId/55067" +"geoId/55069" +"geoId/55071" +"geoId/55073" +"geoId/55075" +"geoId/55079" +"geoId/55081" +"geoId/55083" +"geoId/55085" +"geoId/55087" +"geoId/55089" +"geoId/55093" +"geoId/55095" +"geoId/55097" +"geoId/55101" +"geoId/55103" +"geoId/55105" +"geoId/55109" +"geoId/55111" +"geoId/55113" +"geoId/55115" +"geoId/55117" +"geoId/55119" +"geoId/55121" +"geoId/55123" +"geoId/55125" +"geoId/55127" +"geoId/55131" +"geoId/55133" +"geoId/55135" +"geoId/55137" +"geoId/55139" +"geoId/55141" +"geoId/56" +"geoId/56001" +"geoId/56005" +"geoId/56007" +"geoId/56013" +"geoId/56021" +"geoId/56023" +"geoId/56025" +"geoId/56029" +"geoId/56033" +"geoId/56037" +"geoId/56039" +"geoId/56041" +"geoId/02122" +"geoId/04012" +"geoId/29186" +"geoId/35006" +"geoId/51683" +"geoId/51685" +"geoId/12086" diff --git a/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_national_after.csv b/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_national_after.csv index 9386de7793..36f61147af 100644 --- a/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_national_after.csv +++ b/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_national_after.csv @@ -1,23 +1,23 @@ -"MeasurementMethods","NumPlaces","ScalingFactors","observationPeriods","Units","MinDate","StatVar" -"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2010","Count_Person_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces" -"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Male_NativeHawaiianAndOtherPacificIslanderAlone" -"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Female_NativeHawaiianAndOtherPacificIslanderAlone" -"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Female_AsianAlone" -"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Female_BlackOrAfricanAmericanAlone" -"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2010","Count_Person_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces" -"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Male_TwoOrMoreRaces" -"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2010","Count_Person_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces" -"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Male_AsianAlone" -"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Female_TwoOrMoreRaces" -"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2010","Count_Person_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces" -"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2010","Count_Person_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces" -"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Male_AmericanIndianAndAlaskaNativeAlone" -"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2010","Count_Person_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces" -"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2010","Count_Person_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces" -"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Male_WhiteAlone" -"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Female_AmericanIndianAndAlaskaNativeAlone" -"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2010","Count_Person_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces" -"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Male_BlackOrAfricanAmericanAlone" -"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2000","Count_Person_Female_WhiteAlone" -"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2010","Count_Person_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces" -"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","1","[]","[P1Y]","[]","2010","Count_Person_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces" +"MeasurementMethods","ScalingFactors","StatVar","MinDate","NumPlaces","observationPeriods","Units" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","[]","Count_Person_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","2010","1","[P1Y]","[]" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","[]","Count_Person_Male_NativeHawaiianAndOtherPacificIslanderAlone","2000","1","[P1Y]","[]" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","[]","Count_Person_Female_NativeHawaiianAndOtherPacificIslanderAlone","2000","1","[P1Y]","[]" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","[]","Count_Person_Female_AsianAlone","2000","1","[P1Y]","[]" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","[]","Count_Person_Female_BlackOrAfricanAmericanAlone","2000","1","[P1Y]","[]" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","[]","Count_Person_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","2010","1","[P1Y]","[]" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","[]","Count_Person_Male_TwoOrMoreRaces","2000","1","[P1Y]","[]" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","[]","Count_Person_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","2010","1","[P1Y]","[]" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","[]","Count_Person_Male_AsianAlone","2000","1","[P1Y]","[]" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","[]","Count_Person_Female_TwoOrMoreRaces","2000","1","[P1Y]","[]" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","[]","Count_Person_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","2010","1","[P1Y]","[]" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","[]","Count_Person_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","2010","1","[P1Y]","[]" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","[]","Count_Person_Male_AmericanIndianAndAlaskaNativeAlone","2000","1","[P1Y]","[]" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","[]","Count_Person_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","2010","1","[P1Y]","[]" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","[]","Count_Person_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","2010","1","[P1Y]","[]" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","[]","Count_Person_Male_WhiteAlone","2000","1","[P1Y]","[]" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","[]","Count_Person_Female_AmericanIndianAndAlaskaNativeAlone","2000","1","[P1Y]","[]" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","[]","Count_Person_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","2010","1","[P1Y]","[]" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","[]","Count_Person_Male_BlackOrAfricanAmericanAlone","2000","1","[P1Y]","[]" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","[]","Count_Person_Female_WhiteAlone","2000","1","[P1Y]","[]" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","[]","Count_Person_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","2010","1","[P1Y]","[]" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_Race2000Onwards]","[]","Count_Person_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","2010","1","[P1Y]","[]" diff --git a/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_national_before.csv b/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_national_before.csv index 965c1402ce..e21d74e533 100644 --- a/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_national_before.csv +++ b/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_national_before.csv @@ -1,11 +1,11 @@ -"Units","NumPlaces","observationPeriods","ScalingFactors","MinDate","MeasurementMethods","StatVar" -"[]","1","[P1Y]","[]","1981","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_Male_AsianOrPacificIslander" -"[]","1","[P1Y]","[]","1981","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_Male_AmericanIndianAndAlaskaNativeAlone" -"[]","1","[P1Y]","[]","1981","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_Female_AmericanIndianAndAlaskaNativeAlone" -"[]","1","[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_Male_WhiteAlone" -"[]","1","[P1Y]","[]","1960","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_Female_BlackOrAfricanAmericanAlone" -"[]","1","[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_Female_NonWhite" -"[]","1","[P1Y]","[]","1960","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_Male_BlackOrAfricanAmericanAlone" -"[]","1","[P1Y]","[]","1981","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_Female_AsianOrPacificIslander" -"[]","1","[P1Y]","[]","1900","[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","Count_Person_Female_WhiteAlone" -"[]","1","[P1Y]","[]","1900","[CensusPEPSurvey_RaceUpto1999]","Count_Person_Male_NonWhite" +"MeasurementMethods","NumPlaces","StatVar","ScalingFactors","MinDate","observationPeriods","Units" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","1","Count_Person_Male_AsianOrPacificIslander","[]","1981","[P1Y]","[]" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","1","Count_Person_Male_AmericanIndianAndAlaskaNativeAlone","[]","1981","[P1Y]","[]" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","1","Count_Person_Female_AmericanIndianAndAlaskaNativeAlone","[]","1981","[P1Y]","[]" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","1","Count_Person_Male_WhiteAlone","[]","1900","[P1Y]","[]" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","1","Count_Person_Female_BlackOrAfricanAmericanAlone","[]","1960","[P1Y]","[]" +"[CensusPEPSurvey_RaceUpto1999]","1","Count_Person_Female_NonWhite","[]","1900","[P1Y]","[]" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","1","Count_Person_Male_BlackOrAfricanAmericanAlone","[]","1960","[P1Y]","[]" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","1","Count_Person_Female_AsianOrPacificIslander","[]","1981","[P1Y]","[]" +"[dcAggregate/CensusPEPSurvey_PartialAggregate_RaceUpto1999]","1","Count_Person_Female_WhiteAlone","[]","1900","[P1Y]","[]" +"[CensusPEPSurvey_RaceUpto1999]","1","Count_Person_Male_NonWhite","[]","1900","[P1Y]","[]" diff --git a/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_state_after.csv b/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_state_after.csv index 92df5957ae..884c84dd06 100644 --- a/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_state_after.csv +++ b/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_state_after.csv @@ -1,23 +1,23 @@ -"StatVar","Units","observationPeriods","MinDate","ScalingFactors","MeasurementMethods","NumPlaces" -"Count_Person_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","[P1Y]","2010","[]","[CensusPEPSurvey_Race2000Onwards]","3203" -"Count_Person_Male_NativeHawaiianAndOtherPacificIslanderAlone","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" -"Count_Person_Female_NativeHawaiianAndOtherPacificIslanderAlone","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" -"Count_Person_Female_AsianAlone","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" -"Count_Person_Female_BlackOrAfricanAmericanAlone","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" -"Count_Person_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","[]","[P1Y]","2010","[]","[CensusPEPSurvey_Race2000Onwards]","3203" -"Count_Person_Male_TwoOrMoreRaces","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" -"Count_Person_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","[P1Y]","2010","[]","[CensusPEPSurvey_Race2000Onwards]","3203" -"Count_Person_Male_AsianAlone","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" -"Count_Person_Female_TwoOrMoreRaces","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" -"Count_Person_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","[P1Y]","2010","[]","[CensusPEPSurvey_Race2000Onwards]","3203" -"Count_Person_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","[]","[P1Y]","2010","[]","[CensusPEPSurvey_Race2000Onwards]","3203" -"Count_Person_Male_AmericanIndianAndAlaskaNativeAlone","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" -"Count_Person_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","[P1Y]","2010","[]","[CensusPEPSurvey_Race2000Onwards]","3203" -"Count_Person_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","[]","[P1Y]","2010","[]","[CensusPEPSurvey_Race2000Onwards]","3203" -"Count_Person_Male_WhiteAlone","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" -"Count_Person_Female_AmericanIndianAndAlaskaNativeAlone","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" -"Count_Person_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","[P1Y]","2010","[]","[CensusPEPSurvey_Race2000Onwards]","3203" -"Count_Person_Male_BlackOrAfricanAmericanAlone","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" -"Count_Person_Female_WhiteAlone","[]","[P1Y]","2000","[]","[CensusPEPSurvey_Race2000Onwards]","3207" -"Count_Person_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","[]","[P1Y]","2010","[]","[CensusPEPSurvey_Race2000Onwards]","3203" -"Count_Person_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","[]","[P1Y]","2010","[]","[CensusPEPSurvey_Race2000Onwards]","3203" +"StatVar","MinDate","MeasurementMethods","ScalingFactors","Units","NumPlaces","observationPeriods" +"Count_Person_Female_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","2010","[CensusPEPSurvey_Race2000Onwards]","[]","[]","3203","[P1Y]" +"Count_Person_Male_NativeHawaiianAndOtherPacificIslanderAlone","2000","[CensusPEPSurvey_Race2000Onwards]","[]","[]","3207","[P1Y]" +"Count_Person_Female_NativeHawaiianAndOtherPacificIslanderAlone","2000","[CensusPEPSurvey_Race2000Onwards]","[]","[]","3207","[P1Y]" +"Count_Person_Female_AsianAlone","2000","[CensusPEPSurvey_Race2000Onwards]","[]","[]","3207","[P1Y]" +"Count_Person_Female_BlackOrAfricanAmericanAlone","2000","[CensusPEPSurvey_Race2000Onwards]","[]","[]","3207","[P1Y]" +"Count_Person_Male_AsianAloneOrInCombinationWithOneOrMoreOtherRaces","2010","[CensusPEPSurvey_Race2000Onwards]","[]","[]","3203","[P1Y]" +"Count_Person_Male_TwoOrMoreRaces","2000","[CensusPEPSurvey_Race2000Onwards]","[]","[]","3207","[P1Y]" +"Count_Person_Male_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","2010","[CensusPEPSurvey_Race2000Onwards]","[]","[]","3203","[P1Y]" +"Count_Person_Male_AsianAlone","2000","[CensusPEPSurvey_Race2000Onwards]","[]","[]","3207","[P1Y]" +"Count_Person_Female_TwoOrMoreRaces","2000","[CensusPEPSurvey_Race2000Onwards]","[]","[]","3207","[P1Y]" +"Count_Person_Male_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","2010","[CensusPEPSurvey_Race2000Onwards]","[]","[]","3203","[P1Y]" +"Count_Person_Female_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces","2010","[CensusPEPSurvey_Race2000Onwards]","[]","[]","3203","[P1Y]" +"Count_Person_Male_AmericanIndianAndAlaskaNativeAlone","2000","[CensusPEPSurvey_Race2000Onwards]","[]","[]","3207","[P1Y]" +"Count_Person_Male_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","2010","[CensusPEPSurvey_Race2000Onwards]","[]","[]","3203","[P1Y]" +"Count_Person_Female_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces","2010","[CensusPEPSurvey_Race2000Onwards]","[]","[]","3203","[P1Y]" +"Count_Person_Male_WhiteAlone","2000","[CensusPEPSurvey_Race2000Onwards]","[]","[]","3207","[P1Y]" +"Count_Person_Female_AmericanIndianAndAlaskaNativeAlone","2000","[CensusPEPSurvey_Race2000Onwards]","[]","[]","3207","[P1Y]" +"Count_Person_Male_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","2010","[CensusPEPSurvey_Race2000Onwards]","[]","[]","3203","[P1Y]" +"Count_Person_Male_BlackOrAfricanAmericanAlone","2000","[CensusPEPSurvey_Race2000Onwards]","[]","[]","3207","[P1Y]" +"Count_Person_Female_WhiteAlone","2000","[CensusPEPSurvey_Race2000Onwards]","[]","[]","3207","[P1Y]" +"Count_Person_Female_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces","2010","[CensusPEPSurvey_Race2000Onwards]","[]","[]","3203","[P1Y]" +"Count_Person_Female_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces","2010","[CensusPEPSurvey_Race2000Onwards]","[]","[]","3203","[P1Y]" diff --git a/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_state_before.csv b/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_state_before.csv index a52f73701f..c6eeb5b233 100644 --- a/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_state_before.csv +++ b/scripts/us_census/pep/us_pep_sexrace/golden_data/golden_summary_report_state_before.csv @@ -1,9 +1,9 @@ -"ScalingFactors","observationPeriods","MeasurementMethods","StatVar","NumPlaces","Units","MinDate" -"[]","[P1Y]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_Male_AsianOrPacificIslander","3192","[]","1981" -"[]","[P1Y]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_Male_AmericanIndianAndAlaskaNativeAlone","3192","[]","1981" -"[]","[P1Y]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_Female_AmericanIndianAndAlaskaNativeAlone","3192","[]","1981" -"[]","[P1Y]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_Male_WhiteAlone","3212","[]","1970" -"[]","[P1Y]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_Female_BlackOrAfricanAmericanAlone","3212","[]","1970" -"[]","[P1Y]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_Male_BlackOrAfricanAmericanAlone","3212","[]","1970" -"[]","[P1Y]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_Female_AsianOrPacificIslander","3192","[]","1981" -"[]","[P1Y]","[CensusPEPSurvey_RaceUpto1999]","Count_Person_Female_WhiteAlone","3212","[]","1970" +"NumPlaces","StatVar","ScalingFactors","MeasurementMethods","MinDate","observationPeriods","Units" +"3192","Count_Person_Male_AsianOrPacificIslander","[]","[CensusPEPSurvey_RaceUpto1999]","1981","[P1Y]","[]" +"3192","Count_Person_Male_AmericanIndianAndAlaskaNativeAlone","[]","[CensusPEPSurvey_RaceUpto1999]","1981","[P1Y]","[]" +"3192","Count_Person_Female_AmericanIndianAndAlaskaNativeAlone","[]","[CensusPEPSurvey_RaceUpto1999]","1981","[P1Y]","[]" +"3212","Count_Person_Male_WhiteAlone","[]","[CensusPEPSurvey_RaceUpto1999]","1970","[P1Y]","[]" +"3212","Count_Person_Female_BlackOrAfricanAmericanAlone","[]","[CensusPEPSurvey_RaceUpto1999]","1970","[P1Y]","[]" +"3212","Count_Person_Male_BlackOrAfricanAmericanAlone","[]","[CensusPEPSurvey_RaceUpto1999]","1970","[P1Y]","[]" +"3192","Count_Person_Female_AsianOrPacificIslander","[]","[CensusPEPSurvey_RaceUpto1999]","1981","[P1Y]","[]" +"3212","Count_Person_Female_WhiteAlone","[]","[CensusPEPSurvey_RaceUpto1999]","1970","[P1Y]","[]" diff --git a/scripts/us_census/pep/us_pep_sexrace/validation_config.json b/scripts/us_census/pep/us_pep_sexrace/validation_config.json index cd9c86f206..f4ef7d6cd0 100644 --- a/scripts/us_census/pep/us_pep_sexrace/validation_config.json +++ b/scripts/us_census/pep/us_pep_sexrace/validation_config.json @@ -8,8 +8,8 @@ "params": { "threshold": 0.1} }, { - "rule_id": "check_goldens_national", - "description": "Validates national and state-level 2000+ data against its golden summary report.", + "rule_id": "check_goldens_national_after_2000", + "description": "Validates national-level 2000+ data against its golden summary report.", "validator": "GOLDENS_CHECK", "params": { "golden_files": "../../../../golden_data/golden_summary_report_national_after.csv", @@ -17,8 +17,8 @@ } }, { - "rule_id": "check_goldens_before_2000", - "description": "Validates data before 2000 against its golden summary report.", + "rule_id": "check_goldens_national_before_2000", + "description": "Validates national-level before 2000 data against its golden summary report.", "validator": "GOLDENS_CHECK", "params": { "golden_files": "../../../../golden_data/golden_summary_report_national_before.csv", @@ -26,8 +26,8 @@ } }, { - "rule_id": "check_goldens_after_2000", - "description": "Validates county-level 2000+ data against its golden summary report.", + "rule_id": "check_goldens_state_county_after_2000", + "description": "Validates state and county-level 2000+ data against its golden summary report.", "validator": "GOLDENS_CHECK", "params": { "golden_files": "../../../../golden_data/golden_summary_report_state_after.csv", @@ -35,13 +35,49 @@ } }, { - "rule_id": "check_goldens_after_2000", - "description": "Validates county-level 2000+ data against its golden summary report.", + "rule_id": "check_goldens_state_county_before_2000", + "description": "Validates state and county-level before 2000 data against its golden summary report.", "validator": "GOLDENS_CHECK", "params": { "golden_files": "../../../../golden_data/golden_summary_report_state_before.csv", "input_files": "../../input3/genmcf/summary_report.csv" } + }, + { + "rule_id": "check_goldens_output_csv_national_after", + "description": "Verifies the generated national after 2000 output CSV data matches established critical golden records.", + "validator": "GOLDENS_CHECK", + "params": { + "golden_files": "../../../../golden_data/golden_observations_national_after.csv", + "input_files": "../../../../output_files/final/national_after_2000.csv" + } + }, + { + "rule_id": "check_goldens_output_csv_national_before", + "description": "Verifies the generated national before 2000 output CSV data matches established critical golden records.", + "validator": "GOLDENS_CHECK", + "params": { + "golden_files": "../../../../golden_data/golden_observations_national_before.csv", + "input_files": "../../../../output_files/final/national_before_2000.csv" + } + }, + { + "rule_id": "check_goldens_output_csv_state_county_after", + "description": "Verifies the generated state and county after 2000 output CSV data matches established critical golden records.", + "validator": "GOLDENS_CHECK", + "params": { + "golden_files": "../../../../golden_data/golden_observations_state_after.csv", + "input_files": "../../../../output_files/final/state_county_after_2000.csv" + } + }, + { + "rule_id": "check_goldens_output_csv_state_county_before", + "description": "Verifies the generated state and county before 2000 output CSV data matches established critical golden records.", + "validator": "GOLDENS_CHECK", + "params": { + "golden_files": "../../../../golden_data/golden_observations_state_before.csv", + "input_files": "../../../../output_files/final/state_county_before_2000.csv" + } } ] } From 97bb8a6729fa729fde6a0cdc9e4692d547650c35 Mon Sep 17 00:00:00 2001 From: Nivedita Singh Date: Sun, 26 Jul 2026 18:20:20 +0000 Subject: [PATCH 11/13] modified goldens --- .../pep/us_pep_sex/golden_data/golden_observations.csv | 2 ++ .../us_census/pep/us_pep_sex/validation_config.json | 10 ++++++++++ 2 files changed, 12 insertions(+) create mode 100644 scripts/us_census/pep/us_pep_sex/golden_data/golden_observations.csv diff --git a/scripts/us_census/pep/us_pep_sex/golden_data/golden_observations.csv b/scripts/us_census/pep/us_pep_sex/golden_data/golden_observations.csv new file mode 100644 index 0000000000..caef2cbbdb --- /dev/null +++ b/scripts/us_census/pep/us_pep_sex/golden_data/golden_observations.csv @@ -0,0 +1,2 @@ +"geo_ID" +"country/USA" diff --git a/scripts/us_census/pep/us_pep_sex/validation_config.json b/scripts/us_census/pep/us_pep_sex/validation_config.json index 7dff19a4b8..81974feab3 100644 --- a/scripts/us_census/pep/us_pep_sex/validation_config.json +++ b/scripts/us_census/pep/us_pep_sex/validation_config.json @@ -15,8 +15,18 @@ "params": { "golden_files": "../../../../golden_data/golden_summary_report.csv" } + }, + { + "rule_id": "Check_goldens_output_csv", + "description": "Verifies the generated output CSV data matches established critical golden records", + "validator": "GOLDENS_CHECK", + "params": { + "golden_files": "../../../../golden_data/golden_observations.csv", + "input_files": "../../../../output/population_estimate_sex.csv" + } } ] } + From 696b8aae0c4ae34fd0f198745a136db502cbef4a Mon Sep 17 00:00:00 2001 From: Nivedita Singh Date: Sun, 26 Jul 2026 18:27:07 +0000 Subject: [PATCH 12/13] modified goldens --- .../golden_data/golden_observations.csv | 2 ++ .../golden_data/golden_summary_report.csv | 10 +++++++--- .../validation_config.json | 11 +++++++++++ 3 files changed, 20 insertions(+), 3 deletions(-) create mode 100644 scripts/us_census/pep/monthly_population_estimate/golden_data/golden_observations.csv diff --git a/scripts/us_census/pep/monthly_population_estimate/golden_data/golden_observations.csv b/scripts/us_census/pep/monthly_population_estimate/golden_data/golden_observations.csv new file mode 100644 index 0000000000..8fae633be9 --- /dev/null +++ b/scripts/us_census/pep/monthly_population_estimate/golden_data/golden_observations.csv @@ -0,0 +1,2 @@ +"Location" +"country/USA" diff --git a/scripts/us_census/pep/monthly_population_estimate/golden_data/golden_summary_report.csv b/scripts/us_census/pep/monthly_population_estimate/golden_data/golden_summary_report.csv index 2e6f7d2d57..eb3231ef42 100644 --- a/scripts/us_census/pep/monthly_population_estimate/golden_data/golden_summary_report.csv +++ b/scripts/us_census/pep/monthly_population_estimate/golden_data/golden_summary_report.csv @@ -1,3 +1,7 @@ -"NumPlaces","StatVar","ScalingFactors","observationPeriods","Units","MeasurementMethods","MinDate" -"1","Count_Person_Civilian_NonInstitutionalized","[]","[P1M]","[]","[CensusPEPSurvey]","1990-04" -"1","Count_Person_ResidesInHousehold","[]","[P1M]","[]","[CensusPEPSurvey]","2010-04" +"NumPlaces","MeasurementMethods","observationPeriods","Units","MinDate","ScalingFactors","StatVar" +"1","[CensusPEPSurvey]","[P1M]","[]","1980-04","[]","Count_Person_USResident" +"1","[CensusPEPSurvey]","[P1M]","[]","1990-04","[]","Count_Person_Civilian_NonInstitutionalized" +"1","[dcAggregate/CensusPEPSurvey]","[P1M]","[]","1980-04","[]","Count_Person_InUSArmedForcesOverseas" +"1","[CensusPEPSurvey]","[P1M]","[]","2010-04","[]","Count_Person_ResidesInHousehold" +"1","[CensusPEPSurvey]","[P1M]","[]","1980-04","[]","Count_Person_Civilian" +"1","[CensusPEPSurvey]","[P1M]","[]","1980-04","[]","Count_Person_USResidentOrInUSArmedForcesOverseas" diff --git a/scripts/us_census/pep/monthly_population_estimate/validation_config.json b/scripts/us_census/pep/monthly_population_estimate/validation_config.json index e3f52fbeeb..08656bdd6c 100644 --- a/scripts/us_census/pep/monthly_population_estimate/validation_config.json +++ b/scripts/us_census/pep/monthly_population_estimate/validation_config.json @@ -15,7 +15,18 @@ "params": { "golden_files": "../../../../golden_data/golden_summary_report.csv" } + }, + { + "rule_id": "Check_goldens_output_csv", + "description": "Verifies the generated output CSV data matches established critical golden records", + "validator": "GOLDENS_CHECK", + "params": { + "golden_files": "../../../../golden_data/golden_observations.csv", + "input_files": "../../../../output/USA_Population_Count.csv" + } } ] } + + From 6a63d30ccc51cf18fed378942324a7b92141cfb3 Mon Sep 17 00:00:00 2001 From: Nivedita Singh Date: Sun, 26 Jul 2026 18:40:33 +0000 Subject: [PATCH 13/13] modified goldens --- .../monthly_population_estimate/preprocess.py | 1420 ++++++++--------- 1 file changed, 710 insertions(+), 710 deletions(-) diff --git a/scripts/us_census/pep/monthly_population_estimate/preprocess.py b/scripts/us_census/pep/monthly_population_estimate/preprocess.py index e243cde387..db311a6efa 100644 --- a/scripts/us_census/pep/monthly_population_estimate/preprocess.py +++ b/scripts/us_census/pep/monthly_population_estimate/preprocess.py @@ -1,710 +1,710 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -""" A Script to process USA Census PEP monthly population data - from the datasets in the provided local path. - Typical usage: - 1. python3 preprocess.py - 2. python3 preprocess.py -mode='download' - 3. python3 preprocess.py -mode='process' -""" -from dataclasses import replace -import os -import re -import warnings -import requests -import numpy as np -import time -import json -import sys -from datetime import datetime as dt - -warnings.filterwarnings('ignore') -import pandas as pd -from absl import app -from absl import flags -from absl import logging - -pd.set_option("display.max_columns", None) - -FLAGS = flags.FLAGS -flags.DEFINE_string('mode', '', 'Options: download or process') -_MODULE_DIR = os.path.dirname(os.path.abspath(__file__)) -_INPUT_FILE_PATH = os.path.join(_MODULE_DIR, 'input_files') -default_input_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), - "input_files") -flags.DEFINE_string("input_path", default_input_path, "Import Data File's List") -_HEADER = 1 -_SCALING_FACTOR_TXT_FILE = 1000 - -#Creating folder to store the raw data from source -raw_data_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), - "raw_data") -if not os.path.exists(raw_data_path): - os.mkdir(raw_data_path) - -_MCF_TEMPLATE = ("Node: dcid:{dcid}\n" - "typeOf: dcs:StatisticalVariable\n" - "populationType: dcs:Person\n" - "statType: dcs:measuredValue\n" - "measuredProperty: dcs:count\n" - "{xtra_pvs}\n") - -_TMCF_TEMPLATE = ("Node: E:USA_Population_Count->E{}\n" - "typeOf: dcs:StatVarObservation\n" - "variableMeasured: dcs:{}\n" - "measurementMethod: dcs:{}\n" - "observationAbout: C:USA_Population_Count->Location\n" - "observationDate: C:USA_Population_Count->Date\n" - "observationPeriod: \"P1M\"\n" - "value: C:USA_Population_Count->{}\n") - - -def _extract_year(val: str) -> tuple: - """ - This Methods returns true,year from the value contains year. - Otherwise false,'' - - Arguments: - val (str) : A string value contains data below format - yyyy or yyyy [1] or .MM 1 - Returns: - res (tuple) : Tuple with boolean value and year value or None - """ - # Extracting 0th index value from the val. - # val contains yyyy or yyyy [1] or .MM 1 - val = str(val).strip().split(' ', maxsplit=1)[0] - if val.isnumeric() and len(val) == 4: - return True, val - # Exceptional Case: val contains 20091 - # 2009 is year and 1 is Date. - # Extracting just year from above format - if val.isnumeric() and len(val) == 5: - return True, val[:4] - return False, None - - -def _return_year(col: str) -> str: - """ - This Methods returns year value if col contains year. - Otherwise pandas NA value. - - Arguments: - col (str) : A string value contains data below format - yyyy or yyyy [1] or .MM 1 - Returns: - res (str) : String value with year yyyy or pandas NA value - """ - res, out = _extract_year(col) - if res: - return out - return pd.NA - - -def _return_month(col: str) -> str: - """ - This Methods returns month and date value if col contains month, date. - Otherwise pandas NA value. - - Arguments: - col (str) : A string value contains data below format - yyyy or yyyy [1] or .MM 1 - Returns: - res (str) : String value with month mm or pandas NA value - """ - res = _extract_year(col) - if res[0]: - return pd.NA - return col - - -def _year_range(col: pd.Series) -> str: - """ - This method returns year range from the dataframe - column. - Example: - col(input): - 2000-04 - 2000-05 - 2000-06 - 2000-07 - 2000-08 - ... - 2010-08 - 2010-09 - 2010-10 - 2010-11 - 2010-12 - output: - "2010-2000" - - Arguments: - col (Series) : DataFrame Column of dtype str - - Returns: - year_range (str) : String of Concatenated max and min year values - """ - year_range = None - max_year = max(pd.to_datetime(col, errors='coerce').dt.year) - min_year = min(pd.to_datetime(col, errors='coerce').dt.year) - year_range = str(max_year) + '-' + str(min_year) - return year_range - - -def _replace_name(final_cols: list) -> list: - """ - List provided inorder to change the name as required by output. - - Arguments: - final_cols (list) : List of dtype str - - Returns: - final_cols (list) : List of dtype str - """ - final_cols = [ - "Count_Person_" + (col.replace("Population ", "").replace( - "Population", "").replace(" Plus ", "Or").replace( - "Armed Forces Overseas", "InUSArmedForcesOverseas").replace( - "Household", "ResidesInHousehold").replace( - "Resident", "USResident").replace( - "Noninstitutionalized", - "NonInstitutionalized").strip().replace( - " ", "_").replace("__", "_")) - for col in final_cols - ] - - return final_cols - - -class CensusUSACountryPopulation: - """ - CensusUSACountryPopulation class provides methods - to load the data into dataframes, process, cleans - dataframes and finally creates single cleaned csv - file. - Also provides methods to generate MCF and TMCF - Files using pre-defined templates. - """ - - def __init__(self, input_path: str, csv_file_path: str, mcf_file_path: str, - tmcf_file_path: str) -> None: - self.input_path = input_path #added - self._cleaned_csv_file_path = csv_file_path - self._mcf_file_path = mcf_file_path - self._tmcf_file_path = tmcf_file_path - self._df = None - self._file_name = None - self._scaling_factor = 1 - # Finding the Dir Path - if not os.path.exists(os.path.dirname(self._cleaned_csv_file_path)): - os.mkdir(os.path.dirname(self._cleaned_csv_file_path)) - - def _load_data(self, file: str) -> pd.DataFrame: - """ - This Methods loads the data into pandas Dataframe - using the provided file path and Returns the Dataframe. - - Arguments: - file (str) : String of Dataset File Path - Returns: - df (DataFrame) : DataFrame with loaded dataset - """ - df = None - self._file_name = os.path.basename(file) - if ".xls" in file: - df = pd.read_excel(file) - return df - - def _transform_df(self, df: pd.DataFrame, file: str) -> pd.DataFrame: - """ - This method transforms Dataframe into cleaned DF. - Also, It Creates new columns, remove duplicates, - Standaradize headers to SV's, Mulitply with - scaling factor. - - Arguments: - df (DataFrame) : DataFrame - - Returns: - df (DataFrame) : DataFrame. - """ - final_cols = [col for col in df.columns if 'year' not in col.lower()] - # _return_year("1999") or _return_year("1999 [1]"): 1999 - # _return_year(".07 1"): pd.NA - df['Year'] = df['Year and Month'].apply(_return_year).fillna( - method='ffill', limit=12) - # _return_year("1999") or _return_year("1999 [1]"): pd.NA - # _return_year(".07 1"): 07 - df['Month'] = df['Year and Month'].apply(_return_month) - df.dropna(subset=['Year', 'Month'], inplace=True) - - # Creating new Date Column and Final Date format is yyyy-mm - df['Date'] = df['Year'] + df['Month'] - df['Date'] = df['Date'].str.replace(".", "").str.replace( - " ", "").str.replace("*", "") - df['Date'] = pd.to_datetime(df['Date'], - format='%Y%B%d', - errors="coerce") - # dropping 2010, 2020 overlapping values from different files - # dropping < 2000 files having some text in the value column - - if 'nat-total.xlsx' in file: - df = df[df['Resident Population Plus Armed Forces Overseas'] != - 'with'] - if 'na-est2009-01.xlsx' in file: - df = df[df['Date'] < dt(2010, 4, 1)] - if 'na-est2019-01.xlsx' in file: - df = df[df['Date'] < dt(2020, 4, 1)] - df.dropna(subset=['Date'], inplace=True) - df['Date'] = df['Date'].dt.strftime('%Y-%m') - df.drop_duplicates(subset=['Date'], inplace=True) - - # Deriving new SV Count_Person_InArmedForcesOverseas as - # subtracting Resident Population from - # Resident Population Plus Armed Forces Overseas - df['Count_Person_InUSArmedForcesOverseas'] = df[ - 'Resident Population Plus Armed Forces Overseas'].astype( - 'int') - df['Resident Population'].astype('int') - computed_cols = ["Date", "Count_Person_InUSArmedForcesOverseas"] - - # Selecting Computed and Final Columns from the DF. - df = df[computed_cols + final_cols] - - # Renaming DF Headers with ref to SV's Naming Standards. - final_cols_list = _replace_name(final_cols) - - final_cols_list = computed_cols + final_cols_list - df.columns = final_cols_list - - # Creating Location column with default value country/USA. - # as the dataset is all about USA country level only. - df.insert(1, "Location", "country/USA", True) - df.insert(0, 'date_range', _year_range(df['Date']), True) - return df - - def _transform_data(self, df: pd.DataFrame, file: str) -> None: - """ - This method calls the required functions to transform - the dataframe and saves the final cleaned data in - CSV file format. - - Arguments: - df (DataFrame): Input DataFrame containing the raw data to be transformed. - - Returns: - bool: Returns True if the transformation and file saving are successful, - False if an error occurs during processing. - """ - - try: - df = self._transform_df(df, file) - - if self._df is None: - self._df = df - else: - self._df = pd.concat([self._df, df], ignore_index=True) - - self._df.sort_values(by=['Date', 'date_range'], - ascending=False, - inplace=True) - # Data for 2020 exists in two sources, causing overlap. We'll eliminate duplicates - self._df.drop_duplicates("Date", keep="last", inplace=True) - self._df.drop(['date_range'], axis=1, inplace=True) - float_col = self._df.select_dtypes(include=['float64']) - for col in float_col.columns.values: - try: - self._df[col] = self._df[col].astype('int64') - except: - pass - self._df.to_csv(self._cleaned_csv_file_path, index=False) - except Exception as e: - logging.fatal(f'Error when processing file:-{e}') - return True - - def _generate_mcf(self, df_cols: list) -> None: - """ - This method generates MCF file w.r.t - dataframe headers and defined MCF template - - Arguments: - df_cols (list) : List of DataFrame Columns - - Returns: - None - """ - try: - mcf_nodes = [] - for col in df_cols: - pvs = [] - residence = "" - status = "" - armedf = "" - if col.lower() in ["date", "location"]: - continue - if re.findall('Resident', col): - if re.findall('InUSArmedForcesOverseas', col): - status = "USResident__InUSArmedForcesOverseas" - else: - status = "USResident" - residence = "residentStatus: dcs:" + status - pvs.append(residence) - elif re.findall('ArmedForces', col): - residence = "residentStatus: dcs:" + "InUSArmedForcesOverseas" - pvs.append(residence) - if re.findall('Resides', col): - if re.findall('Household', col): - residence = "residenceType: dcs:" + "Household" - pvs.append(residence) - if re.findall('Civilian', col): - armedf = "armedForcesStatus: dcs:Civilian" - pvs.append(armedf) - if re.findall('NonInstitutionalized', col): - residence = ("institutionalization: dcs:" + - "USC_NonInstitutionalized") - pvs.append(residence) - if re.findall('Count_Person_InUSArmedForcesOverseas', col): - armedf = "armedForcesStatus: dcs:InArmedForces" - pvs.append(armedf) - node = _MCF_TEMPLATE.format(dcid=col, xtra_pvs='\n'.join(pvs)) - mcf_nodes.append(node) - - mcf = '\n'.join(mcf_nodes) - - # Writing Genereated MCF to local path. - with open(self._mcf_file_path, 'w+', encoding='utf-8') as f_out: - f_out.write(mcf.rstrip('\n')) - except Exception as e: - logging.fatal(f'Error when Generating MCF file:-{e}') - - def _generate_tmcf(self, df_cols: list) -> None: - """ - This method generates TMCF file w.r.t - dataframe headers and defined TMCF template - - Arguments: - df_cols (list) : List of DataFrame Columns - - Returns: - None - """ - - i = 0 - measure = "" - tmcf = "" - for col in df_cols: - if col.lower() in ["date", "location"]: - continue - if re.findall('Count_Person_InUSArmedForcesOverseas', col): - measure = "dcAggregate/CensusPEPSurvey" - else: - measure = "CensusPEPSurvey" - tmcf = tmcf + _TMCF_TEMPLATE.format(i, col, measure, col) + "\n" - i = i + 1 - - # Writing Genereated TMCF to local path. - with open(self._tmcf_file_path, 'w+', encoding='utf-8') as f_out: - f_out.write(tmcf.rstrip('\n')) - - def process(self): - """ - This is main method to iterate on each file, - calls defined methods to clean, generate final - cleaned CSV file, MCF file and TMCF file. - """ - #input_path = FLAGS.input_path - ip_files = os.listdir(self.input_path) - self.input_files = [ - self.input_path + os.sep + file for file in ip_files - ] - if len(self.input_files) == 0: - logging.info("No files to process") - return - processed_count = 0 - total_files_to_process = len(self.input_files) - logging.info(f"No of files to be processed {len(self.input_files)}") - for file in self.input_files: - logging.info(f"Processing file: {file}") - df = self._load_data(file) - result = self._transform_data(df, file) - if result: - processed_count += 1 - else: - logging.fatal(f'Failed to process {file}') - logging.info(f"No of files processed {processed_count}") - if total_files_to_process > 0 & (processed_count - == total_files_to_process): - self._generate_mcf(self._df.columns) - self._generate_tmcf(self._df.columns) - else: - logging.fatal( - "Aborting output files as no of files to process not matching processed files" - ) - - -def add_future_year_urls(): - """ - This method scans the download URLs for future years. - """ - global _FILES_TO_DOWNLOAD - with open(os.path.join(_MODULE_DIR, 'input_url.json'), 'r') as inpit_file: - _FILES_TO_DOWNLOAD = json.load(inpit_file) - urls_to_scan = [ - "https://www2.census.gov/programs-surveys/popest/tables/2020-{YEAR}/national/totals/NA-EST{YEAR}-POP.xlsx" - ] - # This method checks for URLs from 2030 down to 2021. If a valid URL is found for any year, the method stops and adds it to the download URL. - # - for url in urls_to_scan: - for future_year in range(2030, 2021, -1): - YEAR = future_year - - url_to_check = url.format(YEAR=YEAR) - try: - check_url = requests.head(url_to_check) - if check_url.status_code == 200: - _FILES_TO_DOWNLOAD.append({"download_path": url_to_check}) - break - - except: - logging.error(f"URL is not accessable {url_to_check}") - - -def _clean_csv_file(df: pd.DataFrame) -> pd.DataFrame: - """ - This method cleans the dataframe loaded from a csv file format. - Also, Performs transformations on the data. - - Args: - df (DataFrame) : DataFrame of csv dataset - - Returns: - df (DataFrame) : Transformed DataFrame for txt dataset. - """ - # Removal of file description and headers in the initial lines of the input - # - # Input Data: - # table with row headers in column A and column headers in rows 3 through 5 (leading dots indicate sub-parts) - # Table 1. Monthly Population Estimates for the United States: April 1, 2000 to December 1, 2010 - # Year and Month Resident Population Resident Population Plus Armed Forces Overseas Civilian Population Civilian Noninstitutionalized Population - # 2000 - # .April 1 28,14,24,602 28,16,52,670 28,02,00,922 27,61,62,490 - # .May 1 28,16,46,806 28,18,76,634 28,04,28,534 27,63,89,920 - # - # Output Data: - # (Made Headers) Year and Month Resident Population Resident Population Plus Armed Forces Overseas Civilian Population Civilian Noninstitutionalized Population - # 2000 - # .April 1 28,14,24,602 28,16,52,670 28,02,00,922 27,61,62,490 - # .May 1 28,16,46,806 28,18,76,634 28,04,28,534 27,63,89,920 - - idx = df[df[0] == "Year and Month"].index - df = df.iloc[idx.values[0] + 1:][:] - df = df.dropna(axis=1, how='all') - cols = [ - "Year and Month", "Resident Population", - "Resident Population Plus Armed Forces Overseas", "Civilian Population", - "Civilian NonInstitutionalized Population" - ] - df.columns = cols - for col in df.columns: - df[col] = df[col].str.replace(",", "") - return df - - -def _clean_txt_file(df: pd.DataFrame) -> pd.DataFrame: - """ - This method cleans the dataframe loaded from a txt file format. - Also, Performs transformations on the data. - - Arguments: - df (DataFrame): DataFrame representing the loaded TXT dataset. - - Returns: - DataFrame: Transformed DataFrame after cleaning operations. - """ - df['Year and Month'] = df[['Year and Month', 'Date']]\ - .apply(_concat_cols, axis=1) - df.drop(columns=['Date'], inplace=True) - for col in df.columns: - df[col] = df[col].str.replace(",", "") - - # The index numbers alotted as per where the columns are present to - # move the columns left - resident_population = 1 - resident_population_plus_armed_forces_overseas = 2 - civilian_population = 3 - civilian_noninstitutionalized_population = 4 - # Moving the row data left upto one index value. - # As the text file has (census) mentioned in some rows and it makes the - # other column's data shift by one place, we need to shift it back to the - # original place. - idx = df[df['Resident Population'] == "(census)"].index - df.iloc[idx, resident_population] = df.iloc[idx][ - "Resident Population Plus Armed Forces Overseas"] - df.iloc[idx, resident_population_plus_armed_forces_overseas] = df.iloc[idx][ - "Civilian Population"] - df.iloc[idx, civilian_population] = df.iloc[idx][ - "Civilian NonInstitutionalized Population"] - df.iloc[idx, civilian_noninstitutionalized_population] = np.nan - return df - - -def _mulitply_scaling_factor(col: pd.Series) -> pd.Series: - """ - This method multiply dataframe column with scaling factor. - - Arguments: - col (Series): A DataFrame column of dtype int, containing the values to be scaled. - - Returns: - Series: A DataFrame column with values multiplied by the scaling factor. - """ - res = col - if col not in [None, np.nan]: - if col.isdigit(): - res = int(col) * _SCALING_FACTOR_TXT_FILE - return res - - -def _concat_cols(col: pd.Series) -> pd.Series: - """ - This method concats two DataFrame column values - with space in-between. - - Args: - col (Series): A pandas Series containing two values from the DataFrame. - - Returns: - res (Series) : Concatenated DataFrame Columns - """ - res = col.iloc[0] - if col.iloc[1] is None: - return res - res = col.iloc[0] + ' ' + col.iloc[1] - return res - - -def download_files(): - """ - This method allows to download the input files. - """ - global _FILES_TO_DOWNLOAD - session = requests.session() - max_retry = 5 - for file_to_dowload in _FILES_TO_DOWNLOAD: - file_name = None - url = file_to_dowload['download_path'] - if 'file_name' in file_to_dowload and len( - file_to_dowload['file_name'] > 5): - file_name = file_to_dowload['file_name'] - else: - file_name = url.split('/')[-1] - retry_number = 0 - - is_file_downloaded = False - while is_file_downloaded == False: - try: - df = None - file_name = url.split("/")[-1] - - if ".xls" in url: - df = pd.read_excel(url, header=_HEADER) - df.to_excel(os.path.join(raw_data_path, file_name), - index=False, - header=False, - engine='xlsxwriter') - df.to_excel(os.path.join(_INPUT_FILE_PATH, file_name), - index=False, - header=False, - engine='xlsxwriter') - elif ".csv" in url: - with requests.get(url, stream=True) as response: - response.raise_for_status() - if response.status_code == 200: - with open(os.path.join(raw_data_path, file_name), - 'wb') as f: - f.write(response.content) - file_name = file_name.replace(".csv", ".xlsx") - df = pd.read_csv(url, header=None) - df = _clean_csv_file(df) - df.to_excel(os.path.join(_INPUT_FILE_PATH, file_name), - index=False, - engine='xlsxwriter') - elif ".txt" in url: - with requests.get(url, stream=True) as response: - response.raise_for_status() - if response.status_code == 200: - with open(os.path.join(raw_data_path, file_name), - 'wb') as f: - f.write(response.content) - file_name = file_name.replace(".txt", ".xlsx") - cols = [ - "Year and Month", "Date", "Resident Population", - "Resident Population Plus Armed Forces Overseas", - "Civilian Population", - "Civilian NonInstitutionalized Population" - ] - df = pd.read_table(url, - index_col=False, - sep=r'\s+', - engine='python', - skiprows=17, - names=cols) - # Skipping 17 rows as the initial 17 rows contains the information about - # the file being used, heading files spread accross multiple lines and - # other irrelevant information like source/contact details. - df = _clean_txt_file(df) - # Multiplying the data with scaling factor 1000. - for col in df.columns: - if "year" not in col.lower(): - df[col] = df[col].apply(_mulitply_scaling_factor) - df.to_excel(os.path.join(_INPUT_FILE_PATH, file_name), - index=False, - engine='xlsxwriter') - - is_file_downloaded = True - logging.info(f"Downloaded file : {url}") - - except Exception as e: - logging.error(f"Retry file download {url} - {e}") - time.sleep(5) - retry_number += 1 - if retry_number > max_retry: - logging.fatal(f"Error downloading {url}") - logging.error("Exit from script") - sys.exit(1) - return True - - -def main(_): - mode = FLAGS.mode - # Defining Output file names - output_path = os.path.join(_MODULE_DIR, "output") - input_path = os.path.join(_MODULE_DIR, "input_files") - if not os.path.exists(input_path): - os.mkdir(input_path) - if not os.path.exists(output_path): - os.mkdir(output_path) - cleaned_csv_path = os.path.join(output_path, "USA_Population_Count.csv") - mcf_path = os.path.join(output_path, "USA_Population_Count.mcf") - tmcf_path = os.path.join(output_path, "USA_Population_Count.tmcf") - download_status = True - if mode == "" or mode == "download": - add_future_year_urls() - download_status = download_files() - if download_status and (mode == "" or mode == "process"): - loader = CensusUSACountryPopulation(FLAGS.input_path, cleaned_csv_path, - mcf_path, tmcf_path) - loader.process() - - -if __name__ == "__main__": - app.run(main) +# Copyright 2022 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +""" A Script to process USA Census PEP monthly population data + from the datasets in the provided local path. + Typical usage: + 1. python3 preprocess.py + 2. python3 preprocess.py -mode='download' + 3. python3 preprocess.py -mode='process' +""" +from dataclasses import replace +import os +import re +import warnings +import requests +import numpy as np +import time +import json +import sys +from datetime import datetime as dt + +warnings.filterwarnings('ignore') +import pandas as pd +from absl import app +from absl import flags +from absl import logging + +pd.set_option("display.max_columns", None) + +FLAGS = flags.FLAGS +flags.DEFINE_string('mode', '', 'Options: download or process') +_MODULE_DIR = os.path.dirname(os.path.abspath(__file__)) +_INPUT_FILE_PATH = os.path.join(_MODULE_DIR, 'input_files') +default_input_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), + "input_files") +flags.DEFINE_string("input_path", default_input_path, "Import Data File's List") +_HEADER = 1 +_SCALING_FACTOR_TXT_FILE = 1000 + +#Creating folder to store the raw data from source +raw_data_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), + "raw_data") +if not os.path.exists(raw_data_path): + os.mkdir(raw_data_path) + +_MCF_TEMPLATE = ("Node: dcid:{dcid}\n" + "typeOf: dcs:StatisticalVariable\n" + "populationType: dcs:Person\n" + "statType: dcs:measuredValue\n" + "measuredProperty: dcs:count\n" + "{xtra_pvs}\n") + +_TMCF_TEMPLATE = ("Node: E:USA_Population_Count->E{}\n" + "typeOf: dcs:StatVarObservation\n" + "variableMeasured: dcs:{}\n" + "measurementMethod: dcs:{}\n" + "observationAbout: C:USA_Population_Count->Location\n" + "observationDate: C:USA_Population_Count->Date\n" + "observationPeriod: \"P1M\"\n" + "value: C:USA_Population_Count->{}\n") + + +def _extract_year(val: str) -> tuple: + """ + This Methods returns true,year from the value contains year. + Otherwise false,'' + + Arguments: + val (str) : A string value contains data below format + yyyy or yyyy [1] or .MM 1 + Returns: + res (tuple) : Tuple with boolean value and year value or None + """ + # Extracting 0th index value from the val. + # val contains yyyy or yyyy [1] or .MM 1 + val = str(val).strip().split(' ', maxsplit=1)[0] + if val.isnumeric() and len(val) == 4: + return True, val + # Exceptional Case: val contains 20091 + # 2009 is year and 1 is Date. + # Extracting just year from above format + if val.isnumeric() and len(val) == 5: + return True, val[:4] + return False, None + + +def _return_year(col: str) -> str: + """ + This Methods returns year value if col contains year. + Otherwise pandas NA value. + + Arguments: + col (str) : A string value contains data below format + yyyy or yyyy [1] or .MM 1 + Returns: + res (str) : String value with year yyyy or pandas NA value + """ + res, out = _extract_year(col) + if res: + return out + return pd.NA + + +def _return_month(col: str) -> str: + """ + This Methods returns month and date value if col contains month, date. + Otherwise pandas NA value. + + Arguments: + col (str) : A string value contains data below format + yyyy or yyyy [1] or .MM 1 + Returns: + res (str) : String value with month mm or pandas NA value + """ + res = _extract_year(col) + if res[0]: + return pd.NA + return col + + +def _year_range(col: pd.Series) -> str: + """ + This method returns year range from the dataframe + column. + Example: + col(input): + 2000-04 + 2000-05 + 2000-06 + 2000-07 + 2000-08 + ... + 2010-08 + 2010-09 + 2010-10 + 2010-11 + 2010-12 + output: + "2010-2000" + + Arguments: + col (Series) : DataFrame Column of dtype str + + Returns: + year_range (str) : String of Concatenated max and min year values + """ + year_range = None + max_year = max(pd.to_datetime(col, errors='coerce').dt.year) + min_year = min(pd.to_datetime(col, errors='coerce').dt.year) + year_range = str(max_year) + '-' + str(min_year) + return year_range + + +def _replace_name(final_cols: list) -> list: + """ + List provided inorder to change the name as required by output. + + Arguments: + final_cols (list) : List of dtype str + + Returns: + final_cols (list) : List of dtype str + """ + final_cols = [ + "Count_Person_" + (col.replace("Population ", "").replace( + "Population", "").replace(" Plus ", "Or").replace( + "Armed Forces Overseas", "InUSArmedForcesOverseas").replace( + "Household", "ResidesInHousehold").replace( + "Resident", "USResident").replace( + "Noninstitutionalized", + "NonInstitutionalized").strip().replace( + " ", "_").replace("__", "_")) + for col in final_cols + ] + + return final_cols + + +class CensusUSACountryPopulation: + """ + CensusUSACountryPopulation class provides methods + to load the data into dataframes, process, cleans + dataframes and finally creates single cleaned csv + file. + Also provides methods to generate MCF and TMCF + Files using pre-defined templates. + """ + + def __init__(self, input_path: str, csv_file_path: str, mcf_file_path: str, + tmcf_file_path: str) -> None: + self.input_path = input_path #added + self._cleaned_csv_file_path = csv_file_path + self._mcf_file_path = mcf_file_path + self._tmcf_file_path = tmcf_file_path + self._df = None + self._file_name = None + self._scaling_factor = 1 + # Finding the Dir Path + if not os.path.exists(os.path.dirname(self._cleaned_csv_file_path)): + os.mkdir(os.path.dirname(self._cleaned_csv_file_path)) + + def _load_data(self, file: str) -> pd.DataFrame: + """ + This Methods loads the data into pandas Dataframe + using the provided file path and Returns the Dataframe. + + Arguments: + file (str) : String of Dataset File Path + Returns: + df (DataFrame) : DataFrame with loaded dataset + """ + df = None + self._file_name = os.path.basename(file) + if ".xls" in file: + df = pd.read_excel(file) + return df + + def _transform_df(self, df: pd.DataFrame, file: str) -> pd.DataFrame: + """ + This method transforms Dataframe into cleaned DF. + Also, It Creates new columns, remove duplicates, + Standaradize headers to SV's, Mulitply with + scaling factor. + + Arguments: + df (DataFrame) : DataFrame + + Returns: + df (DataFrame) : DataFrame. + """ + final_cols = [col for col in df.columns if 'year' not in col.lower()] + # _return_year("1999") or _return_year("1999 [1]"): 1999 + # _return_year(".07 1"): pd.NA + df['Year'] = df['Year and Month'].apply(_return_year).fillna( + method='ffill', limit=12) + # _return_year("1999") or _return_year("1999 [1]"): pd.NA + # _return_year(".07 1"): 07 + df['Month'] = df['Year and Month'].apply(_return_month) + df.dropna(subset=['Year', 'Month'], inplace=True) + + # Creating new Date Column and Final Date format is yyyy-mm + df['Date'] = df['Year'] + df['Month'] + df['Date'] = df['Date'].str.replace(".", "").str.replace( + " ", "").str.replace("*", "") + df['Date'] = pd.to_datetime(df['Date'], + format='%Y%B%d', + errors="coerce") + # dropping 2010, 2020 overlapping values from different files + # dropping < 2000 files having some text in the value column + + if 'nat-total.xlsx' in file: + df = df[df['Resident Population Plus Armed Forces Overseas'] != + 'with'] + if 'na-est2009-01.xlsx' in file: + df = df[df['Date'] < dt(2010, 4, 1)] + if 'na-est2019-01.xlsx' in file: + df = df[df['Date'] < dt(2020, 4, 1)] + df.dropna(subset=['Date'], inplace=True) + df['Date'] = df['Date'].dt.strftime('%Y-%m') + df.drop_duplicates(subset=['Date'], inplace=True) + + # Deriving new SV Count_Person_InArmedForcesOverseas as + # subtracting Resident Population from + # Resident Population Plus Armed Forces Overseas + df['Count_Person_InUSArmedForcesOverseas'] = df[ + 'Resident Population Plus Armed Forces Overseas'].astype( + 'int') - df['Resident Population'].astype('int') + computed_cols = ["Date", "Count_Person_InUSArmedForcesOverseas"] + + # Selecting Computed and Final Columns from the DF. + df = df[computed_cols + final_cols] + + # Renaming DF Headers with ref to SV's Naming Standards. + final_cols_list = _replace_name(final_cols) + + final_cols_list = computed_cols + final_cols_list + df.columns = final_cols_list + + # Creating Location column with default value country/USA. + # as the dataset is all about USA country level only. + df.insert(1, "Location", "country/USA", True) + df.insert(0, 'date_range', _year_range(df['Date']), True) + return df + + def _transform_data(self, df: pd.DataFrame, file: str) -> None: + """ + This method calls the required functions to transform + the dataframe and saves the final cleaned data in + CSV file format. + + Arguments: + df (DataFrame): Input DataFrame containing the raw data to be transformed. + + Returns: + bool: Returns True if the transformation and file saving are successful, + False if an error occurs during processing. + """ + + try: + df = self._transform_df(df, file) + + if self._df is None: + self._df = df + else: + self._df = pd.concat([self._df, df], ignore_index=True) + + self._df.sort_values(by=['Date', 'date_range'], + ascending=False, + inplace=True) + # Data for 2020 exists in two sources, causing overlap. We'll eliminate duplicates + self._df.drop_duplicates("Date", keep="last", inplace=True) + self._df.drop(['date_range'], axis=1, inplace=True) + float_col = self._df.select_dtypes(include=['float64']) + for col in float_col.columns.values: + try: + self._df[col] = self._df[col].astype('int64') + except: + pass + self._df.to_csv(self._cleaned_csv_file_path, index=False) + except Exception as e: + logging.fatal(f'Error when processing file:-{e}') + return True + + def _generate_mcf(self, df_cols: list) -> None: + """ + This method generates MCF file w.r.t + dataframe headers and defined MCF template + + Arguments: + df_cols (list) : List of DataFrame Columns + + Returns: + None + """ + try: + mcf_nodes = [] + for col in df_cols: + pvs = [] + residence = "" + status = "" + armedf = "" + if col.lower() in ["date", "location"]: + continue + if re.findall('Resident', col): + if re.findall('InUSArmedForcesOverseas', col): + status = "USResident__InUSArmedForcesOverseas" + else: + status = "USResident" + residence = "residentStatus: dcs:" + status + pvs.append(residence) + elif re.findall('ArmedForces', col): + residence = "residentStatus: dcs:" + "InUSArmedForcesOverseas" + pvs.append(residence) + if re.findall('Resides', col): + if re.findall('Household', col): + residence = "residenceType: dcs:" + "Household" + pvs.append(residence) + if re.findall('Civilian', col): + armedf = "armedForcesStatus: dcs:Civilian" + pvs.append(armedf) + if re.findall('NonInstitutionalized', col): + residence = ("institutionalization: dcs:" + + "USC_NonInstitutionalized") + pvs.append(residence) + if re.findall('Count_Person_InUSArmedForcesOverseas', col): + armedf = "armedForcesStatus: dcs:InArmedForces" + pvs.append(armedf) + node = _MCF_TEMPLATE.format(dcid=col, xtra_pvs='\n'.join(pvs)) + mcf_nodes.append(node) + + mcf = '\n'.join(mcf_nodes) + + # Writing Genereated MCF to local path. + with open(self._mcf_file_path, 'w+', encoding='utf-8') as f_out: + f_out.write(mcf.rstrip('\n')) + except Exception as e: + logging.fatal(f'Error when Generating MCF file:-{e}') + + def _generate_tmcf(self, df_cols: list) -> None: + """ + This method generates TMCF file w.r.t + dataframe headers and defined TMCF template + + Arguments: + df_cols (list) : List of DataFrame Columns + + Returns: + None + """ + + i = 0 + measure = "" + tmcf = "" + for col in df_cols: + if col.lower() in ["date", "location"]: + continue + if re.findall('Count_Person_InUSArmedForcesOverseas', col): + measure = "dcAggregate/CensusPEPSurvey" + else: + measure = "CensusPEPSurvey" + tmcf = tmcf + _TMCF_TEMPLATE.format(i, col, measure, col) + "\n" + i = i + 1 + + # Writing Genereated TMCF to local path. + with open(self._tmcf_file_path, 'w+', encoding='utf-8') as f_out: + f_out.write(tmcf.rstrip('\n')) + + def process(self): + """ + This is main method to iterate on each file, + calls defined methods to clean, generate final + cleaned CSV file, MCF file and TMCF file. + """ + #input_path = FLAGS.input_path + ip_files = os.listdir(self.input_path) + self.input_files = [ + self.input_path + os.sep + file for file in ip_files + ] + if len(self.input_files) == 0: + logging.info("No files to process") + return + processed_count = 0 + total_files_to_process = len(self.input_files) + logging.info(f"No of files to be processed {len(self.input_files)}") + for file in self.input_files: + logging.info(f"Processing file: {file}") + df = self._load_data(file) + result = self._transform_data(df, file) + if result: + processed_count += 1 + else: + logging.fatal(f'Failed to process {file}') + logging.info(f"No of files processed {processed_count}") + if total_files_to_process > 0 & (processed_count + == total_files_to_process): + self._generate_mcf(self._df.columns) + self._generate_tmcf(self._df.columns) + else: + logging.fatal( + "Aborting output files as no of files to process not matching processed files" + ) + + +def add_future_year_urls(): + """ + This method scans the download URLs for future years. + """ + global _FILES_TO_DOWNLOAD + with open(os.path.join(_MODULE_DIR, 'input_url.json'), 'r') as inpit_file: + _FILES_TO_DOWNLOAD = json.load(inpit_file) + urls_to_scan = [ + "https://www2.census.gov/programs-surveys/popest/tables/2020-{YEAR}/national/totals/NA-EST{YEAR}-POP.xlsx" + ] + # This method checks for URLs from 2030 down to 2021. If a valid URL is found for any year, the method stops and adds it to the download URL. + # + for url in urls_to_scan: + for future_year in range(2030, 2021, -1): + YEAR = future_year + + url_to_check = url.format(YEAR=YEAR) + try: + check_url = requests.head(url_to_check) + if check_url.status_code == 200: + _FILES_TO_DOWNLOAD.append({"download_path": url_to_check}) + break + + except: + logging.error(f"URL is not accessable {url_to_check}") + + +def _clean_csv_file(df: pd.DataFrame) -> pd.DataFrame: + """ + This method cleans the dataframe loaded from a csv file format. + Also, Performs transformations on the data. + + Args: + df (DataFrame) : DataFrame of csv dataset + + Returns: + df (DataFrame) : Transformed DataFrame for txt dataset. + """ + # Removal of file description and headers in the initial lines of the input + # + # Input Data: + # table with row headers in column A and column headers in rows 3 through 5 (leading dots indicate sub-parts) + # Table 1. Monthly Population Estimates for the United States: April 1, 2000 to December 1, 2010 + # Year and Month Resident Population Resident Population Plus Armed Forces Overseas Civilian Population Civilian Noninstitutionalized Population + # 2000 + # .April 1 28,14,24,602 28,16,52,670 28,02,00,922 27,61,62,490 + # .May 1 28,16,46,806 28,18,76,634 28,04,28,534 27,63,89,920 + # + # Output Data: + # (Made Headers) Year and Month Resident Population Resident Population Plus Armed Forces Overseas Civilian Population Civilian Noninstitutionalized Population + # 2000 + # .April 1 28,14,24,602 28,16,52,670 28,02,00,922 27,61,62,490 + # .May 1 28,16,46,806 28,18,76,634 28,04,28,534 27,63,89,920 + + idx = df[df[0] == "Year and Month"].index + df = df.iloc[idx.values[0] + 1:][:] + df = df.dropna(axis=1, how='all') + cols = [ + "Year and Month", "Resident Population", + "Resident Population Plus Armed Forces Overseas", "Civilian Population", + "Civilian NonInstitutionalized Population" + ] + df.columns = cols + for col in df.columns: + df[col] = df[col].str.replace(",", "") + return df + + +def _clean_txt_file(df: pd.DataFrame) -> pd.DataFrame: + """ + This method cleans the dataframe loaded from a txt file format. + Also, Performs transformations on the data. + + Arguments: + df (DataFrame): DataFrame representing the loaded TXT dataset. + + Returns: + DataFrame: Transformed DataFrame after cleaning operations. + """ + df['Year and Month'] = df[['Year and Month', 'Date']]\ + .apply(_concat_cols, axis=1) + df.drop(columns=['Date'], inplace=True) + for col in df.columns: + df[col] = df[col].str.replace(",", "") + + # The index numbers alotted as per where the columns are present to + # move the columns left + resident_population = 1 + resident_population_plus_armed_forces_overseas = 2 + civilian_population = 3 + civilian_noninstitutionalized_population = 4 + # Moving the row data left upto one index value. + # As the text file has (census) mentioned in some rows and it makes the + # other column's data shift by one place, we need to shift it back to the + # original place. + idx = df[df['Resident Population'] == "(census)"].index + df.iloc[idx, resident_population] = df.iloc[idx][ + "Resident Population Plus Armed Forces Overseas"] + df.iloc[idx, resident_population_plus_armed_forces_overseas] = df.iloc[idx][ + "Civilian Population"] + df.iloc[idx, civilian_population] = df.iloc[idx][ + "Civilian NonInstitutionalized Population"] + df.iloc[idx, civilian_noninstitutionalized_population] = np.nan + return df + + +def _mulitply_scaling_factor(col: pd.Series) -> pd.Series: + """ + This method multiply dataframe column with scaling factor. + + Arguments: + col (Series): A DataFrame column of dtype int, containing the values to be scaled. + + Returns: + Series: A DataFrame column with values multiplied by the scaling factor. + """ + res = col + if col not in [None, np.nan]: + if col.isdigit(): + res = int(col) * _SCALING_FACTOR_TXT_FILE + return res + + +def _concat_cols(col: pd.Series) -> pd.Series: + """ + This method concats two DataFrame column values + with space in-between. + + Args: + col (Series): A pandas Series containing two values from the DataFrame. + + Returns: + res (Series) : Concatenated DataFrame Columns + """ + res = col.iloc[0] + if col.iloc[1] is None: + return res + res = col.iloc[0] + ' ' + col.iloc[1] + return res + + +def download_files(): + """ + This method allows to download the input files. + """ + global _FILES_TO_DOWNLOAD + session = requests.session() + max_retry = 5 + for file_to_dowload in _FILES_TO_DOWNLOAD: + file_name = None + url = file_to_dowload['download_path'] + if 'file_name' in file_to_dowload and len( + file_to_dowload['file_name'] > 5): + file_name = file_to_dowload['file_name'] + else: + file_name = url.split('/')[-1] + retry_number = 0 + + is_file_downloaded = False + while is_file_downloaded == False: + try: + df = None + file_name = url.split("/")[-1] + + if ".xls" in url: + df = pd.read_excel(url, header=_HEADER) + df.to_excel(os.path.join(raw_data_path, file_name), + index=False, + header=False, + engine='xlsxwriter') + df.to_excel(os.path.join(_INPUT_FILE_PATH, file_name), + index=False, + header=False, + engine='xlsxwriter') + elif ".csv" in url: + with requests.get(url, stream=True) as response: + response.raise_for_status() + if response.status_code == 200: + with open(os.path.join(raw_data_path, file_name), + 'wb') as f: + f.write(response.content) + file_name = file_name.replace(".csv", ".xlsx") + df = pd.read_csv(url, header=None) + df = _clean_csv_file(df) + df.to_excel(os.path.join(_INPUT_FILE_PATH, file_name), + index=False, + engine='xlsxwriter') + elif ".txt" in url: + with requests.get(url, stream=True) as response: + response.raise_for_status() + if response.status_code == 200: + with open(os.path.join(raw_data_path, file_name), + 'wb') as f: + f.write(response.content) + file_name = file_name.replace(".txt", ".xlsx") + cols = [ + "Year and Month", "Date", "Resident Population", + "Resident Population Plus Armed Forces Overseas", + "Civilian Population", + "Civilian NonInstitutionalized Population" + ] + df = pd.read_table(url, + index_col=False, + sep=r'\s+', + engine='python', + skiprows=17, + names=cols) + # Skipping 17 rows as the initial 17 rows contains the information about + # the file being used, heading files spread accross multiple lines and + # other irrelevant information like source/contact details. + df = _clean_txt_file(df) + # Multiplying the data with scaling factor 1000. + for col in df.columns: + if "year" not in col.lower(): + df[col] = df[col].apply(_mulitply_scaling_factor) + df.to_excel(os.path.join(_INPUT_FILE_PATH, file_name), + index=False, + engine='xlsxwriter') + + is_file_downloaded = True + logging.info(f"Downloaded file : {url}") + + except Exception as e: + logging.error(f"Retry file download {url} - {e}") + time.sleep(5) + retry_number += 1 + if retry_number > max_retry: + logging.fatal(f"Error downloading {url}") + logging.error("Exit from script") + sys.exit(1) + return True + + +def main(_): + mode = FLAGS.mode + # Defining Output file names + output_path = os.path.join(_MODULE_DIR, "output") + input_path = os.path.join(_MODULE_DIR, "input_files") + if not os.path.exists(input_path): + os.mkdir(input_path) + if not os.path.exists(output_path): + os.mkdir(output_path) + cleaned_csv_path = os.path.join(output_path, "USA_Population_Count.csv") + mcf_path = os.path.join(output_path, "USA_Population_Count.mcf") + tmcf_path = os.path.join(output_path, "USA_Population_Count.tmcf") + download_status = True + if mode == "" or mode == "download": + add_future_year_urls() + download_status = download_files() + if download_status and (mode == "" or mode == "process"): + loader = CensusUSACountryPopulation(FLAGS.input_path, cleaned_csv_path, + mcf_path, tmcf_path) + loader.process() + + +if __name__ == "__main__": + app.run(main)