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" + } + } + ] +} + 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" + } + } + ] +} + + + 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","[]" 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/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" + } + } + ] +} + + 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" + } + } + ] +}