diff --git a/spotlight-client/src/ErrorMessage/ErrorMessage.tsx b/spotlight-client/src/ErrorMessage/ErrorMessage.tsx index 82f18051..9d2f5349 100644 --- a/spotlight-client/src/ErrorMessage/ErrorMessage.tsx +++ b/spotlight-client/src/ErrorMessage/ErrorMessage.tsx @@ -20,10 +20,10 @@ import { FallbackProps } from "react-error-boundary"; const ErrorMessage: React.FC = ({ error }) => { return ( -
+

An error has occurred.

{error?.message}

-
+ ); }; diff --git a/spotlight-client/src/MetricVizMapper/MetricVizMapper.tsx b/spotlight-client/src/MetricVizMapper/MetricVizMapper.tsx new file mode 100644 index 00000000..09bf345c --- /dev/null +++ b/spotlight-client/src/MetricVizMapper/MetricVizMapper.tsx @@ -0,0 +1,35 @@ +// Recidiviz - a data platform for criminal justice reform +// Copyright (C) 2021 Recidiviz, Inc. +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// ============================================================================= + +import React from "react"; +import Metric from "../contentModels/Metric"; +import HistoricalPopulationBreakdownMetric from "../contentModels/HistoricalPopulationBreakdownMetric"; +import VizHistoricalPopulationBreakdown from "../VizHistoricalPopulationBreakdown"; +import { MetricRecord } from "../contentModels/types"; + +type MetricVizMapperProps = { + metric: Metric; +}; + +const MetricVizMapper: React.FC = ({ metric }) => { + if (metric instanceof HistoricalPopulationBreakdownMetric) { + return ; + } + return

Placeholder for {metric.name}

; +}; + +export default MetricVizMapper; diff --git a/spotlight-client/src/MetricVizMapper/index.ts b/spotlight-client/src/MetricVizMapper/index.ts new file mode 100644 index 00000000..b5a04a50 --- /dev/null +++ b/spotlight-client/src/MetricVizMapper/index.ts @@ -0,0 +1,18 @@ +// Recidiviz - a data platform for criminal justice reform +// Copyright (C) 2021 Recidiviz, Inc. +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// ============================================================================= + +export { default } from "./MetricVizMapper"; diff --git a/spotlight-client/src/SystemNarrativePage/Section.tsx b/spotlight-client/src/SystemNarrativePage/Section.tsx index 57cf3829..f6d50d82 100644 --- a/spotlight-client/src/SystemNarrativePage/Section.tsx +++ b/spotlight-client/src/SystemNarrativePage/Section.tsx @@ -21,8 +21,10 @@ import React from "react"; import Sticker from "react-stickyfill"; import styled from "styled-components/macro"; import { NAV_BAR_HEIGHT } from "../constants"; +import Metric from "../contentModels/Metric"; import { SystemNarrativeSection } from "../contentModels/SystemNarrative"; -import { AnyMetric } from "../contentModels/types"; +import { MetricRecord } from "../contentModels/types"; +import MetricVizMapper from "../MetricVizMapper"; import { colors, typefaces } from "../UiLibrary"; import { X_PADDING } from "./constants"; @@ -60,15 +62,14 @@ const SectionBody = styled.div` const VizContainer = styled.div` margin-left: ${rem(176)}; - height: 125vh; flex: 1 1 auto; padding: ${rem(240)} 0; `; -const SectionViz: React.FC<{ metric: AnyMetric }> = ({ metric }) => { +const SectionViz: React.FC<{ metric: Metric }> = ({ metric }) => { return ( -

Placeholder for {metric.name}

+
); }; diff --git a/spotlight-client/src/VizHistoricalPopulationBreakdown/VizHistoricalPopulationBreakdown.tsx b/spotlight-client/src/VizHistoricalPopulationBreakdown/VizHistoricalPopulationBreakdown.tsx new file mode 100644 index 00000000..9880bfa6 --- /dev/null +++ b/spotlight-client/src/VizHistoricalPopulationBreakdown/VizHistoricalPopulationBreakdown.tsx @@ -0,0 +1,32 @@ +// Recidiviz - a data platform for criminal justice reform +// Copyright (C) 2021 Recidiviz, Inc. +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// ============================================================================= + +import React from "react"; +import { HistoricalPopulationBreakdownRecord } from "../metricsApi"; + +type VizHistoricalPopulationBreakdownProps = { + data: HistoricalPopulationBreakdownRecord[]; +}; + +const VizHistoricalPopulationBreakdown: React.FC = ({ + data, +}) => { + // Just a proof-of-concept on data handling for now + return
{data.length} records found
; +}; + +export default VizHistoricalPopulationBreakdown; diff --git a/spotlight-client/src/VizHistoricalPopulationBreakdown/VizHistoricalPopulationBreakdownContainer.tsx b/spotlight-client/src/VizHistoricalPopulationBreakdown/VizHistoricalPopulationBreakdownContainer.tsx new file mode 100644 index 00000000..270d220b --- /dev/null +++ b/spotlight-client/src/VizHistoricalPopulationBreakdown/VizHistoricalPopulationBreakdownContainer.tsx @@ -0,0 +1,43 @@ +// Recidiviz - a data platform for criminal justice reform +// Copyright (C) 2021 Recidiviz, Inc. +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// ============================================================================= + +import { observer } from "mobx-react-lite"; +import React from "react"; +import { withErrorBoundary } from "react-error-boundary"; +import HistoricalPopulationBreakdownMetric from "../contentModels/HistoricalPopulationBreakdownMetric"; +import ErrorMessage from "../ErrorMessage"; +import VizHistoricalPopulationBreakdown from "./VizHistoricalPopulationBreakdown"; + +type VizHistoricalPopulationBreakdownContainerProps = { + metric: HistoricalPopulationBreakdownMetric; +}; + +const VizHistoricalPopulationBreakdownContainer: React.FC = ({ + metric, +}) => { + if (metric.records) + return ; + + if (metric.error) throw metric.error; + + return
loading...
; +}; + +export default withErrorBoundary( + observer(VizHistoricalPopulationBreakdownContainer), + { FallbackComponent: ErrorMessage } +); diff --git a/spotlight-client/src/VizHistoricalPopulationBreakdown/index.ts b/spotlight-client/src/VizHistoricalPopulationBreakdown/index.ts new file mode 100644 index 00000000..c2e278a0 --- /dev/null +++ b/spotlight-client/src/VizHistoricalPopulationBreakdown/index.ts @@ -0,0 +1,18 @@ +// Recidiviz - a data platform for criminal justice reform +// Copyright (C) 2021 Recidiviz, Inc. +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// ============================================================================= + +export { default } from "./VizHistoricalPopulationBreakdownContainer"; diff --git a/spotlight-client/src/contentModels/Collection.ts b/spotlight-client/src/contentModels/Collection.ts index d1b47a7b..75703b9f 100644 --- a/spotlight-client/src/contentModels/Collection.ts +++ b/spotlight-client/src/contentModels/Collection.ts @@ -16,11 +16,7 @@ // ============================================================================= import { assertNever } from "assert-never"; -import { - CollectionTypeId, - MetricTypeId, - MetricTypeIdList, -} from "../contentApi/types"; +import { CollectionTypeId, MetricTypeId } from "../contentApi/types"; import { MetricMapping } from "./types"; type InitOptions = { @@ -56,16 +52,11 @@ function getCollectionMetricMapping({ allMetrics: MetricMapping; idsToInclude: MetricTypeId[]; }): MetricMapping { - const filteredMetricMapping = { ...allMetrics }; - - // filter out all but the included keys - MetricTypeIdList.forEach((metricId) => { - if (!idsToInclude.includes(metricId)) { - delete filteredMetricMapping[metricId]; - } - }); - - return filteredMetricMapping; + return new Map( + Array.from(allMetrics).filter(([metricId]) => + idsToInclude.includes(metricId) + ) + ); } /** diff --git a/spotlight-client/src/contentModels/DemographicsByCategoryMetric.ts b/spotlight-client/src/contentModels/DemographicsByCategoryMetric.ts new file mode 100644 index 00000000..b800793e --- /dev/null +++ b/spotlight-client/src/contentModels/DemographicsByCategoryMetric.ts @@ -0,0 +1,36 @@ +// Recidiviz - a data platform for criminal justice reform +// Copyright (C) 2021 Recidiviz, Inc. +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// ============================================================================= + +import { + DemographicsByCategoryRecord, + recordIsTotalByDimension, +} from "../metricsApi"; +import Metric from "./Metric"; + +export default class DemographicsByCategoryMetric extends Metric< + DemographicsByCategoryRecord +> { + get records(): DemographicsByCategoryRecord[] | undefined { + let recordsToReturn = this.getOrFetchRecords(); + if (!recordsToReturn) return undefined; + + recordsToReturn = recordsToReturn.filter( + recordIsTotalByDimension(this.demographicView) + ); + return recordsToReturn; + } +} diff --git a/spotlight-client/src/contentModels/HistoricalPopulationBreakdownMetric.ts b/spotlight-client/src/contentModels/HistoricalPopulationBreakdownMetric.ts new file mode 100644 index 00000000..c25a8fc9 --- /dev/null +++ b/spotlight-client/src/contentModels/HistoricalPopulationBreakdownMetric.ts @@ -0,0 +1,36 @@ +// Recidiviz - a data platform for criminal justice reform +// Copyright (C) 2021 Recidiviz, Inc. +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// ============================================================================= + +import { + HistoricalPopulationBreakdownRecord, + recordIsTotalByDimension, +} from "../metricsApi"; +import Metric from "./Metric"; + +export default class HistoricalPopulationBreakdownMetric extends Metric< + HistoricalPopulationBreakdownRecord +> { + get records(): HistoricalPopulationBreakdownRecord[] | undefined { + let recordsToReturn = this.getOrFetchRecords(); + if (!recordsToReturn) return undefined; + + recordsToReturn = recordsToReturn.filter( + recordIsTotalByDimension(this.demographicView) + ); + return recordsToReturn; + } +} diff --git a/spotlight-client/src/contentModels/Metric.test.ts b/spotlight-client/src/contentModels/Metric.test.ts index acb90abb..344c09f6 100644 --- a/spotlight-client/src/contentModels/Metric.test.ts +++ b/spotlight-client/src/contentModels/Metric.test.ts @@ -16,11 +16,12 @@ // ============================================================================= import fetchMock from "jest-fetch-mock"; -import { when } from "mobx"; +import { runInAction, when } from "mobx"; import { fromPromise } from "mobx-utils"; -import { createMetricMapping } from "./Metric"; import retrieveContent from "../contentApi/retrieveContent"; import { MetricTypeId, MetricTypeIdList } from "../contentApi/types"; +import { reactImmediately } from "../testUtils"; +import createMetricMapping from "./createMetricMapping"; const testTenantId = "US_ND"; const testMetadataMapping = retrieveContent({ tenantId: testTenantId }).metrics; @@ -34,7 +35,7 @@ const getTestMapping = () => let testMetricMapping: ReturnType; function getTestMetric(testMetricId: MetricTypeId) { - const metric = testMetricMapping[testMetricId]; + const metric = testMetricMapping.get(testMetricId); if (!metric) { throw new Error("expected instance of Metric"); @@ -139,11 +140,48 @@ test("fetch error state", async () => { status: 500, }); - await expect(metric.fetch()).rejects.toThrow( - "Metrics API responded with status 500. Error message: test error message" - ); + await metric.fetch(); + + reactImmediately(() => { + expect(metric.error?.message).toBe( + "Metrics API responded with status 500. Error message: test error message" + ); + }); + + expect.hasAssertions(); fetchMock.resetMocks(); // return the mock to its default inactive state fetchMock.dontMock(); }); + +test("demographic filter", async () => { + testMetricMapping = getTestMapping(); + // one of several metric types that supports this type of filter + // (and will result in a relatively small snapshot!) + const metric = getTestMetric("ProbationRevocationsAggregate"); + + metric.fetch(); + + await when(() => metric.records !== undefined); + + runInAction(() => { + metric.demographicView = "gender"; + }); + + reactImmediately(() => expect(metric.records).toMatchSnapshot()); + + runInAction(() => { + metric.demographicView = "race"; + }); + + reactImmediately(() => expect(metric.records).toMatchSnapshot()); + + runInAction(() => { + metric.demographicView = "age"; + }); + + reactImmediately(() => expect(metric.records).toMatchSnapshot()); + + expect.hasAssertions(); +}); diff --git a/spotlight-client/src/contentModels/Metric.ts b/spotlight-client/src/contentModels/Metric.ts index f30de91c..99303a70 100644 --- a/spotlight-client/src/contentModels/Metric.ts +++ b/spotlight-client/src/contentModels/Metric.ts @@ -1,5 +1,5 @@ // Recidiviz - a data platform for criminal justice reform -// Copyright (C) 2020 Recidiviz, Inc. +// Copyright (C) 2021 Recidiviz, Inc. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -15,61 +15,46 @@ // along with this program. If not, see . // ============================================================================= -import assertNever from "assert-never"; -import { makeAutoObservable, runInAction } from "mobx"; -import { MetricTypeIdList, TenantContent, TenantId } from "../contentApi/types"; import { - DemographicsByCategoryRecord, + action, + computed, + makeObservable, + observable, + runInAction, +} from "mobx"; +import { TenantId } from "../contentApi/types"; +import { fetchMetrics, - HistoricalPopulationBreakdownRecord, - parolePopulationCurrent, - parolePopulationHistorical, - paroleProgramParticipationCurrent, - paroleRevocationReasons, - paroleSuccessRateDemographics, - paroleSuccessRateMonthly, - PopulationBreakdownByLocationRecord, - prisonAdmissionReasons, - prisonPopulationCurrent, - prisonPopulationHistorical, - prisonReleaseTypes, - prisonStayLengths, - probationPopulationCurrent, - probationPopulationHistorical, - probationProgramParticipationCurrent, - probationRevocationReasons, - probationSuccessRateDemographics, - probationSuccessRateMonthly, - ProgramParticipationCurrentRecord, RawMetricData, - recidivismRateAllFollowup, - recidivismRateConventionalFollowup, - RecidivismRateRecord, - sentencePopulationCurrent, - SentenceTypeByLocationRecord, - sentenceTypesCurrent, - SupervisionSuccessRateDemographicsRecord, - SupervisionSuccessRateMonthlyRecord, + DemographicFields, + DemographicView, + LocalityFields, } from "../metricsApi"; -import { AnyRecord, CollectionMap, MetricMapping } from "./types"; - -type DataTransformer = (rawData: RawMetricData) => RecordFormat[]; +import { MetricRecord, CollectionMap } from "./types"; -type InitOptions = { +type BaseMetricConstructorOptions = { name: string; description: string; methodology: string; tenantId: TenantId; - dataTransformer: DataTransformer; sourceFileName: string; + dataTransformer: (d: RawMetricData) => RecordFormat[]; + defaultDemographicView: RecordFormat extends DemographicFields + ? DemographicView + : undefined; + defaultLocalityId: RecordFormat extends LocalityFields ? string : undefined; }; /** - * Represents a single dataset backed by data from our metrics API. - * The recommended way to instantiate `Metrics` is with the `createMetricMapping` - * factory exported from this module. + * Represents a single dataset backed by our metrics API, + * plus any applicable metadata. + * This is an abstract class that cannot be instantiated directly! + * See subclasses that narrow this base down to a specific metric format. + * The preferred way to instantiate `Metric` subclasses is with the + * `createMetricMapping` function, which is defined in its own module to + * prevent cyclic dependencies in their respective class declarations. */ -export default class Metric { +export default abstract class Metric { // metadata properties readonly description: string; @@ -85,34 +70,39 @@ export default class Metric { readonly tenantId: TenantId; // data properties - private readonly dataTransformer: DataTransformer; + protected dataTransformer: (d: RawMetricData) => RecordFormat[]; - private readonly sourceFileName: string; + protected readonly sourceFileName: string; isLoading?: boolean; - private allRecords?: RecordFormat[]; + allRecords?: RecordFormat[]; error?: Error; + // filter properties + localityId: RecordFormat extends LocalityFields ? string : undefined; + + demographicView: RecordFormat extends DemographicFields + ? DemographicView + : undefined; + constructor({ name, description, methodology, tenantId, - dataTransformer, sourceFileName, - }: InitOptions) { - makeAutoObservable(this, { - // readonly properties do not need to be observed - description: false, - methodology: false, - name: false, - tenantId: false, - // in practice, collections should not change once we are done - // bootstrapping them (which is done right after instantiation); - // no need to make them observable - collections: false, + dataTransformer, + defaultDemographicView, + defaultLocalityId, + }: BaseMetricConstructorOptions) { + makeObservable(this, { + allRecords: observable.ref, + error: observable, + fetch: action, + isLoading: observable, + records: computed, }); // initialize metadata @@ -122,262 +112,48 @@ export default class Metric { // initialize data fetching this.tenantId = tenantId; - this.dataTransformer = dataTransformer; this.sourceFileName = sourceFileName; + this.dataTransformer = dataTransformer; + + // initialize filters + this.localityId = defaultLocalityId; + this.demographicView = defaultDemographicView; } + /** + * Fetches the metric data from the server, transforms it, + * and stores the result on this Metric instance. + */ async fetch(): Promise { this.isLoading = true; - const apiResponse = await fetchMetrics({ - metricNames: [this.sourceFileName], - tenantId: this.tenantId, - }); - runInAction(() => { - if (apiResponse) { + try { + const apiResponse = await fetchMetrics({ + metricNames: [this.sourceFileName], + tenantId: this.tenantId, + }); + runInAction(() => { const metricFileData = apiResponse[this.sourceFileName]; if (metricFileData) { this.allRecords = this.dataTransformer(metricFileData); } this.isLoading = false; - } - }); + }); + } catch (e) { + this.error = e; + } } - get records(): RecordFormat[] | undefined { - return this.allRecords; + /** + * Returns fetched, transformed, and (optionally) filtered data for this metric. + * Will automatically initiate a fetch if necessary. + */ + protected getOrFetchRecords(): RecordFormat[] | undefined { + if (this.allRecords) return this.allRecords; + if (!this.isLoading || !this.error) this.fetch(); + return undefined; } -} - -type MetricMappingFactoryOptions = { - metadataMapping: TenantContent["metrics"]; - tenantId: TenantId; -}; -/** - * Factory function for converting a mapping of content objects by metric ID - * to a mapping of Metric instances by metric ID. Creating the entire mapping at once - * ensures that each ID maps to the proper Metric type without requiring further - * type guarding on the part of consumers. - */ -export function createMetricMapping({ - metadataMapping, - tenantId, -}: MetricMappingFactoryOptions): MetricMapping { - const metricMapping: MetricMapping = {}; - - // to maintain type safety we iterate through all of the known metrics; - // iterating through the metadata object's keys widens the type to `string`, - // which prevents us from guaranteeing exhaustiveness at the type level - MetricTypeIdList.forEach((metricType) => { - // not all metrics are required; metadata object is the source of truth - // for which metrics to include - const metadata = metadataMapping[metricType]; - if (!metadata) { - return; - } - // this big ol' switch statement ensures that the type ID string union is properly narrowed, - // allowing for 1:1 correspondence between the ID and the typed Metric instance. - switch (metricType) { - case "SentencePopulationCurrent": - metricMapping[metricType] = new Metric< - PopulationBreakdownByLocationRecord - >({ - ...metadata, - tenantId, - dataTransformer: sentencePopulationCurrent, - sourceFileName: "sentence_type_by_district_by_demographics", - }); - break; - case "SentenceTypesCurrent": - metricMapping[metricType] = new Metric({ - ...metadata, - tenantId, - dataTransformer: sentenceTypesCurrent, - sourceFileName: "sentence_type_by_district_by_demographics", - }); - break; - case "PrisonPopulationCurrent": - metricMapping[metricType] = new Metric< - PopulationBreakdownByLocationRecord - >({ - ...metadata, - tenantId, - dataTransformer: prisonPopulationCurrent, - sourceFileName: - "incarceration_population_by_facility_by_demographics", - }); - break; - case "ProbationPopulationCurrent": - metricMapping[metricType] = new Metric< - PopulationBreakdownByLocationRecord - >({ - ...metadata, - tenantId, - dataTransformer: probationPopulationCurrent, - sourceFileName: "supervision_population_by_district_by_demographics", - }); - break; - case "ParolePopulationCurrent": - metricMapping[metricType] = new Metric< - PopulationBreakdownByLocationRecord - >({ - ...metadata, - tenantId, - dataTransformer: parolePopulationCurrent, - sourceFileName: "supervision_population_by_district_by_demographics", - }); - break; - case "PrisonPopulationHistorical": - metricMapping[metricType] = new Metric< - HistoricalPopulationBreakdownRecord - >({ - ...metadata, - tenantId, - dataTransformer: prisonPopulationHistorical, - sourceFileName: "incarceration_population_by_month_by_demographics", - }); - break; - case "ProbationPopulationHistorical": - metricMapping[metricType] = new Metric< - HistoricalPopulationBreakdownRecord - >({ - ...metadata, - tenantId, - dataTransformer: probationPopulationHistorical, - sourceFileName: "supervision_population_by_month_by_demographics", - }); - break; - case "ParolePopulationHistorical": - metricMapping[metricType] = new Metric< - HistoricalPopulationBreakdownRecord - >({ - ...metadata, - tenantId, - dataTransformer: parolePopulationHistorical, - sourceFileName: "supervision_population_by_month_by_demographics", - }); - break; - case "ProbationProgrammingCurrent": - metricMapping[metricType] = new Metric< - ProgramParticipationCurrentRecord - >({ - ...metadata, - tenantId, - dataTransformer: probationProgramParticipationCurrent, - sourceFileName: "active_program_participation_by_region", - }); - break; - case "ParoleProgrammingCurrent": - metricMapping[metricType] = new Metric< - ProgramParticipationCurrentRecord - >({ - ...metadata, - tenantId, - dataTransformer: paroleProgramParticipationCurrent, - sourceFileName: "active_program_participation_by_region", - }); - break; - case "ProbationSuccessHistorical": - metricMapping[metricType] = new Metric< - SupervisionSuccessRateMonthlyRecord - >({ - ...metadata, - tenantId, - dataTransformer: probationSuccessRateMonthly, - sourceFileName: "supervision_success_by_month", - }); - break; - case "ParoleSuccessHistorical": - metricMapping[metricType] = new Metric< - SupervisionSuccessRateMonthlyRecord - >({ - ...metadata, - tenantId, - dataTransformer: paroleSuccessRateMonthly, - sourceFileName: "supervision_success_by_month", - }); - break; - case "ProbationSuccessAggregate": - metricMapping[metricType] = new Metric< - SupervisionSuccessRateDemographicsRecord - >({ - ...metadata, - tenantId, - dataTransformer: probationSuccessRateDemographics, - sourceFileName: "supervision_success_by_period_by_demographics", - }); - break; - case "ParoleSuccessAggregate": - metricMapping[metricType] = new Metric< - SupervisionSuccessRateDemographicsRecord - >({ - ...metadata, - tenantId, - dataTransformer: paroleSuccessRateDemographics, - sourceFileName: "supervision_success_by_period_by_demographics", - }); - break; - case "ProbationRevocationsAggregate": - metricMapping[metricType] = new Metric({ - ...metadata, - tenantId, - dataTransformer: probationRevocationReasons, - sourceFileName: - "supervision_revocations_by_period_by_type_by_demographics", - }); - break; - case "ParoleRevocationsAggregate": - metricMapping[metricType] = new Metric({ - ...metadata, - tenantId, - dataTransformer: paroleRevocationReasons, - sourceFileName: - "supervision_revocations_by_period_by_type_by_demographics", - }); - break; - case "PrisonAdmissionReasonsCurrent": - metricMapping[metricType] = new Metric({ - ...metadata, - tenantId, - dataTransformer: prisonAdmissionReasons, - sourceFileName: "incarceration_population_by_admission_reason", - }); - break; - case "PrisonReleaseTypeAggregate": - metricMapping[metricType] = new Metric({ - ...metadata, - tenantId, - dataTransformer: prisonReleaseTypes, - sourceFileName: "incarceration_releases_by_type_by_period", - }); - break; - case "PrisonRecidivismRateHistorical": - metricMapping[metricType] = new Metric({ - ...metadata, - tenantId, - dataTransformer: recidivismRateAllFollowup, - sourceFileName: "recidivism_rates_by_cohort_by_year", - }); - break; - case "PrisonRecidivismRateSingleFollowupHistorical": - metricMapping[metricType] = new Metric({ - ...metadata, - tenantId, - dataTransformer: recidivismRateConventionalFollowup, - sourceFileName: "recidivism_rates_by_cohort_by_year", - }); - break; - case "PrisonStayLengthAggregate": - metricMapping[metricType] = new Metric({ - ...metadata, - tenantId, - dataTransformer: prisonStayLengths, - sourceFileName: "incarceration_lengths_by_demographics", - }); - break; - default: - assertNever(metricType); - } - }); - return metricMapping; + get records(): RecordFormat[] | undefined { + return this.getOrFetchRecords(); + } } diff --git a/spotlight-client/src/contentModels/PopulationBreakdownByLocationMetric.ts b/spotlight-client/src/contentModels/PopulationBreakdownByLocationMetric.ts new file mode 100644 index 00000000..a208f8ad --- /dev/null +++ b/spotlight-client/src/contentModels/PopulationBreakdownByLocationMetric.ts @@ -0,0 +1,23 @@ +// Recidiviz - a data platform for criminal justice reform +// Copyright (C) 2021 Recidiviz, Inc. +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// ============================================================================= + +import { PopulationBreakdownByLocationRecord } from "../metricsApi"; +import Metric from "./Metric"; + +export default class PopulationBreakdownByLocationMetric extends Metric< + PopulationBreakdownByLocationRecord +> {} diff --git a/spotlight-client/src/contentModels/ProgramParticipationCurrentMetric.ts b/spotlight-client/src/contentModels/ProgramParticipationCurrentMetric.ts new file mode 100644 index 00000000..64d27f20 --- /dev/null +++ b/spotlight-client/src/contentModels/ProgramParticipationCurrentMetric.ts @@ -0,0 +1,23 @@ +// Recidiviz - a data platform for criminal justice reform +// Copyright (C) 2021 Recidiviz, Inc. +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// ============================================================================= + +import { ProgramParticipationCurrentRecord } from "../metricsApi"; +import Metric from "./Metric"; + +export default class ProgramParticipationCurrentMetric extends Metric< + ProgramParticipationCurrentRecord +> {} diff --git a/spotlight-client/src/contentModels/RecidivismRateMetric.ts b/spotlight-client/src/contentModels/RecidivismRateMetric.ts new file mode 100644 index 00000000..61d8292a --- /dev/null +++ b/spotlight-client/src/contentModels/RecidivismRateMetric.ts @@ -0,0 +1,31 @@ +// Recidiviz - a data platform for criminal justice reform +// Copyright (C) 2021 Recidiviz, Inc. +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// ============================================================================= + +import { RecidivismRateRecord, recordIsTotalByDimension } from "../metricsApi"; +import Metric from "./Metric"; + +export default class RecidivismRateMetric extends Metric { + get records(): RecidivismRateRecord[] | undefined { + let recordsToReturn = this.getOrFetchRecords(); + if (!recordsToReturn) return undefined; + + recordsToReturn = recordsToReturn.filter( + recordIsTotalByDimension(this.demographicView) + ); + return recordsToReturn; + } +} diff --git a/spotlight-client/src/contentModels/SentenceTypeByLocationMetric.ts b/spotlight-client/src/contentModels/SentenceTypeByLocationMetric.ts new file mode 100644 index 00000000..9f28fd79 --- /dev/null +++ b/spotlight-client/src/contentModels/SentenceTypeByLocationMetric.ts @@ -0,0 +1,41 @@ +// Recidiviz - a data platform for criminal justice reform +// Copyright (C) 2021 Recidiviz, Inc. +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// ============================================================================= + +import { + recordIsTotalByDimension, + recordMatchesLocality, + SentenceTypeByLocationRecord, +} from "../metricsApi"; +import Metric from "./Metric"; + +export default class SentenceTypeByLocationMetric extends Metric< + SentenceTypeByLocationRecord +> { + get records(): SentenceTypeByLocationRecord[] | undefined { + let recordsToReturn = this.getOrFetchRecords(); + if (!recordsToReturn) return undefined; + + recordsToReturn = recordsToReturn.filter( + recordMatchesLocality(this.localityId) + ); + + recordsToReturn = recordsToReturn.filter( + recordIsTotalByDimension(this.demographicView) + ); + return recordsToReturn; + } +} diff --git a/spotlight-client/src/contentModels/SupervisionSuccessRateDemographicsMetric.ts b/spotlight-client/src/contentModels/SupervisionSuccessRateDemographicsMetric.ts new file mode 100644 index 00000000..df44a41b --- /dev/null +++ b/spotlight-client/src/contentModels/SupervisionSuccessRateDemographicsMetric.ts @@ -0,0 +1,41 @@ +// Recidiviz - a data platform for criminal justice reform +// Copyright (C) 2021 Recidiviz, Inc. +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// ============================================================================= + +import { + recordIsTotalByDimension, + recordMatchesLocality, + SupervisionSuccessRateDemographicsRecord, +} from "../metricsApi"; +import Metric from "./Metric"; + +export default class SupervisionSuccessRateDemographicsMetric extends Metric< + SupervisionSuccessRateDemographicsRecord +> { + get records(): SupervisionSuccessRateDemographicsRecord[] | undefined { + let recordsToReturn = this.getOrFetchRecords(); + if (!recordsToReturn) return undefined; + + recordsToReturn = recordsToReturn.filter( + recordMatchesLocality(this.localityId) + ); + + recordsToReturn = recordsToReturn.filter( + recordIsTotalByDimension(this.demographicView) + ); + return recordsToReturn; + } +} diff --git a/spotlight-client/src/contentModels/SupervisionSuccessRateMonthlyMetric.ts b/spotlight-client/src/contentModels/SupervisionSuccessRateMonthlyMetric.ts new file mode 100644 index 00000000..ac60c267 --- /dev/null +++ b/spotlight-client/src/contentModels/SupervisionSuccessRateMonthlyMetric.ts @@ -0,0 +1,37 @@ +// Recidiviz - a data platform for criminal justice reform +// Copyright (C) 2021 Recidiviz, Inc. +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// ============================================================================= + +import { + recordMatchesLocality, + SupervisionSuccessRateMonthlyRecord, +} from "../metricsApi"; +import Metric from "./Metric"; + +export default class SupervisionSuccessRateMonthlyMetric extends Metric< + SupervisionSuccessRateMonthlyRecord +> { + get records(): SupervisionSuccessRateMonthlyRecord[] | undefined { + let recordsToReturn = this.getOrFetchRecords(); + if (!recordsToReturn) return undefined; + + recordsToReturn = recordsToReturn.filter( + recordMatchesLocality(this.localityId) + ); + + return recordsToReturn; + } +} diff --git a/spotlight-client/src/contentModels/SystemNarrative.ts b/spotlight-client/src/contentModels/SystemNarrative.ts index aeda2593..a79602db 100644 --- a/spotlight-client/src/contentModels/SystemNarrative.ts +++ b/spotlight-client/src/contentModels/SystemNarrative.ts @@ -19,12 +19,13 @@ import { SystemNarrativeContent, SystemNarrativeTypeId, } from "../contentApi/types"; -import { AnyMetric, isAnyMetric, MetricMapping } from "./types"; +import Metric from "./Metric"; +import { MetricMapping, MetricRecord } from "./types"; export type SystemNarrativeSection = { title: string; body: string; - metric: AnyMetric; + metric: Metric; }; type ConstructorArgs = { @@ -64,8 +65,8 @@ export function createSystemNarrative({ // building sections in a type-safe way: make sure the related metric // actually exists or else the section is omitted content.sections.forEach(({ title, body, metricTypeId }) => { - const metric = allMetrics[metricTypeId]; - if (isAnyMetric(metric)) { + const metric = allMetrics.get(metricTypeId); + if (metric instanceof Metric) { sections.push({ title, body, metric }); } }); diff --git a/spotlight-client/src/contentModels/Tenant.test.ts b/spotlight-client/src/contentModels/Tenant.test.ts index f72257c6..c1e99586 100644 --- a/spotlight-client/src/contentModels/Tenant.test.ts +++ b/spotlight-client/src/contentModels/Tenant.test.ts @@ -56,9 +56,9 @@ test.each([ const expectedMetrics = Object.keys(fixture.metrics).filter(isMetricTypeId); expectedMetrics.forEach((metricId) => - expect(tenant.metrics[metricId]).toBeDefined() + expect(tenant.metrics.get(metricId)).toBeDefined() ); - expect(expectedMetrics.length).toBe(Object.keys(tenant.metrics).length); + expect(expectedMetrics.length).toBe(tenant.metrics.size); }); test.each([ @@ -135,18 +135,18 @@ test.each([ } // the collection should contain some or all of the metrics enumerated above and no others expectedMetricKeys.forEach((key) => { - if (tenant.metrics[key]) { + if (tenant.metrics.has(key)) { expectedMetricCount += 1; - expect(tenant.metrics[key]).toBe(metricsInCollection[key]); - if (tenant.metrics[key]) { - expect(metricsInCollection[key] instanceof Metric).toBe(true); + expect(tenant.metrics.get(key)).toBe(metricsInCollection.get(key)); + if (tenant.metrics.has(key)) { + expect(metricsInCollection.get(key) instanceof Metric).toBe(true); } else { - expect(metricsInCollection[key]).toBeUndefined(); + expect(metricsInCollection.get(key)).toBeUndefined(); } } }); - expect(Object.keys(metricsInCollection).length).toBe(expectedMetricCount); + expect(metricsInCollection.size).toBe(expectedMetricCount); }); }); @@ -157,15 +157,15 @@ test("collections and metrics without content are excluded from mapping", () => // collection exists but one of its metrics doesn't const prisonCollection = tenant.collections.get("Prison"); expect(prisonCollection instanceof Collection).toBe(true); - expect(tenant.metrics.PrisonReleaseTypeAggregate).toBeUndefined(); + expect(tenant.metrics.get("PrisonReleaseTypeAggregate")).toBeUndefined(); expect( // @ts-expect-error: prisonCollection is not undefined, we just tested it - prisonCollection.metrics.PrisonReleaseTypeAggregate + prisonCollection.metrics.get("PrisonReleaseTypeAggregate") ).toBeUndefined(); // metric exists but one of its collections doesn't expect(tenant.collections.has("Sentencing")).toBe(false); - const sentenceMetric = tenant.metrics.SentencePopulationCurrent; + const sentenceMetric = tenant.metrics.get("SentencePopulationCurrent"); expect(sentenceMetric instanceof Metric).toBe(true); // @ts-expect-error: sentenceMetric is not undefined, we just tested it expect(sentenceMetric.collections.Sentencing).toBeUndefined(); diff --git a/spotlight-client/src/contentModels/Tenant.ts b/spotlight-client/src/contentModels/Tenant.ts index 4e920a1e..f2b7e3ad 100644 --- a/spotlight-client/src/contentModels/Tenant.ts +++ b/spotlight-client/src/contentModels/Tenant.ts @@ -22,7 +22,7 @@ import { TenantId, } from "../contentApi/types"; import { createCollection } from "./Collection"; -import { createMetricMapping } from "./Metric"; +import createMetricMapping from "./createMetricMapping"; import { createSystemNarrative } from "./SystemNarrative"; import { CollectionMap, MetricMapping, SystemNarrativeMapping } from "./types"; diff --git a/spotlight-client/src/contentModels/__snapshots__/Metric.test.ts.snap b/spotlight-client/src/contentModels/__snapshots__/Metric.test.ts.snap index 37e130db..5fc6565e 100644 --- a/spotlight-client/src/contentModels/__snapshots__/Metric.test.ts.snap +++ b/spotlight-client/src/contentModels/__snapshots__/Metric.test.ts.snap @@ -1744,94298 +1744,10047 @@ Array [ "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 7, - "date": "2000-01-01", + "ageBucket": "ALL", + "count": 209, + "date": "2000-02-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 61, - "date": "2000-01-01", + "ageBucket": "ALL", + "count": 204, + "date": "2000-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 29, - "date": "2000-01-01", + "ageBucket": "ALL", + "count": 200, + "date": "2000-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 59, - "date": "2000-01-01", + "ageBucket": "ALL", + "count": 197, + "date": "2000-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 68, - "date": "2000-01-01", + "ageBucket": "ALL", + "count": 197, + "date": "2000-06-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 49, - "date": "2000-01-01", + "count": 182, + "date": "2000-07-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 56, - "date": "2000-01-01", + "count": 194, + "date": "2000-08-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 45, - "date": "2000-01-01", + "count": 186, + "date": "2000-09-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 47, - "date": "2000-01-01", + "count": 176, + "date": "2000-10-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 28, - "date": "2000-01-01", + "count": 182, + "date": "2000-11-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 89, - "date": "2000-01-01", - "gender": "MALE", + "count": 175, + "date": "2000-12-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 136, - "date": "2000-01-01", - "gender": "FEMALE", + "count": 168, + "date": "2001-01-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 209, - "date": "2000-02-01", + "count": 177, + "date": "2001-02-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 7, - "date": "2000-02-01", + "ageBucket": "ALL", + "count": 170, + "date": "2001-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 56, - "date": "2000-02-01", + "ageBucket": "ALL", + "count": 176, + "date": "2001-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 27, - "date": "2000-02-01", + "ageBucket": "ALL", + "count": 183, + "date": "2001-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 55, - "date": "2000-02-01", + "ageBucket": "ALL", + "count": 176, + "date": "2001-06-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 64, - "date": "2000-02-01", + "ageBucket": "ALL", + "count": 167, + "date": "2001-07-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 45, - "date": "2000-02-01", + "count": 179, + "date": "2001-08-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 52, - "date": "2000-02-01", + "count": 178, + "date": "2001-09-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 42, - "date": "2000-02-01", + "count": 186, + "date": "2001-10-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 44, - "date": "2000-02-01", + "count": 181, + "date": "2001-11-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 26, - "date": "2000-02-01", + "count": 192, + "date": "2001-12-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 82, - "date": "2000-02-01", - "gender": "MALE", + "count": 190, + "date": "2002-01-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 127, - "date": "2000-02-01", - "gender": "FEMALE", + "count": 175, + "date": "2002-02-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 204, - "date": "2000-03-01", + "count": 182, + "date": "2002-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 7, - "date": "2000-03-01", + "ageBucket": "ALL", + "count": 187, + "date": "2002-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 55, - "date": "2000-03-01", + "ageBucket": "ALL", + "count": 172, + "date": "2002-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 27, - "date": "2000-03-01", + "ageBucket": "ALL", + "count": 180, + "date": "2002-06-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 54, - "date": "2000-03-01", + "ageBucket": "ALL", + "count": 184, + "date": "2002-07-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 62, - "date": "2000-03-01", + "ageBucket": "ALL", + "count": 188, + "date": "2002-08-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 44, - "date": "2000-03-01", + "count": 190, + "date": "2002-09-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 50, - "date": "2000-03-01", + "count": 217, + "date": "2002-10-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 41, - "date": "2000-03-01", + "count": 214, + "date": "2002-11-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 43, - "date": "2000-03-01", + "count": 222, + "date": "2002-12-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 25, - "date": "2000-03-01", + "count": 214, + "date": "2003-01-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 80, - "date": "2000-03-01", - "gender": "MALE", + "count": 214, + "date": "2003-02-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 124, - "date": "2000-03-01", - "gender": "FEMALE", + "count": 241, + "date": "2003-03-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 200, - "date": "2000-04-01", + "count": 258, + "date": "2003-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 6, - "date": "2000-04-01", + "ageBucket": "ALL", + "count": 288, + "date": "2003-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 54, - "date": "2000-04-01", + "ageBucket": "ALL", + "count": 281, + "date": "2003-06-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 26, - "date": "2000-04-01", + "ageBucket": "ALL", + "count": 285, + "date": "2003-07-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 53, - "date": "2000-04-01", + "ageBucket": "ALL", + "count": 309, + "date": "2003-08-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 61, - "date": "2000-04-01", + "ageBucket": "ALL", + "count": 281, + "date": "2003-09-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 43, - "date": "2000-04-01", + "count": 281, + "date": "2003-10-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 49, - "date": "2000-04-01", + "count": 287, + "date": "2003-11-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 40, - "date": "2000-04-01", + "count": 309, + "date": "2003-12-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 42, - "date": "2000-04-01", + "count": 304, + "date": "2004-01-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 25, - "date": "2000-04-01", + "count": 299, + "date": "2004-02-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 79, - "date": "2000-04-01", - "gender": "MALE", + "count": 302, + "date": "2004-03-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 121, - "date": "2000-04-01", - "gender": "FEMALE", + "count": 318, + "date": "2004-04-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 197, - "date": "2000-05-01", + "count": 301, + "date": "2004-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 6, - "date": "2000-05-01", + "ageBucket": "ALL", + "count": 315, + "date": "2004-06-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 53, - "date": "2000-05-01", + "ageBucket": "ALL", + "count": 319, + "date": "2004-07-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 26, - "date": "2000-05-01", + "ageBucket": "ALL", + "count": 321, + "date": "2004-08-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 52, - "date": "2000-05-01", + "ageBucket": "ALL", + "count": 328, + "date": "2004-09-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 60, - "date": "2000-05-01", + "ageBucket": "ALL", + "count": 310, + "date": "2004-10-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 43, - "date": "2000-05-01", + "count": 309, + "date": "2004-11-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 49, - "date": "2000-05-01", + "count": 322, + "date": "2004-12-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 40, - "date": "2000-05-01", + "count": 335, + "date": "2005-01-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 41, - "date": "2000-05-01", + "count": 339, + "date": "2005-02-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 24, - "date": "2000-05-01", + "count": 342, + "date": "2005-03-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 78, - "date": "2000-05-01", - "gender": "MALE", + "count": 348, + "date": "2005-04-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 119, - "date": "2000-05-01", - "gender": "FEMALE", + "count": 350, + "date": "2005-05-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 197, - "date": "2000-06-01", + "count": 359, + "date": "2005-06-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 6, - "date": "2000-06-01", + "ageBucket": "ALL", + "count": 368, + "date": "2005-07-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 53, - "date": "2000-06-01", + "ageBucket": "ALL", + "count": 373, + "date": "2005-08-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 26, - "date": "2000-06-01", + "ageBucket": "ALL", + "count": 396, + "date": "2005-09-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 52, - "date": "2000-06-01", + "ageBucket": "ALL", + "count": 402, + "date": "2005-10-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 60, - "date": "2000-06-01", + "ageBucket": "ALL", + "count": 394, + "date": "2005-11-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 43, - "date": "2000-06-01", + "count": 387, + "date": "2005-12-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 49, - "date": "2000-06-01", + "count": 387, + "date": "2006-01-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 40, - "date": "2000-06-01", + "count": 422, + "date": "2006-02-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 41, - "date": "2000-06-01", + "count": 415, + "date": "2006-03-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 24, - "date": "2000-06-01", + "count": 433, + "date": "2006-04-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 78, - "date": "2000-06-01", - "gender": "MALE", + "count": 470, + "date": "2006-05-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 119, - "date": "2000-06-01", - "gender": "FEMALE", + "count": 469, + "date": "2006-06-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 182, - "date": "2000-07-01", + "count": 474, + "date": "2006-07-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 6, - "date": "2000-07-01", + "ageBucket": "ALL", + "count": 486, + "date": "2006-08-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 49, - "date": "2000-07-01", + "ageBucket": "ALL", + "count": 461, + "date": "2006-09-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 24, - "date": "2000-07-01", + "ageBucket": "ALL", + "count": 476, + "date": "2006-10-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 48, - "date": "2000-07-01", + "ageBucket": "ALL", + "count": 497, + "date": "2006-11-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 55, - "date": "2000-07-01", + "ageBucket": "ALL", + "count": 479, + "date": "2006-12-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 40, - "date": "2000-07-01", + "count": 487, + "date": "2007-01-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 45, - "date": "2000-07-01", + "count": 498, + "date": "2007-02-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 37, - "date": "2000-07-01", + "count": 494, + "date": "2007-03-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 38, - "date": "2000-07-01", + "count": 484, + "date": "2007-04-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 23, - "date": "2000-07-01", + "count": 493, + "date": "2007-05-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 72, - "date": "2000-07-01", - "gender": "MALE", + "count": 462, + "date": "2007-06-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 110, - "date": "2000-07-01", - "gender": "FEMALE", + "count": 448, + "date": "2007-07-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 194, - "date": "2000-08-01", + "count": 458, + "date": "2007-08-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 6, - "date": "2000-08-01", + "ageBucket": "ALL", + "count": 458, + "date": "2007-09-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 52, - "date": "2000-08-01", + "ageBucket": "ALL", + "count": 449, + "date": "2007-10-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 25, - "date": "2000-08-01", + "ageBucket": "ALL", + "count": 451, + "date": "2007-11-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 51, - "date": "2000-08-01", + "ageBucket": "ALL", + "count": 461, + "date": "2007-12-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 59, - "date": "2000-08-01", + "ageBucket": "ALL", + "count": 486, + "date": "2008-01-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 42, - "date": "2000-08-01", + "count": 488, + "date": "2008-02-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 48, - "date": "2000-08-01", + "count": 501, + "date": "2008-03-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 39, - "date": "2000-08-01", + "count": 494, + "date": "2008-04-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 41, - "date": "2000-08-01", + "count": 535, + "date": "2008-05-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 24, - "date": "2000-08-01", + "count": 525, + "date": "2008-06-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 77, - "date": "2000-08-01", - "gender": "MALE", + "count": 523, + "date": "2008-07-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 117, - "date": "2000-08-01", - "gender": "FEMALE", + "count": 526, + "date": "2008-08-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 186, - "date": "2000-09-01", + "count": 517, + "date": "2008-09-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 6, - "date": "2000-09-01", + "ageBucket": "ALL", + "count": 546, + "date": "2008-10-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 50, - "date": "2000-09-01", + "ageBucket": "ALL", + "count": 506, + "date": "2008-11-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 24, - "date": "2000-09-01", + "ageBucket": "ALL", + "count": 488, + "date": "2008-12-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 49, - "date": "2000-09-01", + "ageBucket": "ALL", + "count": 504, + "date": "2009-01-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 57, - "date": "2000-09-01", + "ageBucket": "ALL", + "count": 537, + "date": "2009-02-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 40, - "date": "2000-09-01", + "count": 528, + "date": "2009-03-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 46, - "date": "2000-09-01", + "count": 519, + "date": "2009-04-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 38, - "date": "2000-09-01", + "count": 537, + "date": "2009-05-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 39, - "date": "2000-09-01", + "count": 510, + "date": "2009-06-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 23, - "date": "2000-09-01", + "count": 504, + "date": "2009-07-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 73, - "date": "2000-09-01", - "gender": "MALE", + "count": 517, + "date": "2009-08-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 113, - "date": "2000-09-01", - "gender": "FEMALE", + "count": 503, + "date": "2009-09-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 176, - "date": "2000-10-01", + "count": 494, + "date": "2009-10-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 6, - "date": "2000-10-01", + "ageBucket": "ALL", + "count": 498, + "date": "2009-11-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 47, - "date": "2000-10-01", + "ageBucket": "ALL", + "count": 478, + "date": "2009-12-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 23, - "date": "2000-10-01", + "ageBucket": "ALL", + "count": 487, + "date": "2010-01-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 46, - "date": "2000-10-01", + "ageBucket": "ALL", + "count": 512, + "date": "2010-02-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 54, - "date": "2000-10-01", + "ageBucket": "ALL", + "count": 516, + "date": "2010-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 38, - "date": "2000-10-01", + "count": 528, + "date": "2010-04-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 44, - "date": "2000-10-01", + "count": 536, + "date": "2010-05-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 36, - "date": "2000-10-01", + "count": 532, + "date": "2010-06-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 37, - "date": "2000-10-01", + "count": 548, + "date": "2010-07-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 22, - "date": "2000-10-01", + "count": 565, + "date": "2010-08-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 69, - "date": "2000-10-01", - "gender": "MALE", + "count": 552, + "date": "2010-09-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 107, - "date": "2000-10-01", - "gender": "FEMALE", + "count": 561, + "date": "2010-10-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 182, - "date": "2000-11-01", + "count": 567, + "date": "2010-11-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 6, - "date": "2000-11-01", + "ageBucket": "ALL", + "count": 567, + "date": "2010-12-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 49, - "date": "2000-11-01", + "ageBucket": "ALL", + "count": 585, + "date": "2011-01-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 24, - "date": "2000-11-01", + "ageBucket": "ALL", + "count": 576, + "date": "2011-02-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 48, - "date": "2000-11-01", + "ageBucket": "ALL", + "count": 583, + "date": "2011-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 55, - "date": "2000-11-01", + "ageBucket": "ALL", + "count": 574, + "date": "2011-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 40, - "date": "2000-11-01", + "count": 591, + "date": "2011-05-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 45, - "date": "2000-11-01", + "count": 572, + "date": "2011-06-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 37, - "date": "2000-11-01", + "count": 541, + "date": "2011-07-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 61, - "date": "2000-11-01", + "count": 537, + "date": "2011-08-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 72, - "date": "2000-11-01", - "gender": "MALE", + "count": 553, + "date": "2011-09-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 110, - "date": "2000-11-01", - "gender": "FEMALE", + "count": 565, + "date": "2011-10-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 175, - "date": "2000-12-01", + "count": 576, + "date": "2011-11-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 6, - "date": "2000-12-01", + "ageBucket": "ALL", + "count": 569, + "date": "2011-12-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 47, - "date": "2000-12-01", + "ageBucket": "ALL", + "count": 585, + "date": "2012-01-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 23, - "date": "2000-12-01", + "ageBucket": "ALL", + "count": 576, + "date": "2012-02-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 46, - "date": "2000-12-01", + "ageBucket": "ALL", + "count": 568, + "date": "2012-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 53, - "date": "2000-12-01", + "ageBucket": "ALL", + "count": 567, + "date": "2012-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 38, - "date": "2000-12-01", + "count": 582, + "date": "2012-05-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 43, - "date": "2000-12-01", + "count": 591, + "date": "2012-06-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 35, - "date": "2000-12-01", + "count": 596, + "date": "2012-07-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 37, - "date": "2000-12-01", + "count": 601, + "date": "2012-08-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 22, - "date": "2000-12-01", + "count": 608, + "date": "2012-09-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 69, - "date": "2000-12-01", - "gender": "MALE", + "count": 594, + "date": "2012-10-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 106, - "date": "2000-12-01", - "gender": "FEMALE", + "count": 572, + "date": "2012-11-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 168, - "date": "2001-01-01", + "count": 575, + "date": "2012-12-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 5, - "date": "2001-01-01", + "ageBucket": "ALL", + "count": 576, + "date": "2013-01-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 45, - "date": "2001-01-01", + "ageBucket": "ALL", + "count": 594, + "date": "2013-02-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 22, - "date": "2001-01-01", + "ageBucket": "ALL", + "count": 644, + "date": "2013-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 44, - "date": "2001-01-01", + "ageBucket": "ALL", + "count": 619, + "date": "2013-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 51, - "date": "2001-01-01", + "ageBucket": "ALL", + "count": 664, + "date": "2013-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 36, - "date": "2001-01-01", + "count": 634, + "date": "2013-06-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 42, - "date": "2001-01-01", + "count": 682, + "date": "2013-07-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 34, - "date": "2001-01-01", + "count": 638, + "date": "2013-08-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 56, - "date": "2001-01-01", + "count": 643, + "date": "2013-09-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 66, - "date": "2001-01-01", - "gender": "MALE", + "count": 673, + "date": "2013-10-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 102, - "date": "2001-01-01", - "gender": "FEMALE", + "count": 678, + "date": "2013-11-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 177, - "date": "2001-02-01", + "count": 672, + "date": "2013-12-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 6, - "date": "2001-02-01", + "ageBucket": "ALL", + "count": 707, + "date": "2014-01-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 48, - "date": "2001-02-01", + "ageBucket": "ALL", + "count": 686, + "date": "2014-02-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 23, - "date": "2001-02-01", + "ageBucket": "ALL", + "count": 729, + "date": "2014-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 47, - "date": "2001-02-01", + "ageBucket": "ALL", + "count": 720, + "date": "2014-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 54, - "date": "2001-02-01", + "ageBucket": "ALL", + "count": 717, + "date": "2014-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 38, - "date": "2001-02-01", + "count": 728, + "date": "2014-06-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 44, - "date": "2001-02-01", + "count": 759, + "date": "2014-07-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 36, - "date": "2001-02-01", + "count": 741, + "date": "2014-08-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 59, - "date": "2001-02-01", + "count": 736, + "date": "2014-09-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 70, - "date": "2001-02-01", - "gender": "MALE", + "count": 709, + "date": "2014-10-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 107, - "date": "2001-02-01", - "gender": "FEMALE", + "count": 713, + "date": "2014-11-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 170, - "date": "2001-03-01", + "count": 711, + "date": "2014-12-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 5, - "date": "2001-03-01", + "ageBucket": "ALL", + "count": 689, + "date": "2015-01-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 46, - "date": "2001-03-01", + "ageBucket": "ALL", + "count": 678, + "date": "2015-02-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 22, - "date": "2001-03-01", + "ageBucket": "ALL", + "count": 662, + "date": "2015-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 45, - "date": "2001-03-01", + "ageBucket": "ALL", + "count": 667, + "date": "2015-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 52, - "date": "2001-03-01", + "ageBucket": "ALL", + "count": 706, + "date": "2015-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 37, - "date": "2001-03-01", + "count": 741, + "date": "2015-06-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 42, - "date": "2001-03-01", + "count": 701, + "date": "2015-07-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 34, - "date": "2001-03-01", + "count": 714, + "date": "2015-08-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 57, - "date": "2001-03-01", + "count": 740, + "date": "2015-09-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 67, - "date": "2001-03-01", - "gender": "MALE", + "count": 742, + "date": "2015-10-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 103, - "date": "2001-03-01", - "gender": "FEMALE", + "count": 750, + "date": "2015-11-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 176, - "date": "2001-04-01", + "count": 745, + "date": "2015-12-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 6, - "date": "2001-04-01", + "ageBucket": "ALL", + "count": 772, + "date": "2016-01-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 47, - "date": "2001-04-01", + "ageBucket": "ALL", + "count": 821, + "date": "2016-02-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 23, - "date": "2001-04-01", + "ageBucket": "ALL", + "count": 839, + "date": "2016-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 46, - "date": "2001-04-01", + "ageBucket": "ALL", + "count": 901, + "date": "2016-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 54, - "date": "2001-04-01", + "ageBucket": "ALL", + "count": 895, + "date": "2016-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 38, - "date": "2001-04-01", + "count": 914, + "date": "2016-06-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 44, - "date": "2001-04-01", + "count": 893, + "date": "2016-07-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 36, - "date": "2001-04-01", + "count": 929, + "date": "2016-08-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 59, - "date": "2001-04-01", + "count": 909, + "date": "2016-09-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 69, - "date": "2001-04-01", - "gender": "MALE", + "count": 918, + "date": "2016-10-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 107, - "date": "2001-04-01", - "gender": "FEMALE", + "count": 901, + "date": "2016-11-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 183, - "date": "2001-05-01", + "count": 893, + "date": "2016-12-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 6, - "date": "2001-05-01", + "ageBucket": "ALL", + "count": 851, + "date": "2017-01-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 49, - "date": "2001-05-01", + "ageBucket": "ALL", + "count": 860, + "date": "2017-02-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 24, - "date": "2001-05-01", + "ageBucket": "ALL", + "count": 849, + "date": "2017-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 48, - "date": "2001-05-01", + "ageBucket": "ALL", + "count": 876, + "date": "2017-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 56, - "date": "2001-05-01", + "ageBucket": "ALL", + "count": 864, + "date": "2017-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 40, - "date": "2001-05-01", + "count": 880, + "date": "2017-06-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 45, - "date": "2001-05-01", + "count": 869, + "date": "2017-07-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 37, - "date": "2001-05-01", + "count": 882, + "date": "2017-08-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 61, - "date": "2001-05-01", + "count": 929, + "date": "2017-09-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 72, - "date": "2001-05-01", - "gender": "MALE", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 111, - "date": "2001-05-01", - "gender": "FEMALE", + "count": 921, + "date": "2017-10-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 176, - "date": "2001-06-01", + "count": 917, + "date": "2017-11-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 6, - "date": "2001-06-01", + "ageBucket": "ALL", + "count": 991, + "date": "2017-12-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 47, - "date": "2001-06-01", + "ageBucket": "ALL", + "count": 964, + "date": "2018-01-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 23, - "date": "2001-06-01", + "ageBucket": "ALL", + "count": 963, + "date": "2018-02-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 46, - "date": "2001-06-01", + "ageBucket": "ALL", + "count": 949, + "date": "2018-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 54, - "date": "2001-06-01", + "ageBucket": "ALL", + "count": 953, + "date": "2018-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 38, - "date": "2001-06-01", + "count": 991, + "date": "2018-05-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 44, - "date": "2001-06-01", + "count": 968, + "date": "2018-06-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 36, - "date": "2001-06-01", + "count": 990, + "date": "2018-07-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 59, - "date": "2001-06-01", + "count": 962, + "date": "2018-08-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 69, - "date": "2001-06-01", - "gender": "MALE", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 107, - "date": "2001-06-01", - "gender": "FEMALE", + "count": 965, + "date": "2018-09-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 167, - "date": "2001-07-01", + "count": 1005, + "date": "2018-10-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 5, - "date": "2001-07-01", + "ageBucket": "ALL", + "count": 977, + "date": "2018-11-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 45, - "date": "2001-07-01", + "ageBucket": "ALL", + "count": 957, + "date": "2018-12-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 22, - "date": "2001-07-01", + "ageBucket": "ALL", + "count": 922, + "date": "2019-01-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 44, - "date": "2001-07-01", + "ageBucket": "ALL", + "count": 943, + "date": "2019-02-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 51, - "date": "2001-07-01", + "ageBucket": "ALL", + "count": 920, + "date": "2019-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 36, - "date": "2001-07-01", + "count": 874, + "date": "2019-04-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 41, - "date": "2001-07-01", + "count": 896, + "date": "2019-05-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 34, - "date": "2001-07-01", + "count": 872, + "date": "2019-06-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 56, - "date": "2001-07-01", + "count": 897, + "date": "2019-07-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 66, - "date": "2001-07-01", - "gender": "MALE", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 101, - "date": "2001-07-01", - "gender": "FEMALE", + "count": 927, + "date": "2019-08-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 179, - "date": "2001-08-01", + "count": 896, + "date": "2019-09-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 6, - "date": "2001-08-01", + "ageBucket": "ALL", + "count": 895, + "date": "2019-10-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 48, - "date": "2001-08-01", + "ageBucket": "ALL", + "count": 883, + "date": "2019-11-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 23, - "date": "2001-08-01", + "ageBucket": "ALL", + "count": 859, + "date": "2019-12-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 47, - "date": "2001-08-01", + "ageBucket": "ALL", + "count": 851, + "date": "2020-01-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 54, - "date": "2001-08-01", + "ageBucket": "ALL", + "count": 907, + "date": "2020-02-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 39, - "date": "2001-08-01", + "count": 1020, + "date": "2020-03-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 44, - "date": "2001-08-01", + "count": 1003, + "date": "2020-04-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 36, - "date": "2001-08-01", + "count": 1021, + "date": "2020-05-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 60, - "date": "2001-08-01", + "count": 1011, + "date": "2020-06-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 71, - "date": "2001-08-01", - "gender": "MALE", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 108, - "date": "2001-08-01", - "gender": "FEMALE", + "count": 949, + "date": "2020-07-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 178, - "date": "2001-09-01", + "count": 935, + "date": "2020-08-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, +] +`; + +exports[`data fetching for metric ParoleProgrammingCurrent 1`] = ` +Array [ Object { - "ageBucket": "<25", - "count": 6, - "date": "2001-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", + "count": 7, + "locality": "1", }, Object { - "ageBucket": "25-29", - "count": 48, - "date": "2001-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", + "count": 51, + "locality": "5", }, Object { - "ageBucket": "30-34", - "count": 23, - "date": "2001-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", + "count": 21, + "locality": "6", }, Object { - "ageBucket": "35-39", - "count": 47, - "date": "2001-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", + "count": 25, + "locality": "4", }, Object { - "ageBucket": "40<", - "count": 54, - "date": "2001-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", + "count": 47, + "locality": "2", }, Object { - "ageBucket": "ALL", - "count": 39, - "date": "2001-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "count": 50, + "locality": "3", }, Object { - "ageBucket": "ALL", - "count": 44, - "date": "2001-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", + "count": 106, + "locality": "7", }, Object { - "ageBucket": "ALL", - "count": 36, - "date": "2001-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "count": 17, + "locality": "8", }, +] +`; + +exports[`data fetching for metric ParoleRevocationsAggregate 1`] = ` +Array [ Object { "ageBucket": "ALL", - "count": 59, - "date": "2001-09-01", + "category": "abscond", + "count": 180, "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 70, - "date": "2001-09-01", - "gender": "MALE", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 108, - "date": "2001-09-01", - "gender": "FEMALE", + "category": "offend", + "count": 144, + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 186, - "date": "2001-10-01", + "category": "technical", + "count": 360, "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 6, - "date": "2001-10-01", + "ageBucket": "ALL", + "category": "unknown", + "count": 36, "gender": "ALL", "raceOrEthnicity": "ALL", }, +] +`; + +exports[`data fetching for metric ParoleSuccessAggregate 1`] = ` +Array [ Object { - "ageBucket": "25-29", - "count": 50, - "date": "2001-10-01", + "ageBucket": "ALL", "gender": "ALL", + "locality": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.727142344926497, + "rateDenominator": 2789, + "rateNumerator": 2028, }, +] +`; + +exports[`data fetching for metric ParoleSuccessHistorical 1`] = ` +Array [ Object { - "ageBucket": "30-34", - "count": 24, - "date": "2001-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 6, + "rate": 0.7443181818181818, + "rateDenominator": 176, + "rateNumerator": 131, + "year": 2019, }, Object { - "ageBucket": "35-39", - "count": 49, - "date": "2001-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 5, + "rate": 0.7295081967213115, + "rateDenominator": 122, + "rateNumerator": 89, + "year": 2018, }, Object { - "ageBucket": "40<", - "count": 57, - "date": "2001-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 6, + "rate": 0.719626168224299, + "rateDenominator": 107, + "rateNumerator": 77, + "year": 2018, }, Object { - "ageBucket": "ALL", - "count": 40, - "date": "2001-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "locality": "ALL", + "month": 11, + "rate": 0.7079207920792079, + "rateDenominator": 202, + "rateNumerator": 143, + "year": 2018, }, Object { - "ageBucket": "ALL", - "count": 46, - "date": "2001-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", + "locality": "ALL", + "month": 2, + "rate": 0.7195121951219512, + "rateDenominator": 164, + "rateNumerator": 118, + "year": 2018, }, Object { - "ageBucket": "ALL", - "count": 38, - "date": "2001-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "locality": "ALL", + "month": 9, + "rate": 0.6962025316455697, + "rateDenominator": 79, + "rateNumerator": 55, + "year": 2019, }, Object { - "ageBucket": "ALL", - "count": 39, - "date": "2001-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", + "locality": "ALL", + "month": 10, + "rate": 0.75, + "rateDenominator": 80, + "rateNumerator": 60, + "year": 2017, }, Object { - "ageBucket": "ALL", - "count": 73, - "date": "2001-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 4, + "rate": 0.7735849056603774, + "rateDenominator": 53, + "rateNumerator": 41, + "year": 2020, }, Object { - "ageBucket": "ALL", - "count": 113, - "date": "2001-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 8, + "rate": 0.7487179487179487, + "rateDenominator": 195, + "rateNumerator": 146, + "year": 2017, }, Object { - "ageBucket": "ALL", - "count": 181, - "date": "2001-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 1, + "rate": 0.7699530516431925, + "rateDenominator": 213, + "rateNumerator": 164, + "year": 2018, }, Object { - "ageBucket": "<25", - "count": 6, - "date": "2001-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 3, + "rate": 0.7375, + "rateDenominator": 160, + "rateNumerator": 118, + "year": 2018, }, Object { - "ageBucket": "25-29", - "count": 49, - "date": "2001-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 12, + "rate": 0.7209302325581395, + "rateDenominator": 86, + "rateNumerator": 62, + "year": 2017, }, Object { - "ageBucket": "30-34", - "count": 24, - "date": "2001-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 4, + "rate": 0.7265625, + "rateDenominator": 128, + "rateNumerator": 93, + "year": 2019, }, Object { - "ageBucket": "35-39", - "count": 48, - "date": "2001-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 12, + "rate": 0.7641509433962265, + "rateDenominator": 106, + "rateNumerator": 81, + "year": 2019, }, Object { - "ageBucket": "40<", - "count": 55, - "date": "2001-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 12, + "rate": 0.7444444444444445, + "rateDenominator": 90, + "rateNumerator": 67, + "year": 2018, }, Object { - "ageBucket": "ALL", - "count": 39, - "date": "2001-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "locality": "ALL", + "month": 9, + "rate": 0.7424242424242424, + "rateDenominator": 66, + "rateNumerator": 49, + "year": 2017, }, Object { - "ageBucket": "ALL", - "count": 45, - "date": "2001-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", + "locality": "ALL", + "month": 7, + "rate": 0.7927927927927928, + "rateDenominator": 111, + "rateNumerator": 88, + "year": 2018, }, Object { - "ageBucket": "ALL", - "count": 37, - "date": "2001-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "locality": "ALL", + "month": 11, + "rate": 0.7027027027027027, + "rateDenominator": 74, + "rateNumerator": 52, + "year": 2019, }, Object { - "ageBucket": "ALL", - "count": 38, - "date": "2001-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", + "locality": "ALL", + "month": 7, + "rate": 0.35294117647058826, + "rateDenominator": 17, + "rateNumerator": 6, + "year": 2020, }, Object { - "ageBucket": "ALL", - "count": 71, - "date": "2001-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 9, + "rate": 0.7938931297709924, + "rateDenominator": 131, + "rateNumerator": 104, + "year": 2018, }, Object { - "ageBucket": "ALL", - "count": 110, - "date": "2001-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 6, + "rate": 0.3125, + "rateDenominator": 48, + "rateNumerator": 15, + "year": 2020, }, Object { - "ageBucket": "ALL", - "count": 192, - "date": "2001-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 3, + "rate": 0.5897435897435898, + "rateDenominator": 39, + "rateNumerator": 23, + "year": 2020, }, Object { - "ageBucket": "<25", - "count": 6, - "date": "2001-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 1, + "rate": 0.7411764705882353, + "rateDenominator": 170, + "rateNumerator": 126, + "year": 2020, }, Object { - "ageBucket": "25-29", - "count": 52, - "date": "2001-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 5, + "rate": 0.8275862068965517, + "rateDenominator": 145, + "rateNumerator": 120, + "year": 2020, }, Object { - "ageBucket": "30-34", - "count": 25, - "date": "2001-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 2, + "rate": 0.7083333333333334, + "rateDenominator": 144, + "rateNumerator": 102, + "year": 2020, }, Object { - "ageBucket": "35-39", - "count": 51, - "date": "2001-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 10, + "rate": 0.6918238993710691, + "rateDenominator": 159, + "rateNumerator": 110, + "year": 2019, }, Object { - "ageBucket": "40<", - "count": 58, - "date": "2001-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 3, + "rate": 0.7247706422018348, + "rateDenominator": 218, + "rateNumerator": 158, + "year": 2019, }, Object { - "ageBucket": "ALL", - "count": 42, - "date": "2001-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "locality": "ALL", + "month": 7, + "rate": 0.7054794520547946, + "rateDenominator": 146, + "rateNumerator": 103, + "year": 2019, }, Object { - "ageBucket": "ALL", - "count": 47, - "date": "2001-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", + "locality": "ALL", + "month": 8, + "rate": 0.7652173913043478, + "rateDenominator": 115, + "rateNumerator": 88, + "year": 2019, }, Object { - "ageBucket": "ALL", - "count": 39, - "date": "2001-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "locality": "ALL", + "month": 10, + "rate": 0.6538461538461539, + "rateDenominator": 156, + "rateNumerator": 102, + "year": 2018, }, Object { - "ageBucket": "ALL", - "count": 40, - "date": "2001-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", + "locality": "ALL", + "month": 8, + "rate": 0.7857142857142857, + "rateDenominator": 210, + "rateNumerator": 165, + "year": 2018, + }, + Object { + "locality": "ALL", + "month": 11, + "rate": 0.7226277372262774, + "rateDenominator": 137, + "rateNumerator": 99, + "year": 2017, + }, + Object { + "locality": "ALL", + "month": 2, + "rate": 0.7152317880794702, + "rateDenominator": 151, + "rateNumerator": 108, + "year": 2019, + }, + Object { + "locality": "ALL", + "month": 4, + "rate": 0.7902097902097902, + "rateDenominator": 143, + "rateNumerator": 113, + "year": 2018, + }, + Object { + "locality": "ALL", + "month": 1, + "rate": 0.7379310344827587, + "rateDenominator": 145, + "rateNumerator": 107, + "year": 2019, + }, + Object { + "locality": "ALL", + "month": 5, + "rate": 0.725, + "rateDenominator": 80, + "rateNumerator": 58, + "year": 2019, }, +] +`; + +exports[`data fetching for metric PrisonAdmissionReasonsCurrent 1`] = ` +Array [ Object { "ageBucket": "ALL", - "count": 76, - "date": "2001-12-01", - "gender": "MALE", + "category": "newAdmission", + "count": 427, + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 116, - "date": "2001-12-01", - "gender": "FEMALE", + "category": "paroleRevoked", + "count": 309, + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 190, - "date": "2002-01-01", + "category": "probationRevoked", + "count": 245, "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 6, - "date": "2002-01-01", + "ageBucket": "ALL", + "category": "other", + "count": 481, "gender": "ALL", "raceOrEthnicity": "ALL", }, +] +`; + +exports[`data fetching for metric PrisonPopulationCurrent 1`] = ` +Array [ Object { - "ageBucket": "25-29", - "count": 51, - "date": "2002-01-01", + "ageBucket": "ALL", "gender": "ALL", + "locality": "TRC", + "population": 7, + "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + }, + Object { + "ageBucket": "ALL", + "gender": "MALE", + "locality": "FTPFAR", + "population": 1, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 25, - "date": "2002-01-01", + "ageBucket": "EXTERNAL_UNKNOWN", "gender": "ALL", + "locality": "JRCC", + "population": 1, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 50, - "date": "2002-01-01", + "ageBucket": "40<", "gender": "ALL", + "locality": "MTPMND", + "population": 3, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "40<", - "count": 58, - "date": "2002-01-01", "gender": "ALL", + "locality": "FTPMND", + "population": 0, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 41, - "date": "2002-01-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "locality": "GFC", + "population": 0, + "raceOrEthnicity": "HISPANIC", }, Object { "ageBucket": "ALL", - "count": 47, - "date": "2002-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", + "gender": "MALE", + "locality": "LRRP", + "population": 1, + "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "ALL", - "count": 38, - "date": "2002-01-01", + "ageBucket": "25-29", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "locality": "NDSP", + "population": 82, + "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "ALL", - "count": 40, - "date": "2002-01-01", + "ageBucket": "40<", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "locality": "GFC", + "population": 3, + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 75, - "date": "2002-01-01", "gender": "MALE", + "locality": "GFC", + "population": 7, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "ALL", - "count": 115, - "date": "2002-01-01", - "gender": "FEMALE", + "ageBucket": "35-39", + "gender": "ALL", + "locality": "TRC", + "population": 2, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 175, - "date": "2002-02-01", "gender": "ALL", + "locality": "ALL", + "population": 123, + "raceOrEthnicity": "HISPANIC", + }, + Object { + "ageBucket": "ALL", + "gender": "MALE", + "locality": "BTC", + "population": 21, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 6, - "date": "2002-02-01", + "ageBucket": "25-29", "gender": "ALL", + "locality": "FTPMND", + "population": 1, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "25-29", - "count": 47, - "date": "2002-02-01", "gender": "ALL", + "locality": "GFC", + "population": 1, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "30-34", - "count": 23, - "date": "2002-02-01", "gender": "ALL", + "locality": "JRCC", + "population": 74, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 46, - "date": "2002-02-01", + "ageBucket": "ALL", "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "MTPMND", + "population": 5, + "raceOrEthnicity": "WHITE", }, Object { "ageBucket": "40<", - "count": 53, - "date": "2002-02-01", "gender": "ALL", + "locality": "FTPFAR", + "population": 3, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 38, - "date": "2002-02-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "locality": "FTPMND", + "population": 5, + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 43, - "date": "2002-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", + "gender": "EXTERNAL_UNKNOWN", + "locality": "BTC", + "population": 1, + "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "ALL", - "count": 35, - "date": "2002-02-01", + "ageBucket": "35-39", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "locality": "DWCRC", + "population": 6, + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 37, - "date": "2002-02-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "locality": "MTPMND", + "population": 1, + "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", }, Object { "ageBucket": "ALL", - "count": 69, - "date": "2002-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", + "gender": "ALL", + "locality": "MTPMND", + "population": 0, + "raceOrEthnicity": "BLACK", }, Object { "ageBucket": "ALL", - "count": 106, - "date": "2002-02-01", "gender": "FEMALE", + "locality": "ALL", + "population": 67, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "ALL", - "count": 182, - "date": "2002-03-01", + "ageBucket": "40<", "gender": "ALL", + "locality": "MRCC", + "population": 49, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 6, - "date": "2002-03-01", + "ageBucket": "ALL", "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "BTC", + "population": 7, + "raceOrEthnicity": "BLACK", }, Object { - "ageBucket": "25-29", - "count": 49, - "date": "2002-03-01", + "ageBucket": "ALL", "gender": "ALL", + "locality": "DWCRC", + "population": 111, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 24, - "date": "2002-03-01", + "ageBucket": "ALL", "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "FTPMND", + "population": 1, + "raceOrEthnicity": "WHITE", }, Object { "ageBucket": "35-39", - "count": 48, - "date": "2002-03-01", "gender": "ALL", + "locality": "GFC", + "population": 1, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 55, - "date": "2002-03-01", + "ageBucket": "EXTERNAL_UNKNOWN", "gender": "ALL", + "locality": "MRCC", + "population": 0, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 40, - "date": "2002-03-01", + "gender": "EXTERNAL_UNKNOWN", + "locality": "ALL", + "population": 7, + "raceOrEthnicity": "ALL", + }, + Object { + "ageBucket": "<25", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "locality": "DWCRC", + "population": 9, + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 45, - "date": "2002-03-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "locality": "JRCC", + "population": 170, + "raceOrEthnicity": "WHITE", }, Object { "ageBucket": "ALL", - "count": 37, - "date": "2002-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "gender": "MALE", + "locality": "DWCRC", + "population": 2, + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 38, - "date": "2002-03-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "locality": "FTPMND", + "population": 0, + "raceOrEthnicity": "HISPANIC", }, Object { "ageBucket": "ALL", - "count": 72, - "date": "2002-03-01", - "gender": "MALE", + "gender": "FEMALE", + "locality": "JRCC", + "population": 0, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 110, - "date": "2002-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", + "gender": "ALL", + "locality": "TRC", + "population": 10, + "raceOrEthnicity": "WHITE", }, Object { "ageBucket": "ALL", - "count": 187, - "date": "2002-04-01", "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "MRCC", + "population": 2, + "raceOrEthnicity": "HISPANIC", }, Object { "ageBucket": "<25", - "count": 6, - "date": "2002-04-01", "gender": "ALL", + "locality": "GFC", + "population": 0, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 50, - "date": "2002-04-01", - "gender": "ALL", + "ageBucket": "ALL", + "gender": "EXTERNAL_UNKNOWN", + "locality": "MRCC", + "population": 0, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 25, - "date": "2002-04-01", + "ageBucket": "ALL", "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "BTC", + "population": 15, + "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", }, Object { - "ageBucket": "35-39", - "count": 49, - "date": "2002-04-01", + "ageBucket": "25-29", "gender": "ALL", + "locality": "DWCRC", + "population": 33, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 57, - "date": "2002-04-01", + "ageBucket": "25-29", "gender": "ALL", + "locality": "FTPFAR", + "population": 5, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "ALL", - "count": 41, - "date": "2002-04-01", + "ageBucket": "35-39", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "locality": "FTPMND", + "population": 2, + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 46, - "date": "2002-04-01", "gender": "ALL", + "locality": "ALL", + "population": 96, "raceOrEthnicity": "BLACK", }, Object { "ageBucket": "ALL", - "count": 38, - "date": "2002-04-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "locality": "BTC", + "population": 31, + "raceOrEthnicity": "WHITE", }, Object { "ageBucket": "ALL", - "count": 39, - "date": "2002-04-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "locality": "GFC", + "population": 3, + "raceOrEthnicity": "BLACK", }, Object { "ageBucket": "ALL", - "count": 74, - "date": "2002-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", + "gender": "ALL", + "locality": "LRRP", + "population": 0, + "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", }, Object { "ageBucket": "ALL", - "count": 113, - "date": "2002-04-01", - "gender": "FEMALE", + "gender": "ALL", + "locality": "MTPFAR", + "population": 2, + "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + }, + Object { + "ageBucket": "35-39", + "gender": "ALL", + "locality": "NDSP", + "population": 89, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 172, - "date": "2002-05-01", "gender": "ALL", + "locality": "GFC", + "population": 2, + "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + }, + Object { + "ageBucket": "ALL", + "gender": "ALL", + "locality": "MTPMND", + "population": 7, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 6, - "date": "2002-05-01", + "ageBucket": "EXTERNAL_UNKNOWN", "gender": "ALL", + "locality": "BTC", + "population": 0, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 46, - "date": "2002-05-01", + "ageBucket": "ALL", "gender": "ALL", + "locality": "MTPFAR", + "population": 5, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "30-34", - "count": 23, - "date": "2002-05-01", "gender": "ALL", + "locality": "MTPMND", + "population": 2, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 45, - "date": "2002-05-01", - "gender": "ALL", + "ageBucket": "ALL", + "gender": "MALE", + "locality": "ALL", + "population": 661, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 52, - "date": "2002-05-01", + "ageBucket": "<25", "gender": "ALL", + "locality": "BTC", + "population": 8, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "ALL", - "count": 37, - "date": "2002-05-01", + "ageBucket": "25-29", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "locality": "BTC", + "population": 5, + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 43, - "date": "2002-05-01", "gender": "ALL", + "locality": "NDSP", + "population": 124, "raceOrEthnicity": "BLACK", }, Object { "ageBucket": "ALL", - "count": 35, - "date": "2002-05-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "locality": "NDSP", + "population": 299, + "raceOrEthnicity": "WHITE", }, Object { "ageBucket": "ALL", - "count": 36, - "date": "2002-05-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "locality": "NDSP", + "population": 71, + "raceOrEthnicity": "HISPANIC", }, Object { "ageBucket": "ALL", - "count": 68, - "date": "2002-05-01", - "gender": "MALE", + "gender": "ALL", + "locality": "TRC", + "population": 11, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "ALL", - "count": 104, - "date": "2002-05-01", - "gender": "FEMALE", + "ageBucket": "40<", + "gender": "ALL", + "locality": "BTC", + "population": 13, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 180, - "date": "2002-06-01", "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "FTPFAR", + "population": 1, + "raceOrEthnicity": "BLACK", }, Object { - "ageBucket": "<25", - "count": 6, - "date": "2002-06-01", - "gender": "ALL", + "ageBucket": "ALL", + "gender": "EXTERNAL_UNKNOWN", + "locality": "JRCC", + "population": 2, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 48, - "date": "2002-06-01", + "ageBucket": "ALL", "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "JRCC", + "population": 5, + "raceOrEthnicity": "OTHER", }, Object { - "ageBucket": "30-34", - "count": 24, - "date": "2002-06-01", + "ageBucket": "ALL", "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "NDSP", + "population": 99, + "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", }, Object { "ageBucket": "35-39", - "count": 47, - "date": "2002-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 55, - "date": "2002-06-01", "gender": "ALL", + "locality": "MTPFAR", + "population": 5, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 39, - "date": "2002-06-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "locality": "GFC", + "population": 9, + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 45, - "date": "2002-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", + "gender": "EXTERNAL_UNKNOWN", + "locality": "NDSP", + "population": 0, + "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "ALL", - "count": 36, - "date": "2002-06-01", + "ageBucket": "30-34", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "locality": "DWCRC", + "population": 9, + "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "ALL", - "count": 38, - "date": "2002-06-01", + "ageBucket": "35-39", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "locality": "MRCC", + "population": 17, + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 71, - "date": "2002-06-01", "gender": "MALE", + "locality": "MRCC", + "population": 77, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 109, - "date": "2002-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", + "gender": "ALL", + "locality": "MTPFAR", + "population": 2, + "raceOrEthnicity": "BLACK", }, Object { - "ageBucket": "ALL", - "count": 184, - "date": "2002-07-01", + "ageBucket": "35-39", "gender": "ALL", + "locality": "MTPMND", + "population": 2, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 6, - "date": "2002-07-01", + "ageBucket": "30-34", "gender": "ALL", + "locality": "TRC", + "population": 5, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 50, - "date": "2002-07-01", - "gender": "ALL", + "ageBucket": "ALL", + "gender": "FEMALE", + "locality": "FTPFAR", + "population": 16, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 24, - "date": "2002-07-01", + "ageBucket": "ALL", "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "MTPFAR", + "population": 7, + "raceOrEthnicity": "WHITE", }, Object { - "ageBucket": "35-39", - "count": 48, - "date": "2002-07-01", + "ageBucket": "ALL", "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "MRCC", + "population": 1, + "raceOrEthnicity": "OTHER", }, Object { - "ageBucket": "40<", - "count": 56, - "date": "2002-07-01", + "ageBucket": "30-34", "gender": "ALL", + "locality": "FTPMND", + "population": 0, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 40, - "date": "2002-07-01", "gender": "ALL", + "locality": "ALL", + "population": 244, "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", }, Object { "ageBucket": "ALL", - "count": 46, - "date": "2002-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", + "gender": "FEMALE", + "locality": "BTC", + "population": 16, + "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "ALL", - "count": 37, - "date": "2002-07-01", + "ageBucket": "40<", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "locality": "NDSP", + "population": 236, + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 39, - "date": "2002-07-01", "gender": "ALL", + "locality": "DWCRC", + "population": 71, "raceOrEthnicity": "WHITE", }, Object { "ageBucket": "ALL", - "count": 73, - "date": "2002-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 111, - "date": "2002-07-01", - "gender": "FEMALE", + "gender": "ALL", + "locality": "JRCC", + "population": 257, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 188, - "date": "2002-08-01", "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "JRCC", + "population": 88, + "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", }, Object { - "ageBucket": "<25", - "count": 6, - "date": "2002-08-01", + "ageBucket": "EXTERNAL_UNKNOWN", "gender": "ALL", + "locality": "NDSP", + "population": 1, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 51, - "date": "2002-08-01", + "ageBucket": "35-39", "gender": "ALL", + "locality": "ALL", + "population": 242, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 25, - "date": "2002-08-01", + "ageBucket": "EXTERNAL_UNKNOWN", "gender": "ALL", + "locality": "ALL", + "population": 6, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 50, - "date": "2002-08-01", + "ageBucket": "<25", "gender": "ALL", + "locality": "MTPFAR", + "population": 1, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 57, - "date": "2002-08-01", - "gender": "ALL", + "ageBucket": "ALL", + "gender": "MALE", + "locality": "MTPMND", + "population": 8, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 41, - "date": "2002-08-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "locality": "MRCC", + "population": 18, + "raceOrEthnicity": "BLACK", }, Object { - "ageBucket": "ALL", - "count": 46, - "date": "2002-08-01", + "ageBucket": "<25", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "locality": "NDSP", + "population": 58, + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 38, - "date": "2002-08-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "locality": "TRC", + "population": 1, + "raceOrEthnicity": "BLACK", }, Object { - "ageBucket": "ALL", - "count": 39, - "date": "2002-08-01", + "ageBucket": "40<", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "locality": "ALL", + "population": 266, + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 74, - "date": "2002-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", + "gender": "ALL", + "locality": "BTC", + "population": 1, + "raceOrEthnicity": "OTHER", }, Object { "ageBucket": "ALL", - "count": 114, - "date": "2002-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", + "gender": "ALL", + "locality": "FTPFAR", + "population": 9, + "raceOrEthnicity": "WHITE", }, Object { "ageBucket": "ALL", - "count": 190, - "date": "2002-09-01", "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "JRCC", + "population": 31, + "raceOrEthnicity": "BLACK", }, Object { - "ageBucket": "<25", - "count": 6, - "date": "2002-09-01", + "ageBucket": "25-29", "gender": "ALL", + "locality": "MTPMND", + "population": 2, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 51, - "date": "2002-09-01", + "ageBucket": "40<", "gender": "ALL", + "locality": "MTPFAR", + "population": 2, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 25, - "date": "2002-09-01", + "ageBucket": "40<", "gender": "ALL", + "locality": "TRC", + "population": 1, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 50, - "date": "2002-09-01", - "gender": "ALL", + "ageBucket": "ALL", + "gender": "FEMALE", + "locality": "TRC", + "population": 17, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 58, - "date": "2002-09-01", - "gender": "ALL", + "ageBucket": "ALL", + "gender": "FEMALE", + "locality": "FTPMND", + "population": 3, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 41, - "date": "2002-09-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "locality": "ALL", + "population": 2041, + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 47, - "date": "2002-09-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "locality": "ALL", + "population": 12, + "raceOrEthnicity": "OTHER", }, Object { "ageBucket": "ALL", - "count": 38, - "date": "2002-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "gender": "FEMALE", + "locality": "DWCRC", + "population": 89, + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 40, - "date": "2002-09-01", "gender": "ALL", + "locality": "MRCC", + "population": 58, "raceOrEthnicity": "WHITE", }, Object { "ageBucket": "ALL", - "count": 75, - "date": "2002-09-01", "gender": "MALE", + "locality": "MTPFAR", + "population": 9, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 115, - "date": "2002-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", + "gender": "ALL", + "locality": "BTC", + "population": 2, + "raceOrEthnicity": "HISPANIC", }, Object { - "ageBucket": "ALL", - "count": 217, - "date": "2002-10-01", + "ageBucket": "30-34", "gender": "ALL", + "locality": "FTPFAR", + "population": 7, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "<25", - "count": 7, - "date": "2002-10-01", "gender": "ALL", + "locality": "JRCC", + "population": 70, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 58, - "date": "2002-10-01", + "ageBucket": "ALL", "gender": "ALL", + "locality": "MRCC", + "population": 142, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 28, - "date": "2002-10-01", - "gender": "ALL", + "ageBucket": "ALL", + "gender": "MALE", + "locality": "NDSP", + "population": 850, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 57, - "date": "2002-10-01", + "ageBucket": "ALL", "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "FTPMND", + "population": 1, + "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", }, Object { - "ageBucket": "40<", - "count": 66, - "date": "2002-10-01", + "ageBucket": "ALL", + "gender": "ALL", + "locality": "JRCC", + "population": 30, + "raceOrEthnicity": "HISPANIC", + }, + Object { + "ageBucket": "25-29", "gender": "ALL", + "locality": "MRCC", + "population": 15, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 47, - "date": "2002-10-01", "gender": "ALL", + "locality": "MRCC", + "population": 26, "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", }, Object { "ageBucket": "ALL", - "count": 54, - "date": "2002-10-01", + "gender": "FEMALE", + "locality": "NDSP", + "population": 1, + "raceOrEthnicity": "ALL", + }, + Object { + "ageBucket": "40<", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "locality": "DWCRC", + "population": 25, + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 44, - "date": "2002-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "gender": "MALE", + "locality": "JRCC", + "population": 278, + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 46, - "date": "2002-10-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "locality": "BTC", + "population": 73, + "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "ALL", - "count": 86, - "date": "2002-10-01", - "gender": "MALE", + "ageBucket": "30-34", + "gender": "ALL", + "locality": "GFC", + "population": 3, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "ALL", - "count": 131, - "date": "2002-10-01", - "gender": "FEMALE", + "ageBucket": "25-29", + "gender": "ALL", + "locality": "LRRP", + "population": 1, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "ALL", - "count": 214, - "date": "2002-11-01", + "ageBucket": "30-34", "gender": "ALL", + "locality": "MTPFAR", + "population": 4, "raceOrEthnicity": "ALL", }, + Object { + "ageBucket": "ALL", + "gender": "ALL", + "locality": "DWCRC", + "population": 18, + "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + }, Object { "ageBucket": "<25", - "count": 7, - "date": "2002-11-01", "gender": "ALL", + "locality": "MRCC", + "population": 8, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 58, - "date": "2002-11-01", + "ageBucket": "<25", "gender": "ALL", + "locality": "TRC", + "population": 0, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 28, - "date": "2002-11-01", + "ageBucket": "25-29", "gender": "ALL", + "locality": "ALL", + "population": 284, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "35-39", - "count": 56, - "date": "2002-11-01", "gender": "ALL", + "locality": "BTC", + "population": 16, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 65, - "date": "2002-11-01", + "ageBucket": "35-39", "gender": "ALL", + "locality": "FTPFAR", + "population": 3, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 46, - "date": "2002-11-01", "gender": "ALL", + "locality": "FTPFAR", + "population": 1, "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", }, Object { "ageBucket": "ALL", - "count": 53, - "date": "2002-11-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "locality": "GFC", + "population": 6, + "raceOrEthnicity": "WHITE", }, Object { "ageBucket": "ALL", - "count": 43, - "date": "2002-11-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "locality": "LRRP", + "population": 1, + "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "ALL", - "count": 45, - "date": "2002-11-01", + "ageBucket": "30-34", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "locality": "BTC", + "population": 10, + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 84, - "date": "2002-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", + "gender": "ALL", + "locality": "DWCRC", + "population": 2, + "raceOrEthnicity": "HISPANIC", }, Object { "ageBucket": "ALL", - "count": 130, - "date": "2002-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", + "gender": "ALL", + "locality": "NDSP", + "population": 10, + "raceOrEthnicity": "OTHER", }, Object { - "ageBucket": "ALL", - "count": 222, - "date": "2002-12-01", + "ageBucket": "25-29", "gender": "ALL", + "locality": "TRC", + "population": 3, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "<25", - "count": 7, - "date": "2002-12-01", "gender": "ALL", + "locality": "ALL", + "population": 146, "raceOrEthnicity": "ALL", }, + Object { + "ageBucket": "ALL", + "gender": "ALL", + "locality": "ALL", + "population": 671, + "raceOrEthnicity": "WHITE", + }, + Object { + "ageBucket": "ALL", + "gender": "ALL", + "locality": "DWCRC", + "population": 1, + "raceOrEthnicity": "OTHER", + }, Object { "ageBucket": "25-29", - "count": 60, - "date": "2002-12-01", "gender": "ALL", + "locality": "JRCC", + "population": 47, + "raceOrEthnicity": "ALL", + }, + Object { + "ageBucket": "35-39", + "gender": "ALL", + "locality": "JRCC", + "population": 57, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "30-34", - "count": 29, - "date": "2002-12-01", "gender": "ALL", + "locality": "MRCC", + "population": 25, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 58, - "date": "2002-12-01", + "ageBucket": "30-34", "gender": "ALL", + "locality": "NDSP", + "population": 160, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "40<", - "count": 68, - "date": "2002-12-01", "gender": "ALL", + "locality": "JRCC", + "population": 188, "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "ALL", - "count": 48, - "date": "2002-12-01", + "ageBucket": "30-34", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "locality": "ALL", + "population": 134, + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 55, - "date": "2002-12-01", "gender": "ALL", + "locality": "DWCRC", + "population": 3, "raceOrEthnicity": "BLACK", }, Object { "ageBucket": "ALL", - "count": 45, - "date": "2002-12-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "locality": "FTPFAR", + "population": 9, + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 47, - "date": "2002-12-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "locality": "NDSP", + "population": 413, + "raceOrEthnicity": "ALL", }, +] +`; + +exports[`data fetching for metric PrisonPopulationHistorical 1`] = ` +Array [ Object { "ageBucket": "ALL", - "count": 88, - "date": "2002-12-01", - "gender": "MALE", + "count": 961, + "date": "2000-01-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 134, - "date": "2002-12-01", - "gender": "FEMALE", + "count": 957, + "date": "2000-02-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 214, - "date": "2003-01-01", + "count": 997, + "date": "2000-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 7, - "date": "2003-01-01", + "ageBucket": "ALL", + "count": 989, + "date": "2000-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 58, - "date": "2003-01-01", + "ageBucket": "ALL", + "count": 994, + "date": "2000-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 28, - "date": "2003-01-01", + "ageBucket": "ALL", + "count": 1042, + "date": "2000-06-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 56, - "date": "2003-01-01", + "ageBucket": "ALL", + "count": 1033, + "date": "2000-07-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 65, - "date": "2003-01-01", + "ageBucket": "ALL", + "count": 1032, + "date": "2000-08-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 46, - "date": "2003-01-01", + "count": 1065, + "date": "2000-09-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 53, - "date": "2003-01-01", + "count": 1074, + "date": "2000-10-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 43, - "date": "2003-01-01", + "count": 1069, + "date": "2000-11-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 45, - "date": "2003-01-01", + "count": 1062, + "date": "2000-12-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 84, - "date": "2003-01-01", - "gender": "MALE", + "count": 1082, + "date": "2001-01-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 130, - "date": "2003-01-01", - "gender": "FEMALE", + "count": 1102, + "date": "2001-02-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 214, - "date": "2003-02-01", + "count": 1145, + "date": "2001-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 7, - "date": "2003-02-01", + "ageBucket": "ALL", + "count": 1092, + "date": "2001-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 58, - "date": "2003-02-01", + "ageBucket": "ALL", + "count": 1145, + "date": "2001-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 28, - "date": "2003-02-01", + "ageBucket": "ALL", + "count": 1104, + "date": "2001-06-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 56, - "date": "2003-02-01", + "ageBucket": "ALL", + "count": 1079, + "date": "2001-07-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 65, - "date": "2003-02-01", + "ageBucket": "ALL", + "count": 1086, + "date": "2001-08-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 46, - "date": "2003-02-01", + "count": 1113, + "date": "2001-09-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 53, - "date": "2003-02-01", + "count": 1147, + "date": "2001-10-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 43, - "date": "2003-02-01", + "count": 1148, + "date": "2001-11-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 45, - "date": "2003-02-01", + "count": 1142, + "date": "2001-12-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 84, - "date": "2003-02-01", - "gender": "MALE", + "count": 1123, + "date": "2002-01-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 130, - "date": "2003-02-01", - "gender": "FEMALE", + "count": 1198, + "date": "2002-02-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 241, - "date": "2003-03-01", + "count": 1145, + "date": "2002-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 8, - "date": "2003-03-01", + "ageBucket": "ALL", + "count": 1174, + "date": "2002-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 65, - "date": "2003-03-01", + "ageBucket": "ALL", + "count": 1223, + "date": "2002-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 32, - "date": "2003-03-01", + "ageBucket": "ALL", + "count": 1223, + "date": "2002-06-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 63, - "date": "2003-03-01", + "ageBucket": "ALL", + "count": 1160, + "date": "2002-07-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 73, - "date": "2003-03-01", + "ageBucket": "ALL", + "count": 1164, + "date": "2002-08-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 52, - "date": "2003-03-01", + "count": 1140, + "date": "2002-09-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 60, - "date": "2003-03-01", + "count": 1163, + "date": "2002-10-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 49, - "date": "2003-03-01", + "count": 1118, + "date": "2002-11-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 51, - "date": "2003-03-01", + "count": 1172, + "date": "2002-12-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 95, - "date": "2003-03-01", - "gender": "MALE", + "count": 1178, + "date": "2003-01-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 146, - "date": "2003-03-01", - "gender": "FEMALE", + "count": 1203, + "date": "2003-02-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 258, - "date": "2003-04-01", + "count": 1176, + "date": "2003-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 8, + "ageBucket": "ALL", + "count": 1177, "date": "2003-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 69, - "date": "2003-04-01", + "ageBucket": "ALL", + "count": 1203, + "date": "2003-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 34, - "date": "2003-04-01", + "ageBucket": "ALL", + "count": 1194, + "date": "2003-06-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 68, - "date": "2003-04-01", + "ageBucket": "ALL", + "count": 1222, + "date": "2003-07-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 78, - "date": "2003-04-01", + "ageBucket": "ALL", + "count": 1228, + "date": "2003-08-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 56, - "date": "2003-04-01", + "count": 1254, + "date": "2003-09-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 64, - "date": "2003-04-01", + "count": 1268, + "date": "2003-10-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 52, - "date": "2003-04-01", + "count": 1290, + "date": "2003-11-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 54, - "date": "2003-04-01", + "count": 1303, + "date": "2003-12-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 102, - "date": "2003-04-01", - "gender": "MALE", + "count": 1256, + "date": "2004-01-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 156, - "date": "2003-04-01", - "gender": "FEMALE", + "count": 1303, + "date": "2004-02-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 288, - "date": "2003-05-01", + "count": 1287, + "date": "2004-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 9, - "date": "2003-05-01", + "ageBucket": "ALL", + "count": 1299, + "date": "2004-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 77, - "date": "2003-05-01", + "ageBucket": "ALL", + "count": 1290, + "date": "2004-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 38, - "date": "2003-05-01", + "ageBucket": "ALL", + "count": 1258, + "date": "2004-06-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 76, - "date": "2003-05-01", + "ageBucket": "ALL", + "count": 1333, + "date": "2004-07-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 88, - "date": "2003-05-01", + "ageBucket": "ALL", + "count": 1288, + "date": "2004-08-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 63, - "date": "2003-05-01", + "count": 1312, + "date": "2004-09-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 71, - "date": "2003-05-01", + "count": 1338, + "date": "2004-10-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 58, - "date": "2003-05-01", + "count": 1367, + "date": "2004-11-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 60, - "date": "2003-05-01", + "count": 1358, + "date": "2004-12-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 114, - "date": "2003-05-01", - "gender": "MALE", + "count": 1373, + "date": "2005-01-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 174, - "date": "2003-05-01", - "gender": "FEMALE", + "count": 1362, + "date": "2005-02-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 281, - "date": "2003-06-01", + "count": 1395, + "date": "2005-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 9, - "date": "2003-06-01", + "ageBucket": "ALL", + "count": 1339, + "date": "2005-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 76, - "date": "2003-06-01", + "ageBucket": "ALL", + "count": 1378, + "date": "2005-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 37, - "date": "2003-06-01", + "ageBucket": "ALL", + "count": 1352, + "date": "2005-06-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 74, - "date": "2003-06-01", + "ageBucket": "ALL", + "count": 1341, + "date": "2005-07-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 85, - "date": "2003-06-01", + "ageBucket": "ALL", + "count": 1397, + "date": "2005-08-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 61, - "date": "2003-06-01", + "count": 1400, + "date": "2005-09-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 70, - "date": "2003-06-01", + "count": 1415, + "date": "2005-10-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 57, - "date": "2003-06-01", + "count": 1396, + "date": "2005-11-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 59, - "date": "2003-06-01", + "count": 1378, + "date": "2005-12-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 111, - "date": "2003-06-01", - "gender": "MALE", + "count": 1397, + "date": "2006-01-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 170, - "date": "2003-06-01", - "gender": "FEMALE", + "count": 1452, + "date": "2006-02-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 285, - "date": "2003-07-01", + "count": 1472, + "date": "2006-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 9, - "date": "2003-07-01", + "ageBucket": "ALL", + "count": 1436, + "date": "2006-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 77, - "date": "2003-07-01", + "ageBucket": "ALL", + "count": 1390, + "date": "2006-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 37, - "date": "2003-07-01", + "ageBucket": "ALL", + "count": 1401, + "date": "2006-06-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 75, - "date": "2003-07-01", + "ageBucket": "ALL", + "count": 1385, + "date": "2006-07-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 87, - "date": "2003-07-01", + "ageBucket": "ALL", + "count": 1449, + "date": "2006-08-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 62, - "date": "2003-07-01", + "count": 1400, + "date": "2006-09-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 70, - "date": "2003-07-01", + "count": 1381, + "date": "2006-10-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 58, - "date": "2003-07-01", + "count": 1393, + "date": "2006-11-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 60, - "date": "2003-07-01", + "count": 1418, + "date": "2006-12-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 112, - "date": "2003-07-01", - "gender": "MALE", + "count": 1412, + "date": "2007-01-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 173, - "date": "2003-07-01", - "gender": "FEMALE", + "count": 1383, + "date": "2007-02-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 309, - "date": "2003-08-01", + "count": 1392, + "date": "2007-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 10, - "date": "2003-08-01", + "ageBucket": "ALL", + "count": 1440, + "date": "2007-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 83, - "date": "2003-08-01", + "ageBucket": "ALL", + "count": 1395, + "date": "2007-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 41, - "date": "2003-08-01", + "ageBucket": "ALL", + "count": 1427, + "date": "2007-06-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 81, - "date": "2003-08-01", + "ageBucket": "ALL", + "count": 1406, + "date": "2007-07-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 94, - "date": "2003-08-01", + "ageBucket": "ALL", + "count": 1441, + "date": "2007-08-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 67, - "date": "2003-08-01", + "count": 1459, + "date": "2007-09-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 76, - "date": "2003-08-01", + "count": 1471, + "date": "2007-10-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 62, - "date": "2003-08-01", + "count": 1475, + "date": "2007-11-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 65, - "date": "2003-08-01", + "count": 1435, + "date": "2007-12-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 122, - "date": "2003-08-01", - "gender": "MALE", + "count": 1409, + "date": "2008-01-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 187, - "date": "2003-08-01", - "gender": "FEMALE", + "count": 1453, + "date": "2008-02-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 281, - "date": "2003-09-01", + "count": 1437, + "date": "2008-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 9, - "date": "2003-09-01", + "ageBucket": "ALL", + "count": 1451, + "date": "2008-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 76, - "date": "2003-09-01", + "ageBucket": "ALL", + "count": 1418, + "date": "2008-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 37, - "date": "2003-09-01", + "ageBucket": "ALL", + "count": 1445, + "date": "2008-06-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 74, - "date": "2003-09-01", + "ageBucket": "ALL", + "count": 1451, + "date": "2008-07-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 85, - "date": "2003-09-01", + "ageBucket": "ALL", + "count": 1479, + "date": "2008-08-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 61, - "date": "2003-09-01", + "count": 1476, + "date": "2008-09-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 70, - "date": "2003-09-01", + "count": 1449, + "date": "2008-10-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 57, - "date": "2003-09-01", + "count": 1489, + "date": "2008-11-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 59, - "date": "2003-09-01", + "count": 1480, + "date": "2008-12-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 111, - "date": "2003-09-01", - "gender": "MALE", + "count": 1443, + "date": "2009-01-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 170, - "date": "2003-09-01", - "gender": "FEMALE", + "count": 1461, + "date": "2009-02-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 281, - "date": "2003-10-01", + "count": 1452, + "date": "2009-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 9, - "date": "2003-10-01", + "ageBucket": "ALL", + "count": 1455, + "date": "2009-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 76, - "date": "2003-10-01", + "ageBucket": "ALL", + "count": 1428, + "date": "2009-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 37, - "date": "2003-10-01", + "ageBucket": "ALL", + "count": 1429, + "date": "2009-06-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 74, - "date": "2003-10-01", + "ageBucket": "ALL", + "count": 1453, + "date": "2009-07-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 85, - "date": "2003-10-01", + "ageBucket": "ALL", + "count": 1414, + "date": "2009-08-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 61, - "date": "2003-10-01", + "count": 1473, + "date": "2009-09-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 70, - "date": "2003-10-01", + "count": 1449, + "date": "2009-10-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 57, - "date": "2003-10-01", + "count": 1415, + "date": "2009-11-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 59, - "date": "2003-10-01", + "count": 1527, + "date": "2009-12-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 35, - "date": "2003-10-01", + "count": 1502, + "date": "2010-01-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 111, - "date": "2003-10-01", - "gender": "MALE", + "count": 1522, + "date": "2010-02-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 170, - "date": "2003-10-01", - "gender": "FEMALE", + "count": 1518, + "date": "2010-03-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 287, - "date": "2003-11-01", + "count": 1541, + "date": "2010-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 9, - "date": "2003-11-01", + "ageBucket": "ALL", + "count": 1499, + "date": "2010-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 77, - "date": "2003-11-01", + "ageBucket": "ALL", + "count": 1501, + "date": "2010-06-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 38, - "date": "2003-11-01", + "ageBucket": "ALL", + "count": 1512, + "date": "2010-07-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 76, - "date": "2003-11-01", + "ageBucket": "ALL", + "count": 1437, + "date": "2010-08-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 87, - "date": "2003-11-01", + "ageBucket": "ALL", + "count": 1508, + "date": "2010-09-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 62, - "date": "2003-11-01", + "count": 1521, + "date": "2010-10-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 71, - "date": "2003-11-01", + "count": 1434, + "date": "2010-11-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 58, - "date": "2003-11-01", + "count": 1517, + "date": "2010-12-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 60, - "date": "2003-11-01", + "count": 1496, + "date": "2011-01-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 36, - "date": "2003-11-01", + "count": 1492, + "date": "2011-02-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 113, - "date": "2003-11-01", - "gender": "MALE", + "count": 1472, + "date": "2011-03-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 174, - "date": "2003-11-01", - "gender": "FEMALE", + "count": 1440, + "date": "2011-04-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 309, - "date": "2003-12-01", + "count": 1413, + "date": "2011-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 10, - "date": "2003-12-01", + "ageBucket": "ALL", + "count": 1455, + "date": "2011-06-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 83, - "date": "2003-12-01", + "ageBucket": "ALL", + "count": 1474, + "date": "2011-07-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 41, - "date": "2003-12-01", + "ageBucket": "ALL", + "count": 1491, + "date": "2011-08-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 81, - "date": "2003-12-01", + "ageBucket": "ALL", + "count": 1442, + "date": "2011-09-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 94, - "date": "2003-12-01", + "ageBucket": "ALL", + "count": 1426, + "date": "2011-10-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 67, - "date": "2003-12-01", + "count": 1429, + "date": "2011-11-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 76, - "date": "2003-12-01", + "count": 1470, + "date": "2011-12-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 62, - "date": "2003-12-01", + "count": 1462, + "date": "2012-01-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 65, - "date": "2003-12-01", + "count": 1446, + "date": "2012-02-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 38, - "date": "2003-12-01", + "count": 1458, + "date": "2012-03-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 122, - "date": "2003-12-01", - "gender": "MALE", + "count": 1430, + "date": "2012-04-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 187, - "date": "2003-12-01", - "gender": "FEMALE", + "count": 1459, + "date": "2012-05-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 304, - "date": "2004-01-01", + "count": 1475, + "date": "2012-06-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 10, - "date": "2004-01-01", + "ageBucket": "ALL", + "count": 1444, + "date": "2012-07-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 82, - "date": "2004-01-01", + "ageBucket": "ALL", + "count": 1514, + "date": "2012-08-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 40, - "date": "2004-01-01", + "ageBucket": "ALL", + "count": 1476, + "date": "2012-09-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 80, - "date": "2004-01-01", + "ageBucket": "ALL", + "count": 1483, + "date": "2012-10-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 92, - "date": "2004-01-01", + "ageBucket": "ALL", + "count": 1501, + "date": "2012-11-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 66, - "date": "2004-01-01", + "count": 1537, + "date": "2012-12-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 75, - "date": "2004-01-01", + "count": 1569, + "date": "2013-01-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 61, - "date": "2004-01-01", + "count": 1570, + "date": "2013-02-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 64, - "date": "2004-01-01", + "count": 1528, + "date": "2013-03-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 38, - "date": "2004-01-01", + "count": 1521, + "date": "2013-04-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 120, - "date": "2004-01-01", - "gender": "MALE", + "count": 1578, + "date": "2013-05-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 184, - "date": "2004-01-01", - "gender": "FEMALE", + "count": 1543, + "date": "2013-06-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 299, - "date": "2004-02-01", + "count": 1535, + "date": "2013-07-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 10, - "date": "2004-02-01", + "ageBucket": "ALL", + "count": 1543, + "date": "2013-08-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 80, - "date": "2004-02-01", + "ageBucket": "ALL", + "count": 1500, + "date": "2013-09-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 39, - "date": "2004-02-01", + "ageBucket": "ALL", + "count": 1568, + "date": "2013-10-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 79, - "date": "2004-02-01", + "ageBucket": "ALL", + "count": 1544, + "date": "2013-11-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 91, - "date": "2004-02-01", + "ageBucket": "ALL", + "count": 1581, + "date": "2013-12-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 65, - "date": "2004-02-01", + "count": 1556, + "date": "2014-01-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 74, - "date": "2004-02-01", + "count": 1574, + "date": "2014-02-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 60, - "date": "2004-02-01", + "count": 1590, + "date": "2014-03-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 63, - "date": "2004-02-01", + "count": 1580, + "date": "2014-04-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 37, - "date": "2004-02-01", + "count": 1600, + "date": "2014-05-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 118, - "date": "2004-02-01", - "gender": "MALE", + "count": 1581, + "date": "2014-06-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 181, - "date": "2004-02-01", - "gender": "FEMALE", + "count": 1608, + "date": "2014-07-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 302, - "date": "2004-03-01", + "count": 1603, + "date": "2014-08-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 10, - "date": "2004-03-01", + "ageBucket": "ALL", + "count": 1596, + "date": "2014-09-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 81, - "date": "2004-03-01", + "ageBucket": "ALL", + "count": 1670, + "date": "2014-10-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 40, - "date": "2004-03-01", + "ageBucket": "ALL", + "count": 1666, + "date": "2014-11-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 80, - "date": "2004-03-01", + "ageBucket": "ALL", + "count": 1724, + "date": "2014-12-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 92, - "date": "2004-03-01", + "ageBucket": "ALL", + "count": 1737, + "date": "2015-01-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 66, - "date": "2004-03-01", + "count": 1706, + "date": "2015-02-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 75, - "date": "2004-03-01", + "count": 1773, + "date": "2015-03-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 61, - "date": "2004-03-01", + "count": 1819, + "date": "2015-04-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 63, - "date": "2004-03-01", + "count": 1742, + "date": "2015-05-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 37, - "date": "2004-03-01", + "count": 1780, + "date": "2015-06-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 119, - "date": "2004-03-01", - "gender": "MALE", + "count": 1748, + "date": "2015-07-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 183, - "date": "2004-03-01", - "gender": "FEMALE", + "count": 1756, + "date": "2015-08-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 318, - "date": "2004-04-01", + "count": 1778, + "date": "2015-09-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 10, - "date": "2004-04-01", + "ageBucket": "ALL", + "count": 1791, + "date": "2015-10-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 86, - "date": "2004-04-01", + "ageBucket": "ALL", + "count": 1768, + "date": "2015-11-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 42, - "date": "2004-04-01", + "ageBucket": "ALL", + "count": 1804, + "date": "2015-12-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 84, - "date": "2004-04-01", + "ageBucket": "ALL", + "count": 1819, + "date": "2016-01-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 97, - "date": "2004-04-01", + "ageBucket": "ALL", + "count": 1771, + "date": "2016-02-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 69, - "date": "2004-04-01", + "count": 1809, + "date": "2016-03-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 79, - "date": "2004-04-01", + "count": 1780, + "date": "2016-04-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 64, - "date": "2004-04-01", + "count": 1838, + "date": "2016-05-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 67, - "date": "2004-04-01", + "count": 1781, + "date": "2016-06-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 39, - "date": "2004-04-01", + "count": 1740, + "date": "2016-07-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 125, - "date": "2004-04-01", - "gender": "MALE", + "count": 1763, + "date": "2016-08-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 193, - "date": "2004-04-01", - "gender": "FEMALE", + "count": 1782, + "date": "2016-09-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 301, - "date": "2004-05-01", + "count": 1826, + "date": "2016-10-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 10, - "date": "2004-05-01", + "ageBucket": "ALL", + "count": 1756, + "date": "2016-11-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 81, - "date": "2004-05-01", + "ageBucket": "ALL", + "count": 1786, + "date": "2016-12-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 39, - "date": "2004-05-01", + "ageBucket": "ALL", + "count": 1795, + "date": "2017-01-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 79, - "date": "2004-05-01", + "ageBucket": "ALL", + "count": 1853, + "date": "2017-02-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 92, - "date": "2004-05-01", + "ageBucket": "ALL", + "count": 1814, + "date": "2017-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 65, - "date": "2004-05-01", + "count": 1843, + "date": "2017-04-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 74, - "date": "2004-05-01", + "count": 1826, + "date": "2017-05-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 61, - "date": "2004-05-01", + "count": 1829, + "date": "2017-06-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 63, - "date": "2004-05-01", + "count": 1785, + "date": "2017-07-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 37, - "date": "2004-05-01", + "count": 1776, + "date": "2017-08-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 119, - "date": "2004-05-01", - "gender": "MALE", + "count": 1766, + "date": "2017-09-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 182, - "date": "2004-05-01", - "gender": "FEMALE", + "count": 1765, + "date": "2017-10-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 315, - "date": "2004-06-01", + "count": 1696, + "date": "2017-11-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 10, - "date": "2004-06-01", + "ageBucket": "ALL", + "count": 1678, + "date": "2017-12-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 85, - "date": "2004-06-01", + "ageBucket": "ALL", + "count": 1678, + "date": "2018-01-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 41, - "date": "2004-06-01", + "ageBucket": "ALL", + "count": 1708, + "date": "2018-02-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 83, - "date": "2004-06-01", + "ageBucket": "ALL", + "count": 1743, + "date": "2018-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 96, - "date": "2004-06-01", + "ageBucket": "ALL", + "count": 1727, + "date": "2018-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 68, - "date": "2004-06-01", + "count": 1733, + "date": "2018-05-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 78, - "date": "2004-06-01", + "count": 1659, + "date": "2018-06-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 64, - "date": "2004-06-01", + "count": 1680, + "date": "2018-07-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 66, - "date": "2004-06-01", + "count": 1692, + "date": "2018-08-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 39, - "date": "2004-06-01", + "count": 1681, + "date": "2018-09-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 124, - "date": "2004-06-01", - "gender": "MALE", + "count": 1662, + "date": "2018-10-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 191, - "date": "2004-06-01", - "gender": "FEMALE", + "count": 1698, + "date": "2018-11-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 319, - "date": "2004-07-01", + "count": 1675, + "date": "2018-12-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 10, - "date": "2004-07-01", + "ageBucket": "ALL", + "count": 1680, + "date": "2019-01-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 86, - "date": "2004-07-01", + "ageBucket": "ALL", + "count": 1691, + "date": "2019-02-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 42, - "date": "2004-07-01", + "ageBucket": "ALL", + "count": 1726, + "date": "2019-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 84, - "date": "2004-07-01", + "ageBucket": "ALL", + "count": 1759, + "date": "2019-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 97, - "date": "2004-07-01", + "ageBucket": "ALL", + "count": 1793, + "date": "2019-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 69, - "date": "2004-07-01", + "count": 1790, + "date": "2019-06-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 79, - "date": "2004-07-01", + "count": 1721, + "date": "2019-07-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 64, - "date": "2004-07-01", + "count": 1779, + "date": "2019-08-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 67, - "date": "2004-07-01", + "count": 1786, + "date": "2019-09-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 39, - "date": "2004-07-01", + "count": 1801, + "date": "2019-10-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 126, - "date": "2004-07-01", - "gender": "MALE", + "count": 1776, + "date": "2019-11-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 193, - "date": "2004-07-01", - "gender": "FEMALE", + "count": 1740, + "date": "2019-12-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 321, - "date": "2004-08-01", + "count": 1794, + "date": "2020-01-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 10, - "date": "2004-08-01", + "ageBucket": "ALL", + "count": 1783, + "date": "2020-02-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 86, - "date": "2004-08-01", + "ageBucket": "ALL", + "count": 1615, + "date": "2020-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 42, - "date": "2004-08-01", + "ageBucket": "ALL", + "count": 1439, + "date": "2020-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 85, - "date": "2004-08-01", + "ageBucket": "ALL", + "count": 1412, + "date": "2020-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 98, - "date": "2004-08-01", + "ageBucket": "ALL", + "count": 1365, + "date": "2020-06-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 70, - "date": "2004-08-01", + "count": 1362, + "date": "2020-07-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 79, - "date": "2004-08-01", + "count": 1321, + "date": "2020-08-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, +] +`; + +exports[`data fetching for metric PrisonRecidivismRateHistorical 1`] = ` +Array [ Object { "ageBucket": "ALL", - "count": 65, - "date": "2004-08-01", + "followupYears": 6, "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", + "rate": 0.6761908955229591, + "rateDenominator": 444, + "rateNumerator": 300, + "releaseCohort": 2010, }, Object { "ageBucket": "ALL", - "count": 67, - "date": "2004-08-01", + "followupYears": 1, "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", + "rate": 0.21745120886702662, + "rateDenominator": 283, + "rateNumerator": 61, + "releaseCohort": 2012, }, Object { "ageBucket": "ALL", - "count": 40, - "date": "2004-08-01", + "followupYears": 4, "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", + "rate": 0.5982325872860395, + "rateDenominator": 444, + "rateNumerator": 265, + "releaseCohort": 2010, }, Object { "ageBucket": "ALL", - "count": 127, - "date": "2004-08-01", - "gender": "MALE", + "followupYears": 3, + "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.5705945384276757, + "rateDenominator": 444, + "rateNumerator": 253, + "releaseCohort": 2010, }, Object { "ageBucket": "ALL", - "count": 194, - "date": "2004-08-01", - "gender": "FEMALE", + "followupYears": 6, + "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.51971248789426, + "rateDenominator": 283, + "rateNumerator": 147, + "releaseCohort": 2012, }, Object { "ageBucket": "ALL", - "count": 328, - "date": "2004-09-01", + "followupYears": 4, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.3193792918425292, + "rateDenominator": 441, + "rateNumerator": 140, + "releaseCohort": 2009, }, Object { - "ageBucket": "<25", - "count": 11, - "date": "2004-09-01", + "ageBucket": "ALL", + "followupYears": 5, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.666258238192844, + "rateDenominator": 444, + "rateNumerator": 295, + "releaseCohort": 2010, }, Object { - "ageBucket": "25-29", - "count": 88, - "date": "2004-09-01", + "ageBucket": "ALL", + "followupYears": 2, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.16885464931952435, + "rateDenominator": 449, + "rateNumerator": 75, + "releaseCohort": 2016, }, Object { - "ageBucket": "30-34", - "count": 43, - "date": "2004-09-01", + "ageBucket": "ALL", + "followupYears": 4, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.343162119157779, + "rateDenominator": 277, + "rateNumerator": 95, + "releaseCohort": 2015, }, Object { - "ageBucket": "35-39", - "count": 86, - "date": "2004-09-01", + "ageBucket": "ALL", + "followupYears": 1, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.24568881676118148, + "rateDenominator": 373, + "rateNumerator": 91, + "releaseCohort": 2018, }, Object { - "ageBucket": "40<", - "count": 100, - "date": "2004-09-01", + "ageBucket": "ALL", + "followupYears": 10, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.40557169931202725, + "rateDenominator": 441, + "rateNumerator": 178, + "releaseCohort": 2009, }, Object { "ageBucket": "ALL", - "count": 71, - "date": "2004-09-01", + "followupYears": 7, "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", + "rate": 0.7082316517408129, + "rateDenominator": 444, + "rateNumerator": 314, + "releaseCohort": 2010, }, Object { "ageBucket": "ALL", - "count": 81, - "date": "2004-09-01", + "followupYears": 1, "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", + "rate": 0.18591688919978389, + "rateDenominator": 277, + "rateNumerator": 51, + "releaseCohort": 2015, }, Object { "ageBucket": "ALL", - "count": 66, - "date": "2004-09-01", + "followupYears": 3, "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", + "rate": 0.3966145512517424, + "rateDenominator": 294, + "rateNumerator": 116, + "releaseCohort": 2013, }, Object { "ageBucket": "ALL", - "count": 69, - "date": "2004-09-01", + "followupYears": 1, "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", + "rate": 0.23067628862648182, + "rateDenominator": 246, + "rateNumerator": 56, + "releaseCohort": 2011, }, Object { "ageBucket": "ALL", - "count": 41, - "date": "2004-09-01", + "followupYears": 8, "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", + "rate": 0.7338674573867263, + "rateDenominator": 444, + "rateNumerator": 325, + "releaseCohort": 2010, }, Object { "ageBucket": "ALL", - "count": 129, - "date": "2004-09-01", - "gender": "MALE", + "followupYears": 9, + "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.7438531991544154, + "rateDenominator": 444, + "rateNumerator": 330, + "releaseCohort": 2010, }, Object { "ageBucket": "ALL", - "count": 199, - "date": "2004-09-01", - "gender": "FEMALE", + "followupYears": 7, + "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.3701610872936188, + "rateDenominator": 441, + "rateNumerator": 163, + "releaseCohort": 2009, }, Object { "ageBucket": "ALL", - "count": 310, - "date": "2004-10-01", + "followupYears": 8, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.38672108481674616, + "rateDenominator": 441, + "rateNumerator": 170, + "releaseCohort": 2009, }, Object { - "ageBucket": "<25", - "count": 10, - "date": "2004-10-01", + "ageBucket": "ALL", + "followupYears": 4, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.4261987401506558, + "rateDenominator": 283, + "rateNumerator": 120, + "releaseCohort": 2012, }, Object { - "ageBucket": "25-29", - "count": 83, - "date": "2004-10-01", + "ageBucket": "ALL", + "followupYears": 7, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.5463439792721764, + "rateDenominator": 283, + "rateNumerator": 154, + "releaseCohort": 2012, }, Object { - "ageBucket": "30-34", - "count": 41, - "date": "2004-10-01", + "ageBucket": "ALL", + "followupYears": 2, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.3192384874828808, + "rateDenominator": 294, + "rateNumerator": 93, + "releaseCohort": 2013, }, Object { - "ageBucket": "35-39", - "count": 82, - "date": "2004-10-01", + "ageBucket": "ALL", + "followupYears": 1, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.32853000181042846, + "rateDenominator": 444, + "rateNumerator": 145, + "releaseCohort": 2010, }, Object { - "ageBucket": "40<", - "count": 94, - "date": "2004-10-01", + "ageBucket": "ALL", + "followupYears": 1, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.25609406210130736, + "rateDenominator": 353, + "rateNumerator": 90, + "releaseCohort": 2014, }, Object { "ageBucket": "ALL", - "count": 67, - "date": "2004-10-01", + "followupYears": 3, "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", + "rate": 0.30393467040023203, + "rateDenominator": 277, + "rateNumerator": 84, + "releaseCohort": 2015, }, Object { "ageBucket": "ALL", - "count": 77, - "date": "2004-10-01", + "followupYears": 3, "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", + "rate": 0.3865270115208075, + "rateDenominator": 246, + "rateNumerator": 95, + "releaseCohort": 2011, }, Object { "ageBucket": "ALL", - "count": 63, - "date": "2004-10-01", + "followupYears": 3, "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", + "rate": 0.20221756415560455, + "rateDenominator": 449, + "rateNumerator": 90, + "releaseCohort": 2016, }, Object { "ageBucket": "ALL", - "count": 65, - "date": "2004-10-01", + "followupYears": 5, "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", + "rate": 0.34394405567044595, + "rateDenominator": 441, + "rateNumerator": 151, + "releaseCohort": 2009, }, Object { "ageBucket": "ALL", - "count": 38, - "date": "2004-10-01", + "followupYears": 2, "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", + "rate": 0.33636041822294627, + "rateDenominator": 246, + "rateNumerator": 82, + "releaseCohort": 2011, }, Object { "ageBucket": "ALL", - "count": 122, - "date": "2004-10-01", - "gender": "MALE", + "followupYears": 8, + "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.5430831027815324, + "rateDenominator": 246, + "rateNumerator": 133, + "releaseCohort": 2011, }, Object { "ageBucket": "ALL", - "count": 188, - "date": "2004-10-01", - "gender": "FEMALE", + "followupYears": 3, + "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.27481568501675263, + "rateDenominator": 441, + "rateNumerator": 121, + "releaseCohort": 2009, }, Object { "ageBucket": "ALL", - "count": 309, - "date": "2004-11-01", + "followupYears": 1, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.12018058712525873, + "rateDenominator": 449, + "rateNumerator": 53, + "releaseCohort": 2016, }, Object { - "ageBucket": "<25", - "count": 10, - "date": "2004-11-01", + "ageBucket": "ALL", + "followupYears": 5, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.475870096112616, + "rateDenominator": 246, + "rateNumerator": 117, + "releaseCohort": 2011, }, Object { - "ageBucket": "25-29", - "count": 83, - "date": "2004-11-01", + "ageBucket": "ALL", + "followupYears": 4, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.4609087596578495, + "rateDenominator": 246, + "rateNumerator": 113, + "releaseCohort": 2011, }, Object { - "ageBucket": "30-34", - "count": 41, - "date": "2004-11-01", + "ageBucket": "ALL", + "followupYears": 2, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.31410143263268187, + "rateDenominator": 283, + "rateNumerator": 88, + "releaseCohort": 2012, }, Object { - "ageBucket": "35-39", - "count": 81, - "date": "2004-11-01", + "ageBucket": "ALL", + "followupYears": 6, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.5532594782441403, + "rateDenominator": 294, + "rateNumerator": 162, + "releaseCohort": 2013, }, Object { - "ageBucket": "40<", - "count": 94, - "date": "2004-11-01", + "ageBucket": "ALL", + "followupYears": 4, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.4361061547980128, + "rateDenominator": 353, + "rateNumerator": 153, + "releaseCohort": 2014, }, Object { "ageBucket": "ALL", - "count": 67, - "date": "2004-11-01", + "followupYears": 1, "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", + "rate": 0.15472315694153785, + "rateDenominator": 441, + "rateNumerator": 68, + "releaseCohort": 2009, }, Object { "ageBucket": "ALL", - "count": 76, - "date": "2004-11-01", + "followupYears": 3, "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", + "rate": 0.38288543842088013, + "rateDenominator": 283, + "rateNumerator": 108, + "releaseCohort": 2012, }, Object { "ageBucket": "ALL", - "count": 62, - "date": "2004-11-01", + "followupYears": 6, "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", + "rate": 0.3468225508438444, + "rateDenominator": 441, + "rateNumerator": 152, + "releaseCohort": 2009, }, Object { "ageBucket": "ALL", - "count": 65, - "date": "2004-11-01", + "followupYears": 6, "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", + "rate": 0.5081203766331148, + "rateDenominator": 246, + "rateNumerator": 124, + "releaseCohort": 2011, }, Object { "ageBucket": "ALL", - "count": 38, - "date": "2004-11-01", + "followupYears": 5, "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", + "rate": 0.519319795206675, + "rateDenominator": 294, + "rateNumerator": 152, + "releaseCohort": 2013, }, Object { "ageBucket": "ALL", - "count": 122, - "date": "2004-11-01", - "gender": "MALE", + "followupYears": 2, + "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.3368747785220438, + "rateDenominator": 420, + "rateNumerator": 141, + "releaseCohort": 2017, }, Object { "ageBucket": "ALL", - "count": 187, - "date": "2004-11-01", - "gender": "FEMALE", + "followupYears": 5, + "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.4689506965509697, + "rateDenominator": 283, + "rateNumerator": 132, + "releaseCohort": 2012, }, Object { "ageBucket": "ALL", - "count": 322, - "date": "2004-12-01", + "followupYears": 2, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.2305518548934301, + "rateDenominator": 441, + "rateNumerator": 101, + "releaseCohort": 2009, }, Object { - "ageBucket": "<25", - "count": 10, - "date": "2004-12-01", + "ageBucket": "ALL", + "followupYears": 2, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.4811765819001177, + "rateDenominator": 444, + "rateNumerator": 213, + "releaseCohort": 2010, }, Object { - "ageBucket": "25-29", - "count": 87, - "date": "2004-12-01", + "ageBucket": "ALL", + "followupYears": 7, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.5234902915707466, + "rateDenominator": 246, + "rateNumerator": 128, + "releaseCohort": 2011, }, Object { - "ageBucket": "30-34", - "count": 42, - "date": "2004-12-01", + "ageBucket": "ALL", + "followupYears": 3, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.3704884876536363, + "rateDenominator": 353, + "rateNumerator": 130, + "releaseCohort": 2014, }, Object { - "ageBucket": "35-39", - "count": 85, - "date": "2004-12-01", + "ageBucket": "ALL", + "followupYears": 4, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.4642008589394314, + "rateDenominator": 294, + "rateNumerator": 136, + "releaseCohort": 2013, }, Object { - "ageBucket": "40<", - "count": 98, - "date": "2004-12-01", + "ageBucket": "ALL", + "followupYears": 9, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.39794127127067225, + "rateDenominator": 441, + "rateNumerator": 175, + "releaseCohort": 2009, }, Object { "ageBucket": "ALL", - "count": 70, - "date": "2004-12-01", + "followupYears": 1, "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", + "rate": 0.27577650321290686, + "rateDenominator": 294, + "rateNumerator": 81, + "releaseCohort": 2013, }, Object { "ageBucket": "ALL", - "count": 80, - "date": "2004-12-01", + "followupYears": 5, "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", + "rate": 0.4876677382834119, + "rateDenominator": 353, + "rateNumerator": 172, + "releaseCohort": 2014, }, Object { "ageBucket": "ALL", - "count": 65, - "date": "2004-12-01", + "followupYears": 1, "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", + "rate": 0.23201745045523087, + "rateDenominator": 420, + "rateNumerator": 97, + "releaseCohort": 2017, }, Object { "ageBucket": "ALL", - "count": 68, - "date": "2004-12-01", + "followupYears": 2, "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", + "rate": 0.2713364319344973, + "rateDenominator": 277, + "rateNumerator": 75, + "releaseCohort": 2015, }, Object { "ageBucket": "ALL", - "count": 40, - "date": "2004-12-01", + "followupYears": 2, "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", + "rate": 0.3245749312012245, + "rateDenominator": 353, + "rateNumerator": 114, + "releaseCohort": 2014, }, +] +`; + +exports[`data fetching for metric PrisonRecidivismRateSingleFollowupHistorical 1`] = ` +Array [ Object { "ageBucket": "ALL", - "count": 127, - "date": "2004-12-01", - "gender": "MALE", + "followupYears": 1, + "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.21745120886702662, + "rateDenominator": 283, + "rateNumerator": 61, + "releaseCohort": 2012, }, Object { "ageBucket": "ALL", - "count": 195, - "date": "2004-12-01", - "gender": "FEMALE", + "followupYears": 3, + "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.5705945384276757, + "rateDenominator": 444, + "rateNumerator": 253, + "releaseCohort": 2010, }, Object { "ageBucket": "ALL", - "count": 335, - "date": "2005-01-01", + "followupYears": 5, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.666258238192844, + "rateDenominator": 444, + "rateNumerator": 295, + "releaseCohort": 2010, }, Object { - "ageBucket": "<25", - "count": 11, - "date": "2005-01-01", + "ageBucket": "ALL", + "followupYears": 1, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.24568881676118148, + "rateDenominator": 373, + "rateNumerator": 91, + "releaseCohort": 2018, }, Object { - "ageBucket": "25-29", - "count": 90, - "date": "2005-01-01", + "ageBucket": "ALL", + "followupYears": 1, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.18591688919978389, + "rateDenominator": 277, + "rateNumerator": 51, + "releaseCohort": 2015, }, Object { - "ageBucket": "30-34", - "count": 44, - "date": "2005-01-01", + "ageBucket": "ALL", + "followupYears": 3, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.3966145512517424, + "rateDenominator": 294, + "rateNumerator": 116, + "releaseCohort": 2013, }, Object { - "ageBucket": "35-39", - "count": 88, - "date": "2005-01-01", + "ageBucket": "ALL", + "followupYears": 1, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.23067628862648182, + "rateDenominator": 246, + "rateNumerator": 56, + "releaseCohort": 2011, }, Object { - "ageBucket": "40<", - "count": 102, - "date": "2005-01-01", + "ageBucket": "ALL", + "followupYears": 1, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.32853000181042846, + "rateDenominator": 444, + "rateNumerator": 145, + "releaseCohort": 2010, }, Object { "ageBucket": "ALL", - "count": 73, - "date": "2005-01-01", + "followupYears": 1, "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", + "rate": 0.25609406210130736, + "rateDenominator": 353, + "rateNumerator": 90, + "releaseCohort": 2014, }, Object { "ageBucket": "ALL", - "count": 83, - "date": "2005-01-01", + "followupYears": 3, "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", + "rate": 0.30393467040023203, + "rateDenominator": 277, + "rateNumerator": 84, + "releaseCohort": 2015, }, Object { "ageBucket": "ALL", - "count": 68, - "date": "2005-01-01", + "followupYears": 3, "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", + "rate": 0.3865270115208075, + "rateDenominator": 246, + "rateNumerator": 95, + "releaseCohort": 2011, }, Object { "ageBucket": "ALL", - "count": 70, - "date": "2005-01-01", + "followupYears": 3, "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", + "rate": 0.20221756415560455, + "rateDenominator": 449, + "rateNumerator": 90, + "releaseCohort": 2016, }, Object { "ageBucket": "ALL", - "count": 41, - "date": "2005-01-01", + "followupYears": 5, "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", + "rate": 0.34394405567044595, + "rateDenominator": 441, + "rateNumerator": 151, + "releaseCohort": 2009, }, Object { "ageBucket": "ALL", - "count": 132, - "date": "2005-01-01", - "gender": "MALE", + "followupYears": 3, + "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.27481568501675263, + "rateDenominator": 441, + "rateNumerator": 121, + "releaseCohort": 2009, }, Object { "ageBucket": "ALL", - "count": 203, - "date": "2005-01-01", - "gender": "FEMALE", + "followupYears": 1, + "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.12018058712525873, + "rateDenominator": 449, + "rateNumerator": 53, + "releaseCohort": 2016, }, Object { "ageBucket": "ALL", - "count": 339, - "date": "2005-02-01", + "followupYears": 5, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.475870096112616, + "rateDenominator": 246, + "rateNumerator": 117, + "releaseCohort": 2011, }, Object { - "ageBucket": "<25", - "count": 11, - "date": "2005-02-01", + "ageBucket": "ALL", + "followupYears": 1, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.15472315694153785, + "rateDenominator": 441, + "rateNumerator": 68, + "releaseCohort": 2009, }, Object { - "ageBucket": "25-29", - "count": 91, - "date": "2005-02-01", + "ageBucket": "ALL", + "followupYears": 3, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.38288543842088013, + "rateDenominator": 283, + "rateNumerator": 108, + "releaseCohort": 2012, }, Object { - "ageBucket": "30-34", - "count": 44, - "date": "2005-02-01", + "ageBucket": "ALL", + "followupYears": 5, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.519319795206675, + "rateDenominator": 294, + "rateNumerator": 152, + "releaseCohort": 2013, }, Object { - "ageBucket": "35-39", - "count": 89, - "date": "2005-02-01", + "ageBucket": "ALL", + "followupYears": 5, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.4689506965509697, + "rateDenominator": 283, + "rateNumerator": 132, + "releaseCohort": 2012, }, Object { - "ageBucket": "40<", - "count": 103, - "date": "2005-02-01", + "ageBucket": "ALL", + "followupYears": 3, "gender": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.3704884876536363, + "rateDenominator": 353, + "rateNumerator": 130, + "releaseCohort": 2014, }, Object { "ageBucket": "ALL", - "count": 74, - "date": "2005-02-01", + "followupYears": 1, "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", + "rate": 0.27577650321290686, + "rateDenominator": 294, + "rateNumerator": 81, + "releaseCohort": 2013, }, Object { "ageBucket": "ALL", - "count": 84, - "date": "2005-02-01", + "followupYears": 5, "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", + "rate": 0.4876677382834119, + "rateDenominator": 353, + "rateNumerator": 172, + "releaseCohort": 2014, }, Object { "ageBucket": "ALL", - "count": 68, - "date": "2005-02-01", + "followupYears": 1, "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", + "rate": 0.23201745045523087, + "rateDenominator": 420, + "rateNumerator": 97, + "releaseCohort": 2017, }, +] +`; + +exports[`data fetching for metric PrisonReleaseTypeAggregate 1`] = ` +Array [ Object { "ageBucket": "ALL", - "count": 71, - "date": "2005-02-01", + "category": "transfer", + "count": 346, "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 42, - "date": "2005-02-01", + "category": "completion", + "count": 203, "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 134, - "date": "2005-02-01", - "gender": "MALE", + "category": "parole", + "count": 680, + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 205, - "date": "2005-02-01", - "gender": "FEMALE", + "category": "probation", + "count": 1088, + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 342, - "date": "2005-03-01", + "category": "death", + "count": 1174, "gender": "ALL", "raceOrEthnicity": "ALL", }, +] +`; + +exports[`data fetching for metric PrisonStayLengthAggregate 1`] = ` +Array [ Object { - "ageBucket": "<25", - "count": 11, - "date": "2005-03-01", + "ageBucket": "ALL", + "category": "lessThanOne", + "count": 346, "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 92, - "date": "2005-03-01", + "ageBucket": "ALL", + "category": "oneTwo", + "count": 12, "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 45, - "date": "2005-03-01", + "ageBucket": "ALL", + "category": "twoThree", + "count": 404, "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 90, - "date": "2005-03-01", + "ageBucket": "ALL", + "category": "threeFive", + "count": 729, "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 104, - "date": "2005-03-01", + "ageBucket": "ALL", + "category": "fiveTen", + "count": 609, "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 74, - "date": "2005-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 85, - "date": "2005-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 69, - "date": "2005-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 72, - "date": "2005-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 42, - "date": "2005-03-01", + "category": "tenTwenty", + "count": 31, "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 135, - "date": "2005-03-01", - "gender": "MALE", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 207, - "date": "2005-03-01", - "gender": "FEMALE", + "category": "moreThanTwenty", + "count": 210, + "gender": "ALL", "raceOrEthnicity": "ALL", }, +] +`; + +exports[`data fetching for metric ProbationPopulationCurrent 1`] = ` +Array [ Object { "ageBucket": "ALL", - "count": 348, - "date": "2005-04-01", "gender": "ALL", + "locality": "SOUTH_CENTRAL", + "population": 206, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "<25", - "count": 11, - "date": "2005-04-01", "gender": "ALL", + "locality": "SOUTH_CENTRAL", + "population": 18, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "25-29", - "count": 94, - "date": "2005-04-01", "gender": "ALL", + "locality": "SOUTH_CENTRAL", + "population": 56, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "30-34", - "count": 46, - "date": "2005-04-01", "gender": "ALL", + "locality": "SOUTH_CENTRAL", + "population": 39, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "35-39", - "count": 92, - "date": "2005-04-01", "gender": "ALL", + "locality": "SOUTH_CENTRAL", + "population": 53, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "40<", - "count": 106, - "date": "2005-04-01", "gender": "ALL", + "locality": "SOUTH_CENTRAL", + "population": 40, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 76, - "date": "2005-04-01", "gender": "ALL", + "locality": "SOUTH_CENTRAL", + "population": 68, "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", }, Object { "ageBucket": "ALL", - "count": 86, - "date": "2005-04-01", "gender": "ALL", + "locality": "SOUTH_CENTRAL", + "population": 19, "raceOrEthnicity": "BLACK", }, Object { "ageBucket": "ALL", - "count": 70, - "date": "2005-04-01", "gender": "ALL", + "locality": "SOUTH_CENTRAL", + "population": 59, "raceOrEthnicity": "HISPANIC", }, Object { "ageBucket": "ALL", - "count": 73, - "date": "2005-04-01", "gender": "ALL", + "locality": "SOUTH_CENTRAL", + "population": 25, "raceOrEthnicity": "WHITE", }, Object { "ageBucket": "ALL", - "count": 43, - "date": "2005-04-01", "gender": "ALL", + "locality": "SOUTH_CENTRAL", + "population": 36, "raceOrEthnicity": "OTHER", }, Object { "ageBucket": "ALL", - "count": 137, - "date": "2005-04-01", "gender": "MALE", + "locality": "SOUTH_CENTRAL", + "population": 112, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 211, - "date": "2005-04-01", "gender": "FEMALE", + "locality": "SOUTH_CENTRAL", + "population": 94, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 350, - "date": "2005-05-01", "gender": "ALL", + "locality": "ALL", + "population": 1762, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "<25", - "count": 11, - "date": "2005-05-01", "gender": "ALL", + "locality": "ALL", + "population": 256, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "25-29", - "count": 94, - "date": "2005-05-01", "gender": "ALL", + "locality": "ALL", + "population": 141, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "30-34", - "count": 46, - "date": "2005-05-01", "gender": "ALL", + "locality": "ALL", + "population": 475, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "35-39", - "count": 92, - "date": "2005-05-01", "gender": "ALL", + "locality": "ALL", + "population": 240, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "40<", - "count": 106, - "date": "2005-05-01", "gender": "ALL", + "locality": "ALL", + "population": 650, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 76, - "date": "2005-05-01", "gender": "ALL", + "locality": "ALL", + "population": 506, "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", }, Object { "ageBucket": "ALL", - "count": 87, - "date": "2005-05-01", "gender": "ALL", + "locality": "ALL", + "population": 270, "raceOrEthnicity": "BLACK", }, Object { "ageBucket": "ALL", - "count": 71, - "date": "2005-05-01", "gender": "ALL", + "locality": "ALL", + "population": 422, "raceOrEthnicity": "HISPANIC", }, Object { "ageBucket": "ALL", - "count": 74, - "date": "2005-05-01", "gender": "ALL", + "locality": "ALL", + "population": 155, "raceOrEthnicity": "WHITE", }, Object { "ageBucket": "ALL", - "count": 43, - "date": "2005-05-01", "gender": "ALL", + "locality": "ALL", + "population": 410, "raceOrEthnicity": "OTHER", }, Object { "ageBucket": "ALL", - "count": 138, - "date": "2005-05-01", "gender": "MALE", + "locality": "ALL", + "population": 734, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 212, - "date": "2005-05-01", "gender": "FEMALE", + "locality": "ALL", + "population": 1028, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 359, - "date": "2005-06-01", "gender": "ALL", + "locality": "SOUTHWEST", + "population": 271, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "<25", - "count": 12, - "date": "2005-06-01", "gender": "ALL", + "locality": "SOUTHWEST", + "population": 64, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "25-29", - "count": 97, - "date": "2005-06-01", "gender": "ALL", + "locality": "SOUTHWEST", + "population": 6, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "30-34", - "count": 47, - "date": "2005-06-01", "gender": "ALL", + "locality": "SOUTHWEST", + "population": 35, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "35-39", - "count": 95, - "date": "2005-06-01", "gender": "ALL", + "locality": "SOUTHWEST", + "population": 87, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "40<", - "count": 109, - "date": "2005-06-01", "gender": "ALL", + "locality": "SOUTHWEST", + "population": 78, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 78, - "date": "2005-06-01", "gender": "ALL", + "locality": "SOUTHWEST", + "population": 19, "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", }, Object { "ageBucket": "ALL", - "count": 89, - "date": "2005-06-01", "gender": "ALL", + "locality": "SOUTHWEST", + "population": 55, "raceOrEthnicity": "BLACK", }, Object { "ageBucket": "ALL", - "count": 72, - "date": "2005-06-01", "gender": "ALL", + "locality": "SOUTHWEST", + "population": 81, "raceOrEthnicity": "HISPANIC", }, Object { "ageBucket": "ALL", - "count": 75, - "date": "2005-06-01", "gender": "ALL", + "locality": "SOUTHWEST", + "population": 18, "raceOrEthnicity": "WHITE", }, Object { "ageBucket": "ALL", - "count": 44, - "date": "2005-06-01", "gender": "ALL", + "locality": "SOUTHWEST", + "population": 97, "raceOrEthnicity": "OTHER", }, Object { "ageBucket": "ALL", - "count": 142, - "date": "2005-06-01", "gender": "MALE", + "locality": "SOUTHWEST", + "population": 52, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 217, - "date": "2005-06-01", "gender": "FEMALE", + "locality": "SOUTHWEST", + "population": 219, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 368, - "date": "2005-07-01", "gender": "ALL", + "locality": "OTHER", + "population": 61, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "<25", - "count": 12, - "date": "2005-07-01", "gender": "ALL", + "locality": "OTHER", + "population": 17, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "25-29", - "count": 99, - "date": "2005-07-01", "gender": "ALL", + "locality": "OTHER", + "population": 13, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "30-34", - "count": 48, - "date": "2005-07-01", "gender": "ALL", + "locality": "OTHER", + "population": 10, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "35-39", - "count": 97, - "date": "2005-07-01", "gender": "ALL", + "locality": "OTHER", + "population": 0, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "40<", - "count": 112, - "date": "2005-07-01", "gender": "ALL", + "locality": "OTHER", + "population": 20, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 80, - "date": "2005-07-01", "gender": "ALL", + "locality": "OTHER", + "population": 17, "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", }, Object { "ageBucket": "ALL", - "count": 91, - "date": "2005-07-01", "gender": "ALL", + "locality": "OTHER", + "population": 5, "raceOrEthnicity": "BLACK", }, Object { "ageBucket": "ALL", - "count": 74, - "date": "2005-07-01", "gender": "ALL", + "locality": "OTHER", + "population": 19, "raceOrEthnicity": "HISPANIC", }, Object { "ageBucket": "ALL", - "count": 77, - "date": "2005-07-01", "gender": "ALL", + "locality": "OTHER", + "population": 4, "raceOrEthnicity": "WHITE", }, Object { "ageBucket": "ALL", - "count": 46, - "date": "2005-07-01", "gender": "ALL", + "locality": "OTHER", + "population": 15, "raceOrEthnicity": "OTHER", }, Object { "ageBucket": "ALL", - "count": 145, - "date": "2005-07-01", "gender": "MALE", + "locality": "OTHER", + "population": 25, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 223, - "date": "2005-07-01", "gender": "FEMALE", + "locality": "OTHER", + "population": 36, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 373, - "date": "2005-08-01", "gender": "ALL", + "locality": "EAST_CENTRAL", + "population": 175, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "<25", - "count": 12, - "date": "2005-08-01", "gender": "ALL", + "locality": "EAST_CENTRAL", + "population": 12, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "25-29", - "count": 100, - "date": "2005-08-01", "gender": "ALL", + "locality": "EAST_CENTRAL", + "population": 49, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "30-34", - "count": 49, - "date": "2005-08-01", "gender": "ALL", + "locality": "EAST_CENTRAL", + "population": 15, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "35-39", - "count": 98, - "date": "2005-08-01", "gender": "ALL", + "locality": "EAST_CENTRAL", + "population": 43, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "40<", - "count": 113, - "date": "2005-08-01", "gender": "ALL", + "locality": "EAST_CENTRAL", + "population": 56, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 81, - "date": "2005-08-01", "gender": "ALL", + "locality": "EAST_CENTRAL", + "population": 53, "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", }, Object { "ageBucket": "ALL", - "count": 92, - "date": "2005-08-01", "gender": "ALL", + "locality": "EAST_CENTRAL", + "population": 38, "raceOrEthnicity": "BLACK", }, Object { "ageBucket": "ALL", - "count": 75, - "date": "2005-08-01", "gender": "ALL", + "locality": "EAST_CENTRAL", + "population": 20, "raceOrEthnicity": "HISPANIC", }, Object { "ageBucket": "ALL", - "count": 78, - "date": "2005-08-01", "gender": "ALL", + "locality": "EAST_CENTRAL", + "population": 13, "raceOrEthnicity": "WHITE", }, Object { "ageBucket": "ALL", - "count": 46, - "date": "2005-08-01", "gender": "ALL", + "locality": "EAST_CENTRAL", + "population": 52, "raceOrEthnicity": "OTHER", }, Object { "ageBucket": "ALL", - "count": 147, - "date": "2005-08-01", "gender": "MALE", + "locality": "EAST_CENTRAL", + "population": 23, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 226, - "date": "2005-08-01", "gender": "FEMALE", + "locality": "EAST_CENTRAL", + "population": 152, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 396, - "date": "2005-09-01", "gender": "ALL", + "locality": "NORTH_CENTRAL", + "population": 281, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "<25", - "count": 13, - "date": "2005-09-01", "gender": "ALL", + "locality": "NORTH_CENTRAL", + "population": 79, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "25-29", - "count": 107, - "date": "2005-09-01", "gender": "ALL", + "locality": "NORTH_CENTRAL", + "population": 98, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "30-34", - "count": 52, - "date": "2005-09-01", "gender": "ALL", + "locality": "NORTH_CENTRAL", + "population": 75, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "35-39", - "count": 104, - "date": "2005-09-01", "gender": "ALL", + "locality": "NORTH_CENTRAL", + "population": 15, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "40<", - "count": 120, - "date": "2005-09-01", "gender": "ALL", + "locality": "NORTH_CENTRAL", + "population": 13, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 86, - "date": "2005-09-01", "gender": "ALL", + "locality": "NORTH_CENTRAL", + "population": 61, "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", }, Object { "ageBucket": "ALL", - "count": 98, - "date": "2005-09-01", "gender": "ALL", + "locality": "NORTH_CENTRAL", + "population": 63, "raceOrEthnicity": "BLACK", }, Object { "ageBucket": "ALL", - "count": 80, - "date": "2005-09-01", "gender": "ALL", + "locality": "NORTH_CENTRAL", + "population": 70, "raceOrEthnicity": "HISPANIC", }, Object { "ageBucket": "ALL", - "count": 83, - "date": "2005-09-01", "gender": "ALL", + "locality": "NORTH_CENTRAL", + "population": 31, "raceOrEthnicity": "WHITE", }, Object { "ageBucket": "ALL", - "count": 49, - "date": "2005-09-01", "gender": "ALL", + "locality": "NORTH_CENTRAL", + "population": 55, "raceOrEthnicity": "OTHER", }, Object { "ageBucket": "ALL", - "count": 156, - "date": "2005-09-01", "gender": "MALE", + "locality": "NORTH_CENTRAL", + "population": 131, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 240, - "date": "2005-09-01", "gender": "FEMALE", + "locality": "NORTH_CENTRAL", + "population": 150, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 402, - "date": "2005-10-01", "gender": "ALL", + "locality": "SOUTHEAST", + "population": 42, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "<25", - "count": 13, - "date": "2005-10-01", "gender": "ALL", + "locality": "SOUTHEAST", + "population": 4, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "25-29", - "count": 108, - "date": "2005-10-01", "gender": "ALL", + "locality": "SOUTHEAST", + "population": 13, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "30-34", - "count": 53, - "date": "2005-10-01", "gender": "ALL", + "locality": "SOUTHEAST", + "population": 4, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "35-39", - "count": 106, - "date": "2005-10-01", "gender": "ALL", + "locality": "SOUTHEAST", + "population": 11, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "40<", - "count": 122, - "date": "2005-10-01", "gender": "ALL", + "locality": "SOUTHEAST", + "population": 10, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 87, - "date": "2005-10-01", "gender": "ALL", + "locality": "SOUTHEAST", + "population": 8, "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", }, Object { "ageBucket": "ALL", - "count": 99, - "date": "2005-10-01", "gender": "ALL", + "locality": "SOUTHEAST", + "population": 2, "raceOrEthnicity": "BLACK", }, Object { "ageBucket": "ALL", - "count": 81, - "date": "2005-10-01", "gender": "ALL", + "locality": "SOUTHEAST", + "population": 12, "raceOrEthnicity": "HISPANIC", }, Object { "ageBucket": "ALL", - "count": 84, - "date": "2005-10-01", "gender": "ALL", + "locality": "SOUTHEAST", + "population": 10, "raceOrEthnicity": "WHITE", }, Object { "ageBucket": "ALL", - "count": 50, - "date": "2005-10-01", "gender": "ALL", + "locality": "SOUTHEAST", + "population": 10, "raceOrEthnicity": "OTHER", }, Object { "ageBucket": "ALL", - "count": 159, - "date": "2005-10-01", "gender": "MALE", + "locality": "SOUTHEAST", + "population": 26, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 243, - "date": "2005-10-01", "gender": "FEMALE", + "locality": "SOUTHEAST", + "population": 16, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 394, - "date": "2005-11-01", "gender": "ALL", + "locality": "NORTHEAST", + "population": 189, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "<25", - "count": 13, - "date": "2005-11-01", "gender": "ALL", + "locality": "NORTHEAST", + "population": 65, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "25-29", - "count": 106, - "date": "2005-11-01", "gender": "ALL", + "locality": "NORTHEAST", + "population": 8, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "30-34", - "count": 52, - "date": "2005-11-01", "gender": "ALL", + "locality": "NORTHEAST", + "population": 31, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "35-39", - "count": 104, - "date": "2005-11-01", "gender": "ALL", + "locality": "NORTHEAST", + "population": 30, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "40<", - "count": 120, - "date": "2005-11-01", "gender": "ALL", + "locality": "NORTHEAST", + "population": 55, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 86, - "date": "2005-11-01", "gender": "ALL", + "locality": "NORTHEAST", + "population": 39, "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", }, Object { "ageBucket": "ALL", - "count": 97, - "date": "2005-11-01", "gender": "ALL", + "locality": "NORTHEAST", + "population": 9, "raceOrEthnicity": "BLACK", }, Object { "ageBucket": "ALL", - "count": 79, - "date": "2005-11-01", "gender": "ALL", + "locality": "NORTHEAST", + "population": 70, "raceOrEthnicity": "HISPANIC", }, Object { "ageBucket": "ALL", - "count": 83, - "date": "2005-11-01", "gender": "ALL", + "locality": "NORTHEAST", + "population": 32, "raceOrEthnicity": "WHITE", }, Object { "ageBucket": "ALL", - "count": 49, - "date": "2005-11-01", "gender": "ALL", + "locality": "NORTHEAST", + "population": 38, "raceOrEthnicity": "OTHER", }, Object { "ageBucket": "ALL", - "count": 155, - "date": "2005-11-01", "gender": "MALE", + "locality": "NORTHEAST", + "population": 107, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 239, - "date": "2005-11-01", "gender": "FEMALE", + "locality": "NORTHEAST", + "population": 82, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 387, - "date": "2005-12-01", "gender": "ALL", + "locality": "NORTHEAST_CENTRAL", + "population": 173, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "<25", - "count": 13, - "date": "2005-12-01", "gender": "ALL", + "locality": "NORTHEAST_CENTRAL", + "population": 72, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "25-29", - "count": 104, - "date": "2005-12-01", "gender": "ALL", + "locality": "NORTHEAST_CENTRAL", + "population": 15, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "30-34", - "count": 51, - "date": "2005-12-01", "gender": "ALL", + "locality": "NORTHEAST_CENTRAL", + "population": 13, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "35-39", - "count": 102, - "date": "2005-12-01", "gender": "ALL", + "locality": "NORTHEAST_CENTRAL", + "population": 57, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "40<", - "count": 118, - "date": "2005-12-01", "gender": "ALL", + "locality": "NORTHEAST_CENTRAL", + "population": 15, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 84, - "date": "2005-12-01", "gender": "ALL", + "locality": "NORTHEAST_CENTRAL", + "population": 50, "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", }, Object { "ageBucket": "ALL", - "count": 96, - "date": "2005-12-01", "gender": "ALL", + "locality": "NORTHEAST_CENTRAL", + "population": 51, "raceOrEthnicity": "BLACK", }, Object { "ageBucket": "ALL", - "count": 78, - "date": "2005-12-01", "gender": "ALL", + "locality": "NORTHEAST_CENTRAL", + "population": 35, "raceOrEthnicity": "HISPANIC", }, Object { "ageBucket": "ALL", - "count": 81, - "date": "2005-12-01", "gender": "ALL", + "locality": "NORTHEAST_CENTRAL", + "population": 20, "raceOrEthnicity": "WHITE", }, Object { "ageBucket": "ALL", - "count": 48, - "date": "2005-12-01", "gender": "ALL", + "locality": "NORTHEAST_CENTRAL", + "population": 17, "raceOrEthnicity": "OTHER", }, Object { "ageBucket": "ALL", - "count": 153, - "date": "2005-12-01", "gender": "MALE", + "locality": "NORTHEAST_CENTRAL", + "population": 41, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 234, - "date": "2005-12-01", "gender": "FEMALE", + "locality": "NORTHEAST_CENTRAL", + "population": 132, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 387, - "date": "2006-01-01", "gender": "ALL", + "locality": "NORTHWEST", + "population": 101, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "<25", - "count": 13, - "date": "2006-01-01", "gender": "ALL", + "locality": "NORTHWEST", + "population": 24, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "25-29", - "count": 104, - "date": "2006-01-01", "gender": "ALL", + "locality": "NORTHWEST", + "population": 21, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "30-34", - "count": 51, - "date": "2006-01-01", "gender": "ALL", + "locality": "NORTHWEST", + "population": 28, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "35-39", - "count": 102, - "date": "2006-01-01", "gender": "ALL", + "locality": "NORTHWEST", + "population": 19, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "40<", - "count": 118, - "date": "2006-01-01", "gender": "ALL", + "locality": "NORTHWEST", + "population": 9, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 84, - "date": "2006-01-01", "gender": "ALL", + "locality": "NORTHWEST", + "population": 21, "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", }, Object { "ageBucket": "ALL", - "count": 96, - "date": "2006-01-01", "gender": "ALL", + "locality": "NORTHWEST", + "population": 1, "raceOrEthnicity": "BLACK", }, Object { "ageBucket": "ALL", - "count": 78, - "date": "2006-01-01", "gender": "ALL", + "locality": "NORTHWEST", + "population": 27, "raceOrEthnicity": "HISPANIC", }, Object { "ageBucket": "ALL", - "count": 81, - "date": "2006-01-01", "gender": "ALL", + "locality": "NORTHWEST", + "population": 15, "raceOrEthnicity": "WHITE", }, Object { "ageBucket": "ALL", - "count": 48, - "date": "2006-01-01", "gender": "ALL", + "locality": "NORTHWEST", + "population": 36, "raceOrEthnicity": "OTHER", }, Object { "ageBucket": "ALL", - "count": 153, - "date": "2006-01-01", "gender": "MALE", + "locality": "NORTHWEST", + "population": 14, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 234, - "date": "2006-01-01", "gender": "FEMALE", + "locality": "NORTHWEST", + "population": 87, "raceOrEthnicity": "ALL", }, +] +`; + +exports[`data fetching for metric ProbationPopulationHistorical 1`] = ` +Array [ Object { "ageBucket": "ALL", - "count": 422, - "date": "2006-02-01", + "count": 3194, + "date": "2000-01-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 14, - "date": "2006-02-01", + "ageBucket": "ALL", + "count": 3099, + "date": "2000-02-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 114, - "date": "2006-02-01", + "ageBucket": "ALL", + "count": 3119, + "date": "2000-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 55, - "date": "2006-02-01", + "ageBucket": "ALL", + "count": 3047, + "date": "2000-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 111, - "date": "2006-02-01", + "ageBucket": "ALL", + "count": 3058, + "date": "2000-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 128, - "date": "2006-02-01", + "ageBucket": "ALL", + "count": 3236, + "date": "2000-06-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 92, - "date": "2006-02-01", + "count": 3101, + "date": "2000-07-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 104, - "date": "2006-02-01", + "count": 3137, + "date": "2000-08-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 85, - "date": "2006-02-01", + "count": 3259, + "date": "2000-09-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 89, - "date": "2006-02-01", + "count": 3203, + "date": "2000-10-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 52, - "date": "2006-02-01", + "count": 3257, + "date": "2000-11-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 167, - "date": "2006-02-01", - "gender": "MALE", + "count": 3255, + "date": "2000-12-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 255, - "date": "2006-02-01", - "gender": "FEMALE", + "count": 3317, + "date": "2001-01-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 415, - "date": "2006-03-01", + "count": 3226, + "date": "2001-02-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 13, - "date": "2006-03-01", + "ageBucket": "ALL", + "count": 3242, + "date": "2001-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 112, - "date": "2006-03-01", + "ageBucket": "ALL", + "count": 3315, + "date": "2001-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 54, - "date": "2006-03-01", + "ageBucket": "ALL", + "count": 3319, + "date": "2001-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 109, - "date": "2006-03-01", + "ageBucket": "ALL", + "count": 3321, + "date": "2001-06-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 126, - "date": "2006-03-01", + "ageBucket": "ALL", + "count": 3299, + "date": "2001-07-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 90, - "date": "2006-03-01", + "count": 3316, + "date": "2001-08-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 103, - "date": "2006-03-01", + "count": 3406, + "date": "2001-09-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 84, - "date": "2006-03-01", + "count": 3282, + "date": "2001-10-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 87, - "date": "2006-03-01", + "count": 3403, + "date": "2001-11-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 51, - "date": "2006-03-01", + "count": 3490, + "date": "2001-12-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 164, - "date": "2006-03-01", - "gender": "MALE", + "count": 3377, + "date": "2002-01-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 251, - "date": "2006-03-01", - "gender": "FEMALE", + "count": 3503, + "date": "2002-02-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 433, - "date": "2006-04-01", + "count": 3482, + "date": "2002-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 14, - "date": "2006-04-01", + "ageBucket": "ALL", + "count": 3523, + "date": "2002-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 117, - "date": "2006-04-01", + "ageBucket": "ALL", + "count": 3597, + "date": "2002-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 57, - "date": "2006-04-01", + "ageBucket": "ALL", + "count": 3615, + "date": "2002-06-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 114, - "date": "2006-04-01", + "ageBucket": "ALL", + "count": 3719, + "date": "2002-07-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 132, - "date": "2006-04-01", + "ageBucket": "ALL", + "count": 3645, + "date": "2002-08-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 94, - "date": "2006-04-01", + "count": 3709, + "date": "2002-09-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 107, - "date": "2006-04-01", + "count": 3587, + "date": "2002-10-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 87, - "date": "2006-04-01", + "count": 3612, + "date": "2002-11-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 91, - "date": "2006-04-01", + "count": 3576, + "date": "2002-12-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 54, - "date": "2006-04-01", + "count": 3655, + "date": "2003-01-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 171, - "date": "2006-04-01", - "gender": "MALE", + "count": 3773, + "date": "2003-02-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 262, - "date": "2006-04-01", - "gender": "FEMALE", + "count": 3631, + "date": "2003-03-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 470, - "date": "2006-05-01", + "count": 3843, + "date": "2003-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 15, - "date": "2006-05-01", + "ageBucket": "ALL", + "count": 3791, + "date": "2003-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 126, - "date": "2006-05-01", + "ageBucket": "ALL", + "count": 3778, + "date": "2003-06-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 62, - "date": "2006-05-01", + "ageBucket": "ALL", + "count": 3964, + "date": "2003-07-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 124, - "date": "2006-05-01", + "ageBucket": "ALL", + "count": 4004, + "date": "2003-08-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 143, - "date": "2006-05-01", + "ageBucket": "ALL", + "count": 3801, + "date": "2003-09-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 102, - "date": "2006-05-01", + "count": 3939, + "date": "2003-10-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 116, - "date": "2006-05-01", + "count": 3835, + "date": "2003-11-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 95, - "date": "2006-05-01", + "count": 3981, + "date": "2003-12-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 99, - "date": "2006-05-01", + "count": 3946, + "date": "2004-01-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 58, - "date": "2006-05-01", + "count": 3979, + "date": "2004-02-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 185, - "date": "2006-05-01", - "gender": "MALE", + "count": 3956, + "date": "2004-03-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 285, - "date": "2006-05-01", - "gender": "FEMALE", + "count": 3951, + "date": "2004-04-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 469, - "date": "2006-06-01", + "count": 4090, + "date": "2004-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 15, - "date": "2006-06-01", + "ageBucket": "ALL", + "count": 4135, + "date": "2004-06-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 126, - "date": "2006-06-01", + "ageBucket": "ALL", + "count": 4075, + "date": "2004-07-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 61, - "date": "2006-06-01", + "ageBucket": "ALL", + "count": 4111, + "date": "2004-08-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 124, - "date": "2006-06-01", + "ageBucket": "ALL", + "count": 4058, + "date": "2004-09-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 143, - "date": "2006-06-01", + "ageBucket": "ALL", + "count": 4078, + "date": "2004-10-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 102, - "date": "2006-06-01", + "count": 4118, + "date": "2004-11-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 116, - "date": "2006-06-01", + "count": 4178, + "date": "2004-12-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 95, - "date": "2006-06-01", + "count": 4197, + "date": "2005-01-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 98, - "date": "2006-06-01", + "count": 4167, + "date": "2005-02-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 58, - "date": "2006-06-01", + "count": 4313, + "date": "2005-03-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 185, - "date": "2006-06-01", - "gender": "MALE", + "count": 4279, + "date": "2005-04-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 284, - "date": "2006-06-01", - "gender": "FEMALE", + "count": 4345, + "date": "2005-05-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 474, - "date": "2006-07-01", + "count": 4380, + "date": "2005-06-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 15, - "date": "2006-07-01", + "ageBucket": "ALL", + "count": 4357, + "date": "2005-07-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 128, - "date": "2006-07-01", + "ageBucket": "ALL", + "count": 4310, + "date": "2005-08-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 62, - "date": "2006-07-01", + "ageBucket": "ALL", + "count": 4299, + "date": "2005-09-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 125, - "date": "2006-07-01", + "ageBucket": "ALL", + "count": 4440, + "date": "2005-10-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 144, - "date": "2006-07-01", + "ageBucket": "ALL", + "count": 4391, + "date": "2005-11-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 103, - "date": "2006-07-01", + "count": 4540, + "date": "2005-12-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 117, - "date": "2006-07-01", + "count": 4606, + "date": "2006-01-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 96, - "date": "2006-07-01", + "count": 4470, + "date": "2006-02-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 100, - "date": "2006-07-01", + "count": 4540, + "date": "2006-03-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 59, - "date": "2006-07-01", + "count": 4606, + "date": "2006-04-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 187, - "date": "2006-07-01", - "gender": "MALE", + "count": 4639, + "date": "2006-05-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 287, - "date": "2006-07-01", - "gender": "FEMALE", + "count": 4518, + "date": "2006-06-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 486, - "date": "2006-08-01", + "count": 4605, + "date": "2006-07-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 16, + "ageBucket": "ALL", + "count": 4696, "date": "2006-08-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 131, - "date": "2006-08-01", + "ageBucket": "ALL", + "count": 4598, + "date": "2006-09-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 64, - "date": "2006-08-01", + "ageBucket": "ALL", + "count": 4740, + "date": "2006-10-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 128, - "date": "2006-08-01", + "ageBucket": "ALL", + "count": 4846, + "date": "2006-11-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 148, - "date": "2006-08-01", + "ageBucket": "ALL", + "count": 4736, + "date": "2006-12-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 106, - "date": "2006-08-01", + "count": 4805, + "date": "2007-01-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 120, - "date": "2006-08-01", + "count": 4937, + "date": "2007-02-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 98, - "date": "2006-08-01", + "count": 4872, + "date": "2007-03-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 102, - "date": "2006-08-01", + "count": 5026, + "date": "2007-04-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 60, - "date": "2006-08-01", + "count": 5091, + "date": "2007-05-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 192, - "date": "2006-08-01", - "gender": "MALE", + "count": 4869, + "date": "2007-06-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 294, - "date": "2006-08-01", - "gender": "FEMALE", + "count": 5009, + "date": "2007-07-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 461, - "date": "2006-09-01", + "count": 4935, + "date": "2007-08-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 15, - "date": "2006-09-01", + "ageBucket": "ALL", + "count": 5030, + "date": "2007-09-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 124, - "date": "2006-09-01", + "ageBucket": "ALL", + "count": 4965, + "date": "2007-10-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 60, - "date": "2006-09-01", + "ageBucket": "ALL", + "count": 5144, + "date": "2007-11-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 121, - "date": "2006-09-01", + "ageBucket": "ALL", + "count": 4934, + "date": "2007-12-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 140, - "date": "2006-09-01", + "ageBucket": "ALL", + "count": 5140, + "date": "2008-01-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 100, - "date": "2006-09-01", + "count": 4967, + "date": "2008-02-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 114, - "date": "2006-09-01", + "count": 4969, + "date": "2008-03-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 93, - "date": "2006-09-01", + "count": 5060, + "date": "2008-04-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 97, - "date": "2006-09-01", + "count": 5133, + "date": "2008-05-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 57, - "date": "2006-09-01", + "count": 5048, + "date": "2008-06-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 182, - "date": "2006-09-01", - "gender": "MALE", + "count": 5039, + "date": "2008-07-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 279, - "date": "2006-09-01", - "gender": "FEMALE", + "count": 4793, + "date": "2008-08-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 476, - "date": "2006-10-01", + "count": 4849, + "date": "2008-09-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 15, - "date": "2006-10-01", + "ageBucket": "ALL", + "count": 5028, + "date": "2008-10-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 128, - "date": "2006-10-01", + "ageBucket": "ALL", + "count": 5019, + "date": "2008-11-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 62, - "date": "2006-10-01", + "ageBucket": "ALL", + "count": 4995, + "date": "2008-12-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 125, - "date": "2006-10-01", + "ageBucket": "ALL", + "count": 4955, + "date": "2009-01-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 145, - "date": "2006-10-01", + "ageBucket": "ALL", + "count": 4923, + "date": "2009-02-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 103, - "date": "2006-10-01", + "count": 4968, + "date": "2009-03-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 118, - "date": "2006-10-01", + "count": 4810, + "date": "2009-04-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 96, - "date": "2006-10-01", + "count": 4770, + "date": "2009-05-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 100, - "date": "2006-10-01", + "count": 4769, + "date": "2009-06-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 59, - "date": "2006-10-01", + "count": 4745, + "date": "2009-07-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 188, - "date": "2006-10-01", - "gender": "MALE", + "count": 4851, + "date": "2009-08-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 288, - "date": "2006-10-01", - "gender": "FEMALE", + "count": 4885, + "date": "2009-09-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 497, - "date": "2006-11-01", + "count": 4897, + "date": "2009-10-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 16, - "date": "2006-11-01", + "ageBucket": "ALL", + "count": 4847, + "date": "2009-11-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 134, - "date": "2006-11-01", + "ageBucket": "ALL", + "count": 4914, + "date": "2009-12-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 65, - "date": "2006-11-01", + "ageBucket": "ALL", + "count": 4704, + "date": "2010-01-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 131, - "date": "2006-11-01", + "ageBucket": "ALL", + "count": 4936, + "date": "2010-02-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 151, - "date": "2006-11-01", + "ageBucket": "ALL", + "count": 4840, + "date": "2010-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 108, - "date": "2006-11-01", + "count": 4793, + "date": "2010-04-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 123, - "date": "2006-11-01", + "count": 4754, + "date": "2010-05-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 100, - "date": "2006-11-01", + "count": 4885, + "date": "2010-06-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 104, - "date": "2006-11-01", + "count": 4846, + "date": "2010-07-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 62, - "date": "2006-11-01", + "count": 4884, + "date": "2010-08-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 196, - "date": "2006-11-01", - "gender": "MALE", + "count": 4863, + "date": "2010-09-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 301, - "date": "2006-11-01", - "gender": "FEMALE", + "count": 4794, + "date": "2010-10-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 479, - "date": "2006-12-01", + "count": 4889, + "date": "2010-11-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 15, - "date": "2006-12-01", + "ageBucket": "ALL", + "count": 5063, + "date": "2010-12-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 129, - "date": "2006-12-01", + "ageBucket": "ALL", + "count": 5050, + "date": "2011-01-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 63, - "date": "2006-12-01", + "ageBucket": "ALL", + "count": 5182, + "date": "2011-02-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 126, - "date": "2006-12-01", + "ageBucket": "ALL", + "count": 5205, + "date": "2011-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 146, - "date": "2006-12-01", + "ageBucket": "ALL", + "count": 5115, + "date": "2011-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 104, - "date": "2006-12-01", + "count": 5206, + "date": "2011-05-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 118, - "date": "2006-12-01", + "count": 5200, + "date": "2011-06-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 97, - "date": "2006-12-01", + "count": 5088, + "date": "2011-07-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 101, - "date": "2006-12-01", + "count": 5163, + "date": "2011-08-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 59, - "date": "2006-12-01", + "count": 5190, + "date": "2011-09-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 189, - "date": "2006-12-01", - "gender": "MALE", + "count": 5120, + "date": "2011-10-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 290, - "date": "2006-12-01", - "gender": "FEMALE", + "count": 5161, + "date": "2011-11-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 487, - "date": "2007-01-01", + "count": 5113, + "date": "2011-12-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 16, - "date": "2007-01-01", + "ageBucket": "ALL", + "count": 5249, + "date": "2012-01-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 131, - "date": "2007-01-01", + "ageBucket": "ALL", + "count": 5266, + "date": "2012-02-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 64, - "date": "2007-01-01", + "ageBucket": "ALL", + "count": 5166, + "date": "2012-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 128, - "date": "2007-01-01", + "ageBucket": "ALL", + "count": 5284, + "date": "2012-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 148, - "date": "2007-01-01", + "ageBucket": "ALL", + "count": 5172, + "date": "2012-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 106, - "date": "2007-01-01", + "count": 5177, + "date": "2012-06-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 120, - "date": "2007-01-01", + "count": 5325, + "date": "2012-07-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 98, - "date": "2007-01-01", + "count": 5335, + "date": "2012-08-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 102, - "date": "2007-01-01", + "count": 5302, + "date": "2012-09-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 60, - "date": "2007-01-01", + "count": 5374, + "date": "2012-10-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 192, - "date": "2007-01-01", - "gender": "MALE", + "count": 5440, + "date": "2012-11-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 295, - "date": "2007-01-01", - "gender": "FEMALE", + "count": 5541, + "date": "2012-12-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 498, - "date": "2007-02-01", + "count": 5342, + "date": "2013-01-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 16, - "date": "2007-02-01", + "ageBucket": "ALL", + "count": 5604, + "date": "2013-02-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 134, - "date": "2007-02-01", + "ageBucket": "ALL", + "count": 5427, + "date": "2013-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 65, - "date": "2007-02-01", + "ageBucket": "ALL", + "count": 5568, + "date": "2013-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 131, - "date": "2007-02-01", + "ageBucket": "ALL", + "count": 5514, + "date": "2013-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 151, - "date": "2007-02-01", + "ageBucket": "ALL", + "count": 5387, + "date": "2013-06-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 108, - "date": "2007-02-01", + "count": 5646, + "date": "2013-07-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 123, - "date": "2007-02-01", + "count": 5620, + "date": "2013-08-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 100, - "date": "2007-02-01", + "count": 5480, + "date": "2013-09-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 105, - "date": "2007-02-01", + "count": 5462, + "date": "2013-10-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 62, - "date": "2007-02-01", + "count": 5667, + "date": "2013-11-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 197, - "date": "2007-02-01", - "gender": "MALE", + "count": 5696, + "date": "2013-12-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 301, - "date": "2007-02-01", - "gender": "FEMALE", + "count": 5856, + "date": "2014-01-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 494, - "date": "2007-03-01", + "count": 5762, + "date": "2014-02-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 16, - "date": "2007-03-01", + "ageBucket": "ALL", + "count": 5900, + "date": "2014-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 133, - "date": "2007-03-01", + "ageBucket": "ALL", + "count": 5689, + "date": "2014-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 65, - "date": "2007-03-01", + "ageBucket": "ALL", + "count": 5954, + "date": "2014-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 130, - "date": "2007-03-01", + "ageBucket": "ALL", + "count": 5717, + "date": "2014-06-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 150, - "date": "2007-03-01", + "ageBucket": "ALL", + "count": 5828, + "date": "2014-07-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 107, - "date": "2007-03-01", + "count": 6164, + "date": "2014-08-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 122, - "date": "2007-03-01", + "count": 6098, + "date": "2014-09-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 100, - "date": "2007-03-01", + "count": 6241, + "date": "2014-10-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 104, - "date": "2007-03-01", + "count": 6149, + "date": "2014-11-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 61, - "date": "2007-03-01", + "count": 6195, + "date": "2014-12-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 195, - "date": "2007-03-01", - "gender": "MALE", + "count": 6260, + "date": "2015-01-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 299, - "date": "2007-03-01", - "gender": "FEMALE", + "count": 6408, + "date": "2015-02-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 484, - "date": "2007-04-01", + "count": 6686, + "date": "2015-03-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 16, - "date": "2007-04-01", + "ageBucket": "ALL", + "count": 6409, + "date": "2015-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 130, - "date": "2007-04-01", + "ageBucket": "ALL", + "count": 6782, + "date": "2015-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 63, - "date": "2007-04-01", + "ageBucket": "ALL", + "count": 6794, + "date": "2015-06-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 128, - "date": "2007-04-01", + "ageBucket": "ALL", + "count": 6693, + "date": "2015-07-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 147, - "date": "2007-04-01", + "ageBucket": "ALL", + "count": 6648, + "date": "2015-08-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 105, - "date": "2007-04-01", + "count": 6799, + "date": "2015-09-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 120, - "date": "2007-04-01", + "count": 6665, + "date": "2015-10-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 98, - "date": "2007-04-01", + "count": 6750, + "date": "2015-11-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 102, - "date": "2007-04-01", + "count": 6820, + "date": "2015-12-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 60, - "date": "2007-04-01", + "count": 7082, + "date": "2016-01-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 191, - "date": "2007-04-01", - "gender": "MALE", + "count": 6964, + "date": "2016-02-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 293, - "date": "2007-04-01", - "gender": "FEMALE", + "count": 6785, + "date": "2016-03-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 493, - "date": "2007-05-01", + "count": 6699, + "date": "2016-04-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 16, - "date": "2007-05-01", + "ageBucket": "ALL", + "count": 6854, + "date": "2016-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 133, - "date": "2007-05-01", + "ageBucket": "ALL", + "count": 7076, + "date": "2016-06-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 65, - "date": "2007-05-01", + "ageBucket": "ALL", + "count": 6878, + "date": "2016-07-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 130, - "date": "2007-05-01", + "ageBucket": "ALL", + "count": 6901, + "date": "2016-08-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 150, - "date": "2007-05-01", + "ageBucket": "ALL", + "count": 7097, + "date": "2016-09-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 107, - "date": "2007-05-01", + "count": 6943, + "date": "2016-10-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 122, - "date": "2007-05-01", + "count": 6759, + "date": "2016-11-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 99, - "date": "2007-05-01", + "count": 6738, + "date": "2016-12-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 104, - "date": "2007-05-01", + "count": 6919, + "date": "2017-01-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 61, - "date": "2007-05-01", + "count": 7012, + "date": "2017-02-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 195, - "date": "2007-05-01", - "gender": "MALE", + "count": 6632, + "date": "2017-03-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 298, - "date": "2007-05-01", - "gender": "FEMALE", + "count": 6871, + "date": "2017-04-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 462, - "date": "2007-06-01", + "count": 6782, + "date": "2017-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 15, - "date": "2007-06-01", + "ageBucket": "ALL", + "count": 6822, + "date": "2017-06-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 124, - "date": "2007-06-01", + "ageBucket": "ALL", + "count": 6760, + "date": "2017-07-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 61, - "date": "2007-06-01", + "ageBucket": "ALL", + "count": 6805, + "date": "2017-08-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 122, - "date": "2007-06-01", + "ageBucket": "ALL", + "count": 6878, + "date": "2017-09-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 140, - "date": "2007-06-01", + "ageBucket": "ALL", + "count": 6649, + "date": "2017-10-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 100, - "date": "2007-06-01", + "count": 6580, + "date": "2017-11-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 114, - "date": "2007-06-01", + "count": 6549, + "date": "2017-12-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 93, - "date": "2007-06-01", + "count": 6691, + "date": "2018-01-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 97, - "date": "2007-06-01", + "count": 6802, + "date": "2018-02-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 57, - "date": "2007-06-01", + "count": 6759, + "date": "2018-03-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 182, - "date": "2007-06-01", - "gender": "MALE", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 280, - "date": "2007-06-01", - "gender": "FEMALE", + "count": 6490, + "date": "2018-04-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 448, - "date": "2007-07-01", + "count": 6722, + "date": "2018-05-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 14, - "date": "2007-07-01", + "ageBucket": "ALL", + "count": 6785, + "date": "2018-06-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 121, - "date": "2007-07-01", + "ageBucket": "ALL", + "count": 6834, + "date": "2018-07-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 59, - "date": "2007-07-01", + "ageBucket": "ALL", + "count": 6490, + "date": "2018-08-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 118, - "date": "2007-07-01", + "ageBucket": "ALL", + "count": 6598, + "date": "2018-09-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 136, - "date": "2007-07-01", + "ageBucket": "ALL", + "count": 6513, + "date": "2018-10-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 97, - "date": "2007-07-01", + "count": 6615, + "date": "2018-11-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 111, - "date": "2007-07-01", + "count": 6688, + "date": "2018-12-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 90, - "date": "2007-07-01", + "count": 6559, + "date": "2019-01-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 94, - "date": "2007-07-01", + "count": 6625, + "date": "2019-02-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 55, - "date": "2007-07-01", + "count": 6286, + "date": "2019-03-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 177, - "date": "2007-07-01", - "gender": "MALE", + "count": 6486, + "date": "2019-04-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 271, - "date": "2007-07-01", - "gender": "FEMALE", + "count": 6229, + "date": "2019-05-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 458, - "date": "2007-08-01", + "count": 6559, + "date": "2019-06-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 15, - "date": "2007-08-01", + "ageBucket": "ALL", + "count": 6485, + "date": "2019-07-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "25-29", - "count": 123, - "date": "2007-08-01", + "ageBucket": "ALL", + "count": 6439, + "date": "2019-08-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "30-34", - "count": 60, - "date": "2007-08-01", + "ageBucket": "ALL", + "count": 6636, + "date": "2019-09-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "35-39", - "count": 121, - "date": "2007-08-01", + "ageBucket": "ALL", + "count": 6614, + "date": "2019-10-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "40<", - "count": 139, - "date": "2007-08-01", + "ageBucket": "ALL", + "count": 6457, + "date": "2019-11-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 99, - "date": "2007-08-01", + "count": 6503, + "date": "2019-12-01", "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 113, - "date": "2007-08-01", + "count": 6331, + "date": "2020-01-01", "gender": "ALL", - "raceOrEthnicity": "BLACK", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 92, - "date": "2007-08-01", + "count": 6640, + "date": "2020-02-01", "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 96, - "date": "2007-08-01", + "count": 6393, + "date": "2020-03-01", "gender": "ALL", - "raceOrEthnicity": "WHITE", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 57, - "date": "2007-08-01", + "count": 6553, + "date": "2020-04-01", "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 181, - "date": "2007-08-01", - "gender": "MALE", + "count": 6239, + "date": "2020-05-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 277, - "date": "2007-08-01", - "gender": "FEMALE", + "count": 6176, + "date": "2020-06-01", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 458, - "date": "2007-09-01", + "count": 5900, + "date": "2020-07-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { - "ageBucket": "<25", - "count": 15, - "date": "2007-09-01", + "ageBucket": "ALL", + "count": 5924, + "date": "2020-08-01", "gender": "ALL", "raceOrEthnicity": "ALL", }, +] +`; + +exports[`data fetching for metric ProbationProgrammingCurrent 1`] = ` +Array [ Object { - "ageBucket": "25-29", - "count": 123, - "date": "2007-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", + "count": 153, + "locality": "7", }, Object { - "ageBucket": "30-34", - "count": 60, - "date": "2007-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", + "count": 34, + "locality": "4", }, Object { - "ageBucket": "35-39", - "count": 121, - "date": "2007-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", + "count": 359, + "locality": "5", }, Object { - "ageBucket": "40<", - "count": 139, - "date": "2007-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", + "count": 84, + "locality": "6", }, Object { - "ageBucket": "ALL", - "count": 99, - "date": "2007-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "count": 68, + "locality": "2", }, Object { - "ageBucket": "ALL", - "count": 113, - "date": "2007-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", + "count": 38, + "locality": "8", }, Object { - "ageBucket": "ALL", - "count": 92, - "date": "2007-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "count": 91, + "locality": "3", }, Object { - "ageBucket": "ALL", - "count": 96, - "date": "2007-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", + "count": 102, + "locality": "1", }, +] +`; + +exports[`data fetching for metric ProbationRevocationsAggregate 1`] = ` +Array [ Object { "ageBucket": "ALL", - "count": 57, - "date": "2007-09-01", + "category": "abscond", + "count": 135, "gender": "ALL", - "raceOrEthnicity": "OTHER", + "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 181, - "date": "2007-09-01", - "gender": "MALE", + "category": "offend", + "count": 86, + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", + "category": "technical", "count": 277, - "date": "2007-09-01", - "gender": "FEMALE", + "gender": "ALL", "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "count": 449, - "date": "2007-10-01", + "category": "unknown", + "count": 45, "gender": "ALL", "raceOrEthnicity": "ALL", }, +] +`; + +exports[`data fetching for metric ProbationSuccessAggregate 1`] = ` +Array [ Object { - "ageBucket": "<25", - "count": 15, - "date": "2007-10-01", + "ageBucket": "ALL", "gender": "ALL", + "locality": "ALL", "raceOrEthnicity": "ALL", + "rate": 0.549307774227902, + "rateDenominator": 9390, + "rateNumerator": 5158, }, +] +`; + +exports[`data fetching for metric ProbationSuccessHistorical 1`] = ` +Array [ Object { - "ageBucket": "25-29", - "count": 121, - "date": "2007-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 5, + "rate": 0.537864077669903, + "rateDenominator": 515, + "rateNumerator": 277, + "year": 2020, }, Object { - "ageBucket": "30-34", - "count": 59, - "date": "2007-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 1, + "rate": 0.5348837209302325, + "rateDenominator": 559, + "rateNumerator": 299, + "year": 2018, }, Object { - "ageBucket": "35-39", - "count": 118, - "date": "2007-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 4, + "rate": 0.523121387283237, + "rateDenominator": 346, + "rateNumerator": 181, + "year": 2020, }, Object { - "ageBucket": "40<", - "count": 137, - "date": "2007-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 11, + "rate": 0.5731225296442688, + "rateDenominator": 506, + "rateNumerator": 290, + "year": 2019, }, Object { - "ageBucket": "ALL", - "count": 97, - "date": "2007-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "locality": "ALL", + "month": 10, + "rate": 0.5517241379310345, + "rateDenominator": 261, + "rateNumerator": 144, + "year": 2018, }, Object { - "ageBucket": "ALL", - "count": 111, - "date": "2007-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", + "locality": "ALL", + "month": 9, + "rate": 0.5802469135802469, + "rateDenominator": 324, + "rateNumerator": 188, + "year": 2017, }, Object { - "ageBucket": "ALL", - "count": 91, - "date": "2007-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "locality": "ALL", + "month": 11, + "rate": 0.5056179775280899, + "rateDenominator": 445, + "rateNumerator": 225, + "year": 2017, }, Object { - "ageBucket": "ALL", - "count": 94, - "date": "2007-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", + "locality": "ALL", + "month": 6, + "rate": 0.5594936708860759, + "rateDenominator": 395, + "rateNumerator": 221, + "year": 2018, }, Object { - "ageBucket": "ALL", - "count": 56, - "date": "2007-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", + "locality": "ALL", + "month": 10, + "rate": 0.536723163841808, + "rateDenominator": 354, + "rateNumerator": 190, + "year": 2017, }, Object { - "ageBucket": "ALL", - "count": 177, - "date": "2007-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 4, + "rate": 0.5382932166301969, + "rateDenominator": 457, + "rateNumerator": 246, + "year": 2019, }, Object { - "ageBucket": "ALL", - "count": 272, - "date": "2007-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 2, + "rate": 0.5067961165048543, + "rateDenominator": 515, + "rateNumerator": 261, + "year": 2018, }, Object { - "ageBucket": "ALL", - "count": 451, - "date": "2007-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 1, + "rate": 0.5625, + "rateDenominator": 192, + "rateNumerator": 108, + "year": 2019, }, Object { - "ageBucket": "<25", - "count": 15, - "date": "2007-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 1, + "rate": 0.5425531914893617, + "rateDenominator": 470, + "rateNumerator": 255, + "year": 2020, }, Object { - "ageBucket": "25-29", - "count": 121, - "date": "2007-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 9, + "rate": 0.5243362831858407, + "rateDenominator": 452, + "rateNumerator": 237, + "year": 2019, }, Object { - "ageBucket": "30-34", - "count": 59, - "date": "2007-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 7, + "rate": 0.5414507772020726, + "rateDenominator": 386, + "rateNumerator": 209, + "year": 2018, }, Object { - "ageBucket": "35-39", - "count": 119, - "date": "2007-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 9, + "rate": 0.5148514851485149, + "rateDenominator": 303, + "rateNumerator": 156, + "year": 2018, }, Object { - "ageBucket": "40<", - "count": 137, - "date": "2007-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 10, + "rate": 0.5720930232558139, + "rateDenominator": 430, + "rateNumerator": 246, + "year": 2019, }, Object { - "ageBucket": "ALL", - "count": 98, - "date": "2007-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "locality": "ALL", + "month": 3, + "rate": 0.5607476635514018, + "rateDenominator": 428, + "rateNumerator": 240, + "year": 2018, }, Object { - "ageBucket": "ALL", - "count": 112, - "date": "2007-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", + "locality": "ALL", + "month": 11, + "rate": 0.49875311720698257, + "rateDenominator": 401, + "rateNumerator": 200, + "year": 2018, }, Object { - "ageBucket": "ALL", - "count": 91, - "date": "2007-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", + "locality": "ALL", + "month": 6, + "rate": 0.5763546798029556, + "rateDenominator": 203, + "rateNumerator": 117, + "year": 2019, }, Object { - "ageBucket": "ALL", - "count": 95, - "date": "2007-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", + "locality": "ALL", + "month": 12, + "rate": 0.5188284518828452, + "rateDenominator": 239, + "rateNumerator": 124, + "year": 2018, }, Object { - "ageBucket": "ALL", - "count": 56, - "date": "2007-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", + "locality": "ALL", + "month": 6, + "rate": 0.4175824175824176, + "rateDenominator": 182, + "rateNumerator": 76, + "year": 2020, }, Object { - "ageBucket": "ALL", - "count": 178, - "date": "2007-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 273, - "date": "2007-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 461, - "date": "2007-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 15, - "date": "2007-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 124, - "date": "2007-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 60, - "date": "2007-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 121, - "date": "2007-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 140, - "date": "2007-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 100, - "date": "2007-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 114, - "date": "2007-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 93, - "date": "2007-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 97, - "date": "2007-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 57, - "date": "2007-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 182, - "date": "2007-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 279, - "date": "2007-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 486, - "date": "2008-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 16, - "date": "2008-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 131, - "date": "2008-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 64, - "date": "2008-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 128, - "date": "2008-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 148, - "date": "2008-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 106, - "date": "2008-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 120, - "date": "2008-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 98, - "date": "2008-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 102, - "date": "2008-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 60, - "date": "2008-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 192, - "date": "2008-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 294, - "date": "2008-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 488, - "date": "2008-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 16, - "date": "2008-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 131, - "date": "2008-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 64, - "date": "2008-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 129, - "date": "2008-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 148, - "date": "2008-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 106, - "date": "2008-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 121, - "date": "2008-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 98, - "date": "2008-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 102, - "date": "2008-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 60, - "date": "2008-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 193, - "date": "2008-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 295, - "date": "2008-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 501, - "date": "2008-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 16, - "date": "2008-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 135, - "date": "2008-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 66, - "date": "2008-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 132, - "date": "2008-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 152, - "date": "2008-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 109, - "date": "2008-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 124, - "date": "2008-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 101, - "date": "2008-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 105, - "date": "2008-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 62, - "date": "2008-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 198, - "date": "2008-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 303, - "date": "2008-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 494, - "date": "2008-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 16, - "date": "2008-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 133, - "date": "2008-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 65, - "date": "2008-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 130, - "date": "2008-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 150, - "date": "2008-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 107, - "date": "2008-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 122, - "date": "2008-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 100, - "date": "2008-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 104, - "date": "2008-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 61, - "date": "2008-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 195, - "date": "2008-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 299, - "date": "2008-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 535, - "date": "2008-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 17, - "date": "2008-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 144, - "date": "2008-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 70, - "date": "2008-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 141, - "date": "2008-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 163, - "date": "2008-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 116, - "date": "2008-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 132, - "date": "2008-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 108, - "date": "2008-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 112, - "date": "2008-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 66, - "date": "2008-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 211, - "date": "2008-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 324, - "date": "2008-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 525, - "date": "2008-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 17, - "date": "2008-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 141, - "date": "2008-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 69, - "date": "2008-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 138, - "date": "2008-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 160, - "date": "2008-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 114, - "date": "2008-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 130, - "date": "2008-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 106, - "date": "2008-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 110, - "date": "2008-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 65, - "date": "2008-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 207, - "date": "2008-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 318, - "date": "2008-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 523, - "date": "2008-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 17, - "date": "2008-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 141, - "date": "2008-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 69, - "date": "2008-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 138, - "date": "2008-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 159, - "date": "2008-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 114, - "date": "2008-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 129, - "date": "2008-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 106, - "date": "2008-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 110, - "date": "2008-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 65, - "date": "2008-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 206, - "date": "2008-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 317, - "date": "2008-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 526, - "date": "2008-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 17, - "date": "2008-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 142, - "date": "2008-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 69, - "date": "2008-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 139, - "date": "2008-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 160, - "date": "2008-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 114, - "date": "2008-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 130, - "date": "2008-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 106, - "date": "2008-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 110, - "date": "2008-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 65, - "date": "2008-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 208, - "date": "2008-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 318, - "date": "2008-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 517, - "date": "2008-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 17, - "date": "2008-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 139, - "date": "2008-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 68, - "date": "2008-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 136, - "date": "2008-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 157, - "date": "2008-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 112, - "date": "2008-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 128, - "date": "2008-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 104, - "date": "2008-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 109, - "date": "2008-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 64, - "date": "2008-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 204, - "date": "2008-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 313, - "date": "2008-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 546, - "date": "2008-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 18, - "date": "2008-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 147, - "date": "2008-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 72, - "date": "2008-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 144, - "date": "2008-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 166, - "date": "2008-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 119, - "date": "2008-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 135, - "date": "2008-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 110, - "date": "2008-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 115, - "date": "2008-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 68, - "date": "2008-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 215, - "date": "2008-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 331, - "date": "2008-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 506, - "date": "2008-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 16, - "date": "2008-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 136, - "date": "2008-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 66, - "date": "2008-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 133, - "date": "2008-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 154, - "date": "2008-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 110, - "date": "2008-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 125, - "date": "2008-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 102, - "date": "2008-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 106, - "date": "2008-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 63, - "date": "2008-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 200, - "date": "2008-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 306, - "date": "2008-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 488, - "date": "2008-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 16, - "date": "2008-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 131, - "date": "2008-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 64, - "date": "2008-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 129, - "date": "2008-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 148, - "date": "2008-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 106, - "date": "2008-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 121, - "date": "2008-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 98, - "date": "2008-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 102, - "date": "2008-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 60, - "date": "2008-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 193, - "date": "2008-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 295, - "date": "2008-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 504, - "date": "2009-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 16, - "date": "2009-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 136, - "date": "2009-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 66, - "date": "2009-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 133, - "date": "2009-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 153, - "date": "2009-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 109, - "date": "2009-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 125, - "date": "2009-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 102, - "date": "2009-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 106, - "date": "2009-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 62, - "date": "2009-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 199, - "date": "2009-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 305, - "date": "2009-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 537, - "date": "2009-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 17, - "date": "2009-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 144, - "date": "2009-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 70, - "date": "2009-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 141, - "date": "2009-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 163, - "date": "2009-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 117, - "date": "2009-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 133, - "date": "2009-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 108, - "date": "2009-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 113, - "date": "2009-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 66, - "date": "2009-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 212, - "date": "2009-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 325, - "date": "2009-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 528, - "date": "2009-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 17, - "date": "2009-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 142, - "date": "2009-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 69, - "date": "2009-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 139, - "date": "2009-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 161, - "date": "2009-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 115, - "date": "2009-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 131, - "date": "2009-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 107, - "date": "2009-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 111, - "date": "2009-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 65, - "date": "2009-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 208, - "date": "2009-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 320, - "date": "2009-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 519, - "date": "2009-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 17, - "date": "2009-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 140, - "date": "2009-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 68, - "date": "2009-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 137, - "date": "2009-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 158, - "date": "2009-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 113, - "date": "2009-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 128, - "date": "2009-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 105, - "date": "2009-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 109, - "date": "2009-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 64, - "date": "2009-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 205, - "date": "2009-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 314, - "date": "2009-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 537, - "date": "2009-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 17, - "date": "2009-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 144, - "date": "2009-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 70, - "date": "2009-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 141, - "date": "2009-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 163, - "date": "2009-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 117, - "date": "2009-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 133, - "date": "2009-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 108, - "date": "2009-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 113, - "date": "2009-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 66, - "date": "2009-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 212, - "date": "2009-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 325, - "date": "2009-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 510, - "date": "2009-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 16, - "date": "2009-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 137, - "date": "2009-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 67, - "date": "2009-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 134, - "date": "2009-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 155, - "date": "2009-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 111, - "date": "2009-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 126, - "date": "2009-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 103, - "date": "2009-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 107, - "date": "2009-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 63, - "date": "2009-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 201, - "date": "2009-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 309, - "date": "2009-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 504, - "date": "2009-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 16, - "date": "2009-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 136, - "date": "2009-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 66, - "date": "2009-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 133, - "date": "2009-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 153, - "date": "2009-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 109, - "date": "2009-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 125, - "date": "2009-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 102, - "date": "2009-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 106, - "date": "2009-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 62, - "date": "2009-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 199, - "date": "2009-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 305, - "date": "2009-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 517, - "date": "2009-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 17, - "date": "2009-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 139, - "date": "2009-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 68, - "date": "2009-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 136, - "date": "2009-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 157, - "date": "2009-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 112, - "date": "2009-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 128, - "date": "2009-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 104, - "date": "2009-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 109, - "date": "2009-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 64, - "date": "2009-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 204, - "date": "2009-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 313, - "date": "2009-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 503, - "date": "2009-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 16, - "date": "2009-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 135, - "date": "2009-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 66, - "date": "2009-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 133, - "date": "2009-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 153, - "date": "2009-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 109, - "date": "2009-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 124, - "date": "2009-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 101, - "date": "2009-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 106, - "date": "2009-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 62, - "date": "2009-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 198, - "date": "2009-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 305, - "date": "2009-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 494, - "date": "2009-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 16, - "date": "2009-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 133, - "date": "2009-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 65, - "date": "2009-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 130, - "date": "2009-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 150, - "date": "2009-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 107, - "date": "2009-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 122, - "date": "2009-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 100, - "date": "2009-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 104, - "date": "2009-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 61, - "date": "2009-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 195, - "date": "2009-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 299, - "date": "2009-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 498, - "date": "2009-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 16, - "date": "2009-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 134, - "date": "2009-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 65, - "date": "2009-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 131, - "date": "2009-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 151, - "date": "2009-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 108, - "date": "2009-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 123, - "date": "2009-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 100, - "date": "2009-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 105, - "date": "2009-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 62, - "date": "2009-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 197, - "date": "2009-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 301, - "date": "2009-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 478, - "date": "2009-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 15, - "date": "2009-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 129, - "date": "2009-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 63, - "date": "2009-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 126, - "date": "2009-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 145, - "date": "2009-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 104, - "date": "2009-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 118, - "date": "2009-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 96, - "date": "2009-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 100, - "date": "2009-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 59, - "date": "2009-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 189, - "date": "2009-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 289, - "date": "2009-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 487, - "date": "2010-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 16, - "date": "2010-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 131, - "date": "2010-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 64, - "date": "2010-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 128, - "date": "2010-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 148, - "date": "2010-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 106, - "date": "2010-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 120, - "date": "2010-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 98, - "date": "2010-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 102, - "date": "2010-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 60, - "date": "2010-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 192, - "date": "2010-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 295, - "date": "2010-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 512, - "date": "2010-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 17, - "date": "2010-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 138, - "date": "2010-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 67, - "date": "2010-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 135, - "date": "2010-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 156, - "date": "2010-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 111, - "date": "2010-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 127, - "date": "2010-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 103, - "date": "2010-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 108, - "date": "2010-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 63, - "date": "2010-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 202, - "date": "2010-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 310, - "date": "2010-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 516, - "date": "2010-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 17, - "date": "2010-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 139, - "date": "2010-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 68, - "date": "2010-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 136, - "date": "2010-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 157, - "date": "2010-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 112, - "date": "2010-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 128, - "date": "2010-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 104, - "date": "2010-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 108, - "date": "2010-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 64, - "date": "2010-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 204, - "date": "2010-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 312, - "date": "2010-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 528, - "date": "2010-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 17, - "date": "2010-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 142, - "date": "2010-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 69, - "date": "2010-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 139, - "date": "2010-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 161, - "date": "2010-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 115, - "date": "2010-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 131, - "date": "2010-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 107, - "date": "2010-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 111, - "date": "2010-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 65, - "date": "2010-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 208, - "date": "2010-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 320, - "date": "2010-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 536, - "date": "2010-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 17, - "date": "2010-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 144, - "date": "2010-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 70, - "date": "2010-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 141, - "date": "2010-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 163, - "date": "2010-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 116, - "date": "2010-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 133, - "date": "2010-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 108, - "date": "2010-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 113, - "date": "2010-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 66, - "date": "2010-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 212, - "date": "2010-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 324, - "date": "2010-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 532, - "date": "2010-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 17, - "date": "2010-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 143, - "date": "2010-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 70, - "date": "2010-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 140, - "date": "2010-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 162, - "date": "2010-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 116, - "date": "2010-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 132, - "date": "2010-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 107, - "date": "2010-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 112, - "date": "2010-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 66, - "date": "2010-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 210, - "date": "2010-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 322, - "date": "2010-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 548, - "date": "2010-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 18, - "date": "2010-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 147, - "date": "2010-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 72, - "date": "2010-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 144, - "date": "2010-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 167, - "date": "2010-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 119, - "date": "2010-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 136, - "date": "2010-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 111, - "date": "2010-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 115, - "date": "2010-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 68, - "date": "2010-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 216, - "date": "2010-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 332, - "date": "2010-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 565, - "date": "2010-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 18, - "date": "2010-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 152, - "date": "2010-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 74, - "date": "2010-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 149, - "date": "2010-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 172, - "date": "2010-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 123, - "date": "2010-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 140, - "date": "2010-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 114, - "date": "2010-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 119, - "date": "2010-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 70, - "date": "2010-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 223, - "date": "2010-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 342, - "date": "2010-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 552, - "date": "2010-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 18, - "date": "2010-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 149, - "date": "2010-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 72, - "date": "2010-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 145, - "date": "2010-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 168, - "date": "2010-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 120, - "date": "2010-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 137, - "date": "2010-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 111, - "date": "2010-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 116, - "date": "2010-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 68, - "date": "2010-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 218, - "date": "2010-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 334, - "date": "2010-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 561, - "date": "2010-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 18, - "date": "2010-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 151, - "date": "2010-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 74, - "date": "2010-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 148, - "date": "2010-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 171, - "date": "2010-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 122, - "date": "2010-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 139, - "date": "2010-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 113, - "date": "2010-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 118, - "date": "2010-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 69, - "date": "2010-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 221, - "date": "2010-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 340, - "date": "2010-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 567, - "date": "2010-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 18, - "date": "2010-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 153, - "date": "2010-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 74, - "date": "2010-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 149, - "date": "2010-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 172, - "date": "2010-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 123, - "date": "2010-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 140, - "date": "2010-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 114, - "date": "2010-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 119, - "date": "2010-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 70, - "date": "2010-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 224, - "date": "2010-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 343, - "date": "2010-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 567, - "date": "2010-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 18, - "date": "2010-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 153, - "date": "2010-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 74, - "date": "2010-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 149, - "date": "2010-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 172, - "date": "2010-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 123, - "date": "2010-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 140, - "date": "2010-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 114, - "date": "2010-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 119, - "date": "2010-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 70, - "date": "2010-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 224, - "date": "2010-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 343, - "date": "2010-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 585, - "date": "2011-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 19, - "date": "2011-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 157, - "date": "2011-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 77, - "date": "2011-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 154, - "date": "2011-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 178, - "date": "2011-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 127, - "date": "2011-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 145, - "date": "2011-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 118, - "date": "2011-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 123, - "date": "2011-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 72, - "date": "2011-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 231, - "date": "2011-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 354, - "date": "2011-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 576, - "date": "2011-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 19, - "date": "2011-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 155, - "date": "2011-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 76, - "date": "2011-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 152, - "date": "2011-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 175, - "date": "2011-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 125, - "date": "2011-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 142, - "date": "2011-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 116, - "date": "2011-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 121, - "date": "2011-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 71, - "date": "2011-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 227, - "date": "2011-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 349, - "date": "2011-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 583, - "date": "2011-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 19, - "date": "2011-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 157, - "date": "2011-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 76, - "date": "2011-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 154, - "date": "2011-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 177, - "date": "2011-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 127, - "date": "2011-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 144, - "date": "2011-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 118, - "date": "2011-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 122, - "date": "2011-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 72, - "date": "2011-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 230, - "date": "2011-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 353, - "date": "2011-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 574, - "date": "2011-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 19, - "date": "2011-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 154, - "date": "2011-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 75, - "date": "2011-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 151, - "date": "2011-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 175, - "date": "2011-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 125, - "date": "2011-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 142, - "date": "2011-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 116, - "date": "2011-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 121, - "date": "2011-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 71, - "date": "2011-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 227, - "date": "2011-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 347, - "date": "2011-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 591, - "date": "2011-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 19, - "date": "2011-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 159, - "date": "2011-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 77, - "date": "2011-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 156, - "date": "2011-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 180, - "date": "2011-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 128, - "date": "2011-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 146, - "date": "2011-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 119, - "date": "2011-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 124, - "date": "2011-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 73, - "date": "2011-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 233, - "date": "2011-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 358, - "date": "2011-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 572, - "date": "2011-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 18, - "date": "2011-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 154, - "date": "2011-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 75, - "date": "2011-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 151, - "date": "2011-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 174, - "date": "2011-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 124, - "date": "2011-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 141, - "date": "2011-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 115, - "date": "2011-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 120, - "date": "2011-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 71, - "date": "2011-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 226, - "date": "2011-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 346, - "date": "2011-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 541, - "date": "2011-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 17, - "date": "2011-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 146, - "date": "2011-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 71, - "date": "2011-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 143, - "date": "2011-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 165, - "date": "2011-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 117, - "date": "2011-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 134, - "date": "2011-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 109, - "date": "2011-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 114, - "date": "2011-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 67, - "date": "2011-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 213, - "date": "2011-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 328, - "date": "2011-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 537, - "date": "2011-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 17, - "date": "2011-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 144, - "date": "2011-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 70, - "date": "2011-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 141, - "date": "2011-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 163, - "date": "2011-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 117, - "date": "2011-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 133, - "date": "2011-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 108, - "date": "2011-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 113, - "date": "2011-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 66, - "date": "2011-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 212, - "date": "2011-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 325, - "date": "2011-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 553, - "date": "2011-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 18, - "date": "2011-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 149, - "date": "2011-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 72, - "date": "2011-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 146, - "date": "2011-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 168, - "date": "2011-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 120, - "date": "2011-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 137, - "date": "2011-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 112, - "date": "2011-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 116, - "date": "2011-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 68, - "date": "2011-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 218, - "date": "2011-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 335, - "date": "2011-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 565, - "date": "2011-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 18, - "date": "2011-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 152, - "date": "2011-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 74, - "date": "2011-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 149, - "date": "2011-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 172, - "date": "2011-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 123, - "date": "2011-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 140, - "date": "2011-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 114, - "date": "2011-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 119, - "date": "2011-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 70, - "date": "2011-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 223, - "date": "2011-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 342, - "date": "2011-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 576, - "date": "2011-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 19, - "date": "2011-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 155, - "date": "2011-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 76, - "date": "2011-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 152, - "date": "2011-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 175, - "date": "2011-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 125, - "date": "2011-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 142, - "date": "2011-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 116, - "date": "2011-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 121, - "date": "2011-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 71, - "date": "2011-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 227, - "date": "2011-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 349, - "date": "2011-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 569, - "date": "2011-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 18, - "date": "2011-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 153, - "date": "2011-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 75, - "date": "2011-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 150, - "date": "2011-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 173, - "date": "2011-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 124, - "date": "2011-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 141, - "date": "2011-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 115, - "date": "2011-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 119, - "date": "2011-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 70, - "date": "2011-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 225, - "date": "2011-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 344, - "date": "2011-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 585, - "date": "2012-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 19, - "date": "2012-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 157, - "date": "2012-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 77, - "date": "2012-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 154, - "date": "2012-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 178, - "date": "2012-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 127, - "date": "2012-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 145, - "date": "2012-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 118, - "date": "2012-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 123, - "date": "2012-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 72, - "date": "2012-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 231, - "date": "2012-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 354, - "date": "2012-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 576, - "date": "2012-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 19, - "date": "2012-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 155, - "date": "2012-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 76, - "date": "2012-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 152, - "date": "2012-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 175, - "date": "2012-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 125, - "date": "2012-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 142, - "date": "2012-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 116, - "date": "2012-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 121, - "date": "2012-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 71, - "date": "2012-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 227, - "date": "2012-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 349, - "date": "2012-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 568, - "date": "2012-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 18, - "date": "2012-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 153, - "date": "2012-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 74, - "date": "2012-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 150, - "date": "2012-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 173, - "date": "2012-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 123, - "date": "2012-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 140, - "date": "2012-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 115, - "date": "2012-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 119, - "date": "2012-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 70, - "date": "2012-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 224, - "date": "2012-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 344, - "date": "2012-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 567, - "date": "2012-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 18, - "date": "2012-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 153, - "date": "2012-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 74, - "date": "2012-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 149, - "date": "2012-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 172, - "date": "2012-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 123, - "date": "2012-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 140, - "date": "2012-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 114, - "date": "2012-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 119, - "date": "2012-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 70, - "date": "2012-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 224, - "date": "2012-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 343, - "date": "2012-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 582, - "date": "2012-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 19, - "date": "2012-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 157, - "date": "2012-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 76, - "date": "2012-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 153, - "date": "2012-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 177, - "date": "2012-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 126, - "date": "2012-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 144, - "date": "2012-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 117, - "date": "2012-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 122, - "date": "2012-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 72, - "date": "2012-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 230, - "date": "2012-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 352, - "date": "2012-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 591, - "date": "2012-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 19, - "date": "2012-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 159, - "date": "2012-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 77, - "date": "2012-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 156, - "date": "2012-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 180, - "date": "2012-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 128, - "date": "2012-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 146, - "date": "2012-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 119, - "date": "2012-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 124, - "date": "2012-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 73, - "date": "2012-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 233, - "date": "2012-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 358, - "date": "2012-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 596, - "date": "2012-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 19, - "date": "2012-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 160, - "date": "2012-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 78, - "date": "2012-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 157, - "date": "2012-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 181, - "date": "2012-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 129, - "date": "2012-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 147, - "date": "2012-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 120, - "date": "2012-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 125, - "date": "2012-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 74, - "date": "2012-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 235, - "date": "2012-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 361, - "date": "2012-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 601, - "date": "2012-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 19, - "date": "2012-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 162, - "date": "2012-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 79, - "date": "2012-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 158, - "date": "2012-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 183, - "date": "2012-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 130, - "date": "2012-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 149, - "date": "2012-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 121, - "date": "2012-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 126, - "date": "2012-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 74, - "date": "2012-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 237, - "date": "2012-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 364, - "date": "2012-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 608, - "date": "2012-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 20, - "date": "2012-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 164, - "date": "2012-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 80, - "date": "2012-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 160, - "date": "2012-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 185, - "date": "2012-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 132, - "date": "2012-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 150, - "date": "2012-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 123, - "date": "2012-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 128, - "date": "2012-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 75, - "date": "2012-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 240, - "date": "2012-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 368, - "date": "2012-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 594, - "date": "2012-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 19, - "date": "2012-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 160, - "date": "2012-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 78, - "date": "2012-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 156, - "date": "2012-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 181, - "date": "2012-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 129, - "date": "2012-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 147, - "date": "2012-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 120, - "date": "2012-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 125, - "date": "2012-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 74, - "date": "2012-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 234, - "date": "2012-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 360, - "date": "2012-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 572, - "date": "2012-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 18, - "date": "2012-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 154, - "date": "2012-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 75, - "date": "2012-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 151, - "date": "2012-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 174, - "date": "2012-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 124, - "date": "2012-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 141, - "date": "2012-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 115, - "date": "2012-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 120, - "date": "2012-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 71, - "date": "2012-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 226, - "date": "2012-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 346, - "date": "2012-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 575, - "date": "2012-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 19, - "date": "2012-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 155, - "date": "2012-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 75, - "date": "2012-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 151, - "date": "2012-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 175, - "date": "2012-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 125, - "date": "2012-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 142, - "date": "2012-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 116, - "date": "2012-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 121, - "date": "2012-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 71, - "date": "2012-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 227, - "date": "2012-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 348, - "date": "2012-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 576, - "date": "2013-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 19, - "date": "2013-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 155, - "date": "2013-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 76, - "date": "2013-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 152, - "date": "2013-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 175, - "date": "2013-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 125, - "date": "2013-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 142, - "date": "2013-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 116, - "date": "2013-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 121, - "date": "2013-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 71, - "date": "2013-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 227, - "date": "2013-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 349, - "date": "2013-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 594, - "date": "2013-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 19, - "date": "2013-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 160, - "date": "2013-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 78, - "date": "2013-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 156, - "date": "2013-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 181, - "date": "2013-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 129, - "date": "2013-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 147, - "date": "2013-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 120, - "date": "2013-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 125, - "date": "2013-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 74, - "date": "2013-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 234, - "date": "2013-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 360, - "date": "2013-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 644, - "date": "2013-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 21, - "date": "2013-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 173, - "date": "2013-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 84, - "date": "2013-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 170, - "date": "2013-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 196, - "date": "2013-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 140, - "date": "2013-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 159, - "date": "2013-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 130, - "date": "2013-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 135, - "date": "2013-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 80, - "date": "2013-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 254, - "date": "2013-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 390, - "date": "2013-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 619, - "date": "2013-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 20, - "date": "2013-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 167, - "date": "2013-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 81, - "date": "2013-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 163, - "date": "2013-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 188, - "date": "2013-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 134, - "date": "2013-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 153, - "date": "2013-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 125, - "date": "2013-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 130, - "date": "2013-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 77, - "date": "2013-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 244, - "date": "2013-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 375, - "date": "2013-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 664, - "date": "2013-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 21, - "date": "2013-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 179, - "date": "2013-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 87, - "date": "2013-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 175, - "date": "2013-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 202, - "date": "2013-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 144, - "date": "2013-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 164, - "date": "2013-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 134, - "date": "2013-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 139, - "date": "2013-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 82, - "date": "2013-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 262, - "date": "2013-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 402, - "date": "2013-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 634, - "date": "2013-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 20, - "date": "2013-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 171, - "date": "2013-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 83, - "date": "2013-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 167, - "date": "2013-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 193, - "date": "2013-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 138, - "date": "2013-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 157, - "date": "2013-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 128, - "date": "2013-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 133, - "date": "2013-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 78, - "date": "2013-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 250, - "date": "2013-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 384, - "date": "2013-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 682, - "date": "2013-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 22, - "date": "2013-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 183, - "date": "2013-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 89, - "date": "2013-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 180, - "date": "2013-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 207, - "date": "2013-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 148, - "date": "2013-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 169, - "date": "2013-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 138, - "date": "2013-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 143, - "date": "2013-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 84, - "date": "2013-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 269, - "date": "2013-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 413, - "date": "2013-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 638, - "date": "2013-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 21, - "date": "2013-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 172, - "date": "2013-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 84, - "date": "2013-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 168, - "date": "2013-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 194, - "date": "2013-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 139, - "date": "2013-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 158, - "date": "2013-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 129, - "date": "2013-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 134, - "date": "2013-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 79, - "date": "2013-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 252, - "date": "2013-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 386, - "date": "2013-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 643, - "date": "2013-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 21, - "date": "2013-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 173, - "date": "2013-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 84, - "date": "2013-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 169, - "date": "2013-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 196, - "date": "2013-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 140, - "date": "2013-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 159, - "date": "2013-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 130, - "date": "2013-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 135, - "date": "2013-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 80, - "date": "2013-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 254, - "date": "2013-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 389, - "date": "2013-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 673, - "date": "2013-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 22, - "date": "2013-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 181, - "date": "2013-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 88, - "date": "2013-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 177, - "date": "2013-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 205, - "date": "2013-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 146, - "date": "2013-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 166, - "date": "2013-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 136, - "date": "2013-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 141, - "date": "2013-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 83, - "date": "2013-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 266, - "date": "2013-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 407, - "date": "2013-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 678, - "date": "2013-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 22, - "date": "2013-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 182, - "date": "2013-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 89, - "date": "2013-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 179, - "date": "2013-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 206, - "date": "2013-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 147, - "date": "2013-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 168, - "date": "2013-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 137, - "date": "2013-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 142, - "date": "2013-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 84, - "date": "2013-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 268, - "date": "2013-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 410, - "date": "2013-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 672, - "date": "2013-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 22, - "date": "2013-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 181, - "date": "2013-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 88, - "date": "2013-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 177, - "date": "2013-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 204, - "date": "2013-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 146, - "date": "2013-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 166, - "date": "2013-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 136, - "date": "2013-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 141, - "date": "2013-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 83, - "date": "2013-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 265, - "date": "2013-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 407, - "date": "2013-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 707, - "date": "2014-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 23, - "date": "2014-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 190, - "date": "2014-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 93, - "date": "2014-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 186, - "date": "2014-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 215, - "date": "2014-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 154, - "date": "2014-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 175, - "date": "2014-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 143, - "date": "2014-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 148, - "date": "2014-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 87, - "date": "2014-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 279, - "date": "2014-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 428, - "date": "2014-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 686, - "date": "2014-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 22, - "date": "2014-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 185, - "date": "2014-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 90, - "date": "2014-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 181, - "date": "2014-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 209, - "date": "2014-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 149, - "date": "2014-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 170, - "date": "2014-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 138, - "date": "2014-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 144, - "date": "2014-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 85, - "date": "2014-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 271, - "date": "2014-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 415, - "date": "2014-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 729, - "date": "2014-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 24, - "date": "2014-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 196, - "date": "2014-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 96, - "date": "2014-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 192, - "date": "2014-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 222, - "date": "2014-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 158, - "date": "2014-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 180, - "date": "2014-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 147, - "date": "2014-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 153, - "date": "2014-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 90, - "date": "2014-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 288, - "date": "2014-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 441, - "date": "2014-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 720, - "date": "2014-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 23, - "date": "2014-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 194, - "date": "2014-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 94, - "date": "2014-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 190, - "date": "2014-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 219, - "date": "2014-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 156, - "date": "2014-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 178, - "date": "2014-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 145, - "date": "2014-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 151, - "date": "2014-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 89, - "date": "2014-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 284, - "date": "2014-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 436, - "date": "2014-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 717, - "date": "2014-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 23, - "date": "2014-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 193, - "date": "2014-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 94, - "date": "2014-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 189, - "date": "2014-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 218, - "date": "2014-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 156, - "date": "2014-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 177, - "date": "2014-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 145, - "date": "2014-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 151, - "date": "2014-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 89, - "date": "2014-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 283, - "date": "2014-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 434, - "date": "2014-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 728, - "date": "2014-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 24, - "date": "2014-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 196, - "date": "2014-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 95, - "date": "2014-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 192, - "date": "2014-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 221, - "date": "2014-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 158, - "date": "2014-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 180, - "date": "2014-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 147, - "date": "2014-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 153, - "date": "2014-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 90, - "date": "2014-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 287, - "date": "2014-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 441, - "date": "2014-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 759, - "date": "2014-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 25, - "date": "2014-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 204, - "date": "2014-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 100, - "date": "2014-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 200, - "date": "2014-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 231, - "date": "2014-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 165, - "date": "2014-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 188, - "date": "2014-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 153, - "date": "2014-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 159, - "date": "2014-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 94, - "date": "2014-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 300, - "date": "2014-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 459, - "date": "2014-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 741, - "date": "2014-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 24, - "date": "2014-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 199, - "date": "2014-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 97, - "date": "2014-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 195, - "date": "2014-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 225, - "date": "2014-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 161, - "date": "2014-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 183, - "date": "2014-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 150, - "date": "2014-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 156, - "date": "2014-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 92, - "date": "2014-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 292, - "date": "2014-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 449, - "date": "2014-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 736, - "date": "2014-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 24, - "date": "2014-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 198, - "date": "2014-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 96, - "date": "2014-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 194, - "date": "2014-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 224, - "date": "2014-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 160, - "date": "2014-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 182, - "date": "2014-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 148, - "date": "2014-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 155, - "date": "2014-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 91, - "date": "2014-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 290, - "date": "2014-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 446, - "date": "2014-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 709, - "date": "2014-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 23, - "date": "2014-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 191, - "date": "2014-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 93, - "date": "2014-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 187, - "date": "2014-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 216, - "date": "2014-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 154, - "date": "2014-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 175, - "date": "2014-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 143, - "date": "2014-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 149, - "date": "2014-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 88, - "date": "2014-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 280, - "date": "2014-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 429, - "date": "2014-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 713, - "date": "2014-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 23, - "date": "2014-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 192, - "date": "2014-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 93, - "date": "2014-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 188, - "date": "2014-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 217, - "date": "2014-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 155, - "date": "2014-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 176, - "date": "2014-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 144, - "date": "2014-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 150, - "date": "2014-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 88, - "date": "2014-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 281, - "date": "2014-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 432, - "date": "2014-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 711, - "date": "2014-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 23, - "date": "2014-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 191, - "date": "2014-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 93, - "date": "2014-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 187, - "date": "2014-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 216, - "date": "2014-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 154, - "date": "2014-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 176, - "date": "2014-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 143, - "date": "2014-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 149, - "date": "2014-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 88, - "date": "2014-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 281, - "date": "2014-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 430, - "date": "2014-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 689, - "date": "2015-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 22, - "date": "2015-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 185, - "date": "2015-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 90, - "date": "2015-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 182, - "date": "2015-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 210, - "date": "2015-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 150, - "date": "2015-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 170, - "date": "2015-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 139, - "date": "2015-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 145, - "date": "2015-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 85, - "date": "2015-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 272, - "date": "2015-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 417, - "date": "2015-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 678, - "date": "2015-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 22, - "date": "2015-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 182, - "date": "2015-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 89, - "date": "2015-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 179, - "date": "2015-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 206, - "date": "2015-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 147, - "date": "2015-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 168, - "date": "2015-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 137, - "date": "2015-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 142, - "date": "2015-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 84, - "date": "2015-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 268, - "date": "2015-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 410, - "date": "2015-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 662, - "date": "2015-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 21, - "date": "2015-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 178, - "date": "2015-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 87, - "date": "2015-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 174, - "date": "2015-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 201, - "date": "2015-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 144, - "date": "2015-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 164, - "date": "2015-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 134, - "date": "2015-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 139, - "date": "2015-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 82, - "date": "2015-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 261, - "date": "2015-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 401, - "date": "2015-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 667, - "date": "2015-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 22, - "date": "2015-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 179, - "date": "2015-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 87, - "date": "2015-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 176, - "date": "2015-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 203, - "date": "2015-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 145, - "date": "2015-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 165, - "date": "2015-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 135, - "date": "2015-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 140, - "date": "2015-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 83, - "date": "2015-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 263, - "date": "2015-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 404, - "date": "2015-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 706, - "date": "2015-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 23, - "date": "2015-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 190, - "date": "2015-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 93, - "date": "2015-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 186, - "date": "2015-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 215, - "date": "2015-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 153, - "date": "2015-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 175, - "date": "2015-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 142, - "date": "2015-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 148, - "date": "2015-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 87, - "date": "2015-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 279, - "date": "2015-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 427, - "date": "2015-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 741, - "date": "2015-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 24, - "date": "2015-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 199, - "date": "2015-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 97, - "date": "2015-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 195, - "date": "2015-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 225, - "date": "2015-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 161, - "date": "2015-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 183, - "date": "2015-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 150, - "date": "2015-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 156, - "date": "2015-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 92, - "date": "2015-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 292, - "date": "2015-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 449, - "date": "2015-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 701, - "date": "2015-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 23, - "date": "2015-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 189, - "date": "2015-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 92, - "date": "2015-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 185, - "date": "2015-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 213, - "date": "2015-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 152, - "date": "2015-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 173, - "date": "2015-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 141, - "date": "2015-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 147, - "date": "2015-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 87, - "date": "2015-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 277, - "date": "2015-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 424, - "date": "2015-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 714, - "date": "2015-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 23, - "date": "2015-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 192, - "date": "2015-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 94, - "date": "2015-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 188, - "date": "2015-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 217, - "date": "2015-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 155, - "date": "2015-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 177, - "date": "2015-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 144, - "date": "2015-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 150, - "date": "2015-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 88, - "date": "2015-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 282, - "date": "2015-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 432, - "date": "2015-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 740, - "date": "2015-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 24, - "date": "2015-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 199, - "date": "2015-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 97, - "date": "2015-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 195, - "date": "2015-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 225, - "date": "2015-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 161, - "date": "2015-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 183, - "date": "2015-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 149, - "date": "2015-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 155, - "date": "2015-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 92, - "date": "2015-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 292, - "date": "2015-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 448, - "date": "2015-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 742, - "date": "2015-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 24, - "date": "2015-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 200, - "date": "2015-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 97, - "date": "2015-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 195, - "date": "2015-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 226, - "date": "2015-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 161, - "date": "2015-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 184, - "date": "2015-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 150, - "date": "2015-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 156, - "date": "2015-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 92, - "date": "2015-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 293, - "date": "2015-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 449, - "date": "2015-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 750, - "date": "2015-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 24, - "date": "2015-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 202, - "date": "2015-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 98, - "date": "2015-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 198, - "date": "2015-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 228, - "date": "2015-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 163, - "date": "2015-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 186, - "date": "2015-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 151, - "date": "2015-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 158, - "date": "2015-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 93, - "date": "2015-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 296, - "date": "2015-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 454, - "date": "2015-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 745, - "date": "2015-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 24, - "date": "2015-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 200, - "date": "2015-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 98, - "date": "2015-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 196, - "date": "2015-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 227, - "date": "2015-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 162, - "date": "2015-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 184, - "date": "2015-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 150, - "date": "2015-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 156, - "date": "2015-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 92, - "date": "2015-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 294, - "date": "2015-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 451, - "date": "2015-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 772, - "date": "2016-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 25, - "date": "2016-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 208, - "date": "2016-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 101, - "date": "2016-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 203, - "date": "2016-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 235, - "date": "2016-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 168, - "date": "2016-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 191, - "date": "2016-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 156, - "date": "2016-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 162, - "date": "2016-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 96, - "date": "2016-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 305, - "date": "2016-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 467, - "date": "2016-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 821, - "date": "2016-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 27, - "date": "2016-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 221, - "date": "2016-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 108, - "date": "2016-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 216, - "date": "2016-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 250, - "date": "2016-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 178, - "date": "2016-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 203, - "date": "2016-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 166, - "date": "2016-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 172, - "date": "2016-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 102, - "date": "2016-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 324, - "date": "2016-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 497, - "date": "2016-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 839, - "date": "2016-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 27, - "date": "2016-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 226, - "date": "2016-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 110, - "date": "2016-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 221, - "date": "2016-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 255, - "date": "2016-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 182, - "date": "2016-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 208, - "date": "2016-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 169, - "date": "2016-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 176, - "date": "2016-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 104, - "date": "2016-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 331, - "date": "2016-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 508, - "date": "2016-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 901, - "date": "2016-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 29, - "date": "2016-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 242, - "date": "2016-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 118, - "date": "2016-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 237, - "date": "2016-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 274, - "date": "2016-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 196, - "date": "2016-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 223, - "date": "2016-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 182, - "date": "2016-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 189, - "date": "2016-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 112, - "date": "2016-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 356, - "date": "2016-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 545, - "date": "2016-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 895, - "date": "2016-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 29, - "date": "2016-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 241, - "date": "2016-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 117, - "date": "2016-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 236, - "date": "2016-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 272, - "date": "2016-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 194, - "date": "2016-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 221, - "date": "2016-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 181, - "date": "2016-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 188, - "date": "2016-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 111, - "date": "2016-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 353, - "date": "2016-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 542, - "date": "2016-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 914, - "date": "2016-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 30, - "date": "2016-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 246, - "date": "2016-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 120, - "date": "2016-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 241, - "date": "2016-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 278, - "date": "2016-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 198, - "date": "2016-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 226, - "date": "2016-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 184, - "date": "2016-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 192, - "date": "2016-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 113, - "date": "2016-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 361, - "date": "2016-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 553, - "date": "2016-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 893, - "date": "2016-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 29, - "date": "2016-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 240, - "date": "2016-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 117, - "date": "2016-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 235, - "date": "2016-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 272, - "date": "2016-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 194, - "date": "2016-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 221, - "date": "2016-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 180, - "date": "2016-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 188, - "date": "2016-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 111, - "date": "2016-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 352, - "date": "2016-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 541, - "date": "2016-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 929, - "date": "2016-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 30, - "date": "2016-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 250, - "date": "2016-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 122, - "date": "2016-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 245, - "date": "2016-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 282, - "date": "2016-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 202, - "date": "2016-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 230, - "date": "2016-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 187, - "date": "2016-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 195, - "date": "2016-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 115, - "date": "2016-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 367, - "date": "2016-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 562, - "date": "2016-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 909, - "date": "2016-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 29, - "date": "2016-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 245, - "date": "2016-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 119, - "date": "2016-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 239, - "date": "2016-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 276, - "date": "2016-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 197, - "date": "2016-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 225, - "date": "2016-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 183, - "date": "2016-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 191, - "date": "2016-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 112, - "date": "2016-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 359, - "date": "2016-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 550, - "date": "2016-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 918, - "date": "2016-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 30, - "date": "2016-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 247, - "date": "2016-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 120, - "date": "2016-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 242, - "date": "2016-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 279, - "date": "2016-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 199, - "date": "2016-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 227, - "date": "2016-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 185, - "date": "2016-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 193, - "date": "2016-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 114, - "date": "2016-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 362, - "date": "2016-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 556, - "date": "2016-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 901, - "date": "2016-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 29, - "date": "2016-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 242, - "date": "2016-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 118, - "date": "2016-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 237, - "date": "2016-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 274, - "date": "2016-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 196, - "date": "2016-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 223, - "date": "2016-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 182, - "date": "2016-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 189, - "date": "2016-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 112, - "date": "2016-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 356, - "date": "2016-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 545, - "date": "2016-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 893, - "date": "2016-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 29, - "date": "2016-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 240, - "date": "2016-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 117, - "date": "2016-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 235, - "date": "2016-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 272, - "date": "2016-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 194, - "date": "2016-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 221, - "date": "2016-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 180, - "date": "2016-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 188, - "date": "2016-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 111, - "date": "2016-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 352, - "date": "2016-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 541, - "date": "2016-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 851, - "date": "2017-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 28, - "date": "2017-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 229, - "date": "2017-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 112, - "date": "2017-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 224, - "date": "2017-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 259, - "date": "2017-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 185, - "date": "2017-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 210, - "date": "2017-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 172, - "date": "2017-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 179, - "date": "2017-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 105, - "date": "2017-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 336, - "date": "2017-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 515, - "date": "2017-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 860, - "date": "2017-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 28, - "date": "2017-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 231, - "date": "2017-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 113, - "date": "2017-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 227, - "date": "2017-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 262, - "date": "2017-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 187, - "date": "2017-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 213, - "date": "2017-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 174, - "date": "2017-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 181, - "date": "2017-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 106, - "date": "2017-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 339, - "date": "2017-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 521, - "date": "2017-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 849, - "date": "2017-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 27, - "date": "2017-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 228, - "date": "2017-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 111, - "date": "2017-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 224, - "date": "2017-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 258, - "date": "2017-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 184, - "date": "2017-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 210, - "date": "2017-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 171, - "date": "2017-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 178, - "date": "2017-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 105, - "date": "2017-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 335, - "date": "2017-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 514, - "date": "2017-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 876, - "date": "2017-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 28, - "date": "2017-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 236, - "date": "2017-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 115, - "date": "2017-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 231, - "date": "2017-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 266, - "date": "2017-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 190, - "date": "2017-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 217, - "date": "2017-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 177, - "date": "2017-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 184, - "date": "2017-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 108, - "date": "2017-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 346, - "date": "2017-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 530, - "date": "2017-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 864, - "date": "2017-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 28, - "date": "2017-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 232, - "date": "2017-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 113, - "date": "2017-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 228, - "date": "2017-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 263, - "date": "2017-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 188, - "date": "2017-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 214, - "date": "2017-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 174, - "date": "2017-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 181, - "date": "2017-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 107, - "date": "2017-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 341, - "date": "2017-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 523, - "date": "2017-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 880, - "date": "2017-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 28, - "date": "2017-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 237, - "date": "2017-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 115, - "date": "2017-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 232, - "date": "2017-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 268, - "date": "2017-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 191, - "date": "2017-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 218, - "date": "2017-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 178, - "date": "2017-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 185, - "date": "2017-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 109, - "date": "2017-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 347, - "date": "2017-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 533, - "date": "2017-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 869, - "date": "2017-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 28, - "date": "2017-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 234, - "date": "2017-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 114, - "date": "2017-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 229, - "date": "2017-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 264, - "date": "2017-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 189, - "date": "2017-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 215, - "date": "2017-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 175, - "date": "2017-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 182, - "date": "2017-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 108, - "date": "2017-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 343, - "date": "2017-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 526, - "date": "2017-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 882, - "date": "2017-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 29, - "date": "2017-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 237, - "date": "2017-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 116, - "date": "2017-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 232, - "date": "2017-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 268, - "date": "2017-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 192, - "date": "2017-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 218, - "date": "2017-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 178, - "date": "2017-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 185, - "date": "2017-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 109, - "date": "2017-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 348, - "date": "2017-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 534, - "date": "2017-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 929, - "date": "2017-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 30, - "date": "2017-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 250, - "date": "2017-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 122, - "date": "2017-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 245, - "date": "2017-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 282, - "date": "2017-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 202, - "date": "2017-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 230, - "date": "2017-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 187, - "date": "2017-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 195, - "date": "2017-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 115, - "date": "2017-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 367, - "date": "2017-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 562, - "date": "2017-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 921, - "date": "2017-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 30, - "date": "2017-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 248, - "date": "2017-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 121, - "date": "2017-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 243, - "date": "2017-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 280, - "date": "2017-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 200, - "date": "2017-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 228, - "date": "2017-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 186, - "date": "2017-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 193, - "date": "2017-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 114, - "date": "2017-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 363, - "date": "2017-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 558, - "date": "2017-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 917, - "date": "2017-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 30, - "date": "2017-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 247, - "date": "2017-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 120, - "date": "2017-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 242, - "date": "2017-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 279, - "date": "2017-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 199, - "date": "2017-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 227, - "date": "2017-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 185, - "date": "2017-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 193, - "date": "2017-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 113, - "date": "2017-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 362, - "date": "2017-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 555, - "date": "2017-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 991, - "date": "2017-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 32, - "date": "2017-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 267, - "date": "2017-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 130, - "date": "2017-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 261, - "date": "2017-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 301, - "date": "2017-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 215, - "date": "2017-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 245, - "date": "2017-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 200, - "date": "2017-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 208, - "date": "2017-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 123, - "date": "2017-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 391, - "date": "2017-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 600, - "date": "2017-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 964, - "date": "2018-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 31, - "date": "2018-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 259, - "date": "2018-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 126, - "date": "2018-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 254, - "date": "2018-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 293, - "date": "2018-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 209, - "date": "2018-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 238, - "date": "2018-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 195, - "date": "2018-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 202, - "date": "2018-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 119, - "date": "2018-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 380, - "date": "2018-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 584, - "date": "2018-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 963, - "date": "2018-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 31, - "date": "2018-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 259, - "date": "2018-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 126, - "date": "2018-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 254, - "date": "2018-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 293, - "date": "2018-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 209, - "date": "2018-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 238, - "date": "2018-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 194, - "date": "2018-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 202, - "date": "2018-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 119, - "date": "2018-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 380, - "date": "2018-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 583, - "date": "2018-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 949, - "date": "2018-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 31, - "date": "2018-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 255, - "date": "2018-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 124, - "date": "2018-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 250, - "date": "2018-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 289, - "date": "2018-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 206, - "date": "2018-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 235, - "date": "2018-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 191, - "date": "2018-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 199, - "date": "2018-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 117, - "date": "2018-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 374, - "date": "2018-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 575, - "date": "2018-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 953, - "date": "2018-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 31, - "date": "2018-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 256, - "date": "2018-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 125, - "date": "2018-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 251, - "date": "2018-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 290, - "date": "2018-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 207, - "date": "2018-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 236, - "date": "2018-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 192, - "date": "2018-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 200, - "date": "2018-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 118, - "date": "2018-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 376, - "date": "2018-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 577, - "date": "2018-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 991, - "date": "2018-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 32, - "date": "2018-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 267, - "date": "2018-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 130, - "date": "2018-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 261, - "date": "2018-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 301, - "date": "2018-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 215, - "date": "2018-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 245, - "date": "2018-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 200, - "date": "2018-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 208, - "date": "2018-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 123, - "date": "2018-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 391, - "date": "2018-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 600, - "date": "2018-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 968, - "date": "2018-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 31, - "date": "2018-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 260, - "date": "2018-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 127, - "date": "2018-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 255, - "date": "2018-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 294, - "date": "2018-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 210, - "date": "2018-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 239, - "date": "2018-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 195, - "date": "2018-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 203, - "date": "2018-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 120, - "date": "2018-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 382, - "date": "2018-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 586, - "date": "2018-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 990, - "date": "2018-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 32, - "date": "2018-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 266, - "date": "2018-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 130, - "date": "2018-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 261, - "date": "2018-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 301, - "date": "2018-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 215, - "date": "2018-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 245, - "date": "2018-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 200, - "date": "2018-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 208, - "date": "2018-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 123, - "date": "2018-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 391, - "date": "2018-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 599, - "date": "2018-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 962, - "date": "2018-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 31, - "date": "2018-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 259, - "date": "2018-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 126, - "date": "2018-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 253, - "date": "2018-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 293, - "date": "2018-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 209, - "date": "2018-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 238, - "date": "2018-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 194, - "date": "2018-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 202, - "date": "2018-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 119, - "date": "2018-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 380, - "date": "2018-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 582, - "date": "2018-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 965, - "date": "2018-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 31, - "date": "2018-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 260, - "date": "2018-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 127, - "date": "2018-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 254, - "date": "2018-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 293, - "date": "2018-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 210, - "date": "2018-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 239, - "date": "2018-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 195, - "date": "2018-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 203, - "date": "2018-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 119, - "date": "2018-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 381, - "date": "2018-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 584, - "date": "2018-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1005, - "date": "2018-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 32, - "date": "2018-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 270, - "date": "2018-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 132, - "date": "2018-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 265, - "date": "2018-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 306, - "date": "2018-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 218, - "date": "2018-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 249, - "date": "2018-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 203, - "date": "2018-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 211, - "date": "2018-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 124, - "date": "2018-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 397, - "date": "2018-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 608, - "date": "2018-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 977, - "date": "2018-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 32, - "date": "2018-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 263, - "date": "2018-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 128, - "date": "2018-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 257, - "date": "2018-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 297, - "date": "2018-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 212, - "date": "2018-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 242, - "date": "2018-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 197, - "date": "2018-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 205, - "date": "2018-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 121, - "date": "2018-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 386, - "date": "2018-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 591, - "date": "2018-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 957, - "date": "2018-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 31, - "date": "2018-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 257, - "date": "2018-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 125, - "date": "2018-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 252, - "date": "2018-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 291, - "date": "2018-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 208, - "date": "2018-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 237, - "date": "2018-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 193, - "date": "2018-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 201, - "date": "2018-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 118, - "date": "2018-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 378, - "date": "2018-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 579, - "date": "2018-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 922, - "date": "2019-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 30, - "date": "2019-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 248, - "date": "2019-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 121, - "date": "2019-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 243, - "date": "2019-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 280, - "date": "2019-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 200, - "date": "2019-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 228, - "date": "2019-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 186, - "date": "2019-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 194, - "date": "2019-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 114, - "date": "2019-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 364, - "date": "2019-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 558, - "date": "2019-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 943, - "date": "2019-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 30, - "date": "2019-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 254, - "date": "2019-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 124, - "date": "2019-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 248, - "date": "2019-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 287, - "date": "2019-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 205, - "date": "2019-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 233, - "date": "2019-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 190, - "date": "2019-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 198, - "date": "2019-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 117, - "date": "2019-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 372, - "date": "2019-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 571, - "date": "2019-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 920, - "date": "2019-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 30, - "date": "2019-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 248, - "date": "2019-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 121, - "date": "2019-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 242, - "date": "2019-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 280, - "date": "2019-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 200, - "date": "2019-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 228, - "date": "2019-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 186, - "date": "2019-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 193, - "date": "2019-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 114, - "date": "2019-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 363, - "date": "2019-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 557, - "date": "2019-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 874, - "date": "2019-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 28, - "date": "2019-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 235, - "date": "2019-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 115, - "date": "2019-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 230, - "date": "2019-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 266, - "date": "2019-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 190, - "date": "2019-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 216, - "date": "2019-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 176, - "date": "2019-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 184, - "date": "2019-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 108, - "date": "2019-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 345, - "date": "2019-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 529, - "date": "2019-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 896, - "date": "2019-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 29, - "date": "2019-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 241, - "date": "2019-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 117, - "date": "2019-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 236, - "date": "2019-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 272, - "date": "2019-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 195, - "date": "2019-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 222, - "date": "2019-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 181, - "date": "2019-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 188, - "date": "2019-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 111, - "date": "2019-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 354, - "date": "2019-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 542, - "date": "2019-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 872, - "date": "2019-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 28, - "date": "2019-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 235, - "date": "2019-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 114, - "date": "2019-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 230, - "date": "2019-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 265, - "date": "2019-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 189, - "date": "2019-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 216, - "date": "2019-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 176, - "date": "2019-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 183, - "date": "2019-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 108, - "date": "2019-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 344, - "date": "2019-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 528, - "date": "2019-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 897, - "date": "2019-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 29, - "date": "2019-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 241, - "date": "2019-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 118, - "date": "2019-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 236, - "date": "2019-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 273, - "date": "2019-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 195, - "date": "2019-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 222, - "date": "2019-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 181, - "date": "2019-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 188, - "date": "2019-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 111, - "date": "2019-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 354, - "date": "2019-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 543, - "date": "2019-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 927, - "date": "2019-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 30, - "date": "2019-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 249, - "date": "2019-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 122, - "date": "2019-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 244, - "date": "2019-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 282, - "date": "2019-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 201, - "date": "2019-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 229, - "date": "2019-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 187, - "date": "2019-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 195, - "date": "2019-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 115, - "date": "2019-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 366, - "date": "2019-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 561, - "date": "2019-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 896, - "date": "2019-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 29, - "date": "2019-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 241, - "date": "2019-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 117, - "date": "2019-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 236, - "date": "2019-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 272, - "date": "2019-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 195, - "date": "2019-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 222, - "date": "2019-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 181, - "date": "2019-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 188, - "date": "2019-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 111, - "date": "2019-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 354, - "date": "2019-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 542, - "date": "2019-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 895, - "date": "2019-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 29, - "date": "2019-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 241, - "date": "2019-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 117, - "date": "2019-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 236, - "date": "2019-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 272, - "date": "2019-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 194, - "date": "2019-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 221, - "date": "2019-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 181, - "date": "2019-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 188, - "date": "2019-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 111, - "date": "2019-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 353, - "date": "2019-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 542, - "date": "2019-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 883, - "date": "2019-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 29, - "date": "2019-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 238, - "date": "2019-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 116, - "date": "2019-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 233, - "date": "2019-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 268, - "date": "2019-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 192, - "date": "2019-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 218, - "date": "2019-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 178, - "date": "2019-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 185, - "date": "2019-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 109, - "date": "2019-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 348, - "date": "2019-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 535, - "date": "2019-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 859, - "date": "2019-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 28, - "date": "2019-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 231, - "date": "2019-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 113, - "date": "2019-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 226, - "date": "2019-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 261, - "date": "2019-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 187, - "date": "2019-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 212, - "date": "2019-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 173, - "date": "2019-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 180, - "date": "2019-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 106, - "date": "2019-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 339, - "date": "2019-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 520, - "date": "2019-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 851, - "date": "2020-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 28, - "date": "2020-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 229, - "date": "2020-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 112, - "date": "2020-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 224, - "date": "2020-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 259, - "date": "2020-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 185, - "date": "2020-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 210, - "date": "2020-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 172, - "date": "2020-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 179, - "date": "2020-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 105, - "date": "2020-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 336, - "date": "2020-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 515, - "date": "2020-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 907, - "date": "2020-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 29, - "date": "2020-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 244, - "date": "2020-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 119, - "date": "2020-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 239, - "date": "2020-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 276, - "date": "2020-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 197, - "date": "2020-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 224, - "date": "2020-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 183, - "date": "2020-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 190, - "date": "2020-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 112, - "date": "2020-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 358, - "date": "2020-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 549, - "date": "2020-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1020, - "date": "2020-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 33, - "date": "2020-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 274, - "date": "2020-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 134, - "date": "2020-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 269, - "date": "2020-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 310, - "date": "2020-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 221, - "date": "2020-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 252, - "date": "2020-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 206, - "date": "2020-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 214, - "date": "2020-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 126, - "date": "2020-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 402, - "date": "2020-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 618, - "date": "2020-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1003, - "date": "2020-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 32, - "date": "2020-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 270, - "date": "2020-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 131, - "date": "2020-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 264, - "date": "2020-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 305, - "date": "2020-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 218, - "date": "2020-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 248, - "date": "2020-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 202, - "date": "2020-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 211, - "date": "2020-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 124, - "date": "2020-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 396, - "date": "2020-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 607, - "date": "2020-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1021, - "date": "2020-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 33, - "date": "2020-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 275, - "date": "2020-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 134, - "date": "2020-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 269, - "date": "2020-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 310, - "date": "2020-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 222, - "date": "2020-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 253, - "date": "2020-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 206, - "date": "2020-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 214, - "date": "2020-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 126, - "date": "2020-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 403, - "date": "2020-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 618, - "date": "2020-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1011, - "date": "2020-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 33, - "date": "2020-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 272, - "date": "2020-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 133, - "date": "2020-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 266, - "date": "2020-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 307, - "date": "2020-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 220, - "date": "2020-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 250, - "date": "2020-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 204, - "date": "2020-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 212, - "date": "2020-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 125, - "date": "2020-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 399, - "date": "2020-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 612, - "date": "2020-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 949, - "date": "2020-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 31, - "date": "2020-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 255, - "date": "2020-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 124, - "date": "2020-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 250, - "date": "2020-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 289, - "date": "2020-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 206, - "date": "2020-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 235, - "date": "2020-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 191, - "date": "2020-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 199, - "date": "2020-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 117, - "date": "2020-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 374, - "date": "2020-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 575, - "date": "2020-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 935, - "date": "2020-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 30, - "date": "2020-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 252, - "date": "2020-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 123, - "date": "2020-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 246, - "date": "2020-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 284, - "date": "2020-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 203, - "date": "2020-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 231, - "date": "2020-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 189, - "date": "2020-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 196, - "date": "2020-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 116, - "date": "2020-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 369, - "date": "2020-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 566, - "date": "2020-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, -] -`; - -exports[`data fetching for metric ParoleProgrammingCurrent 1`] = ` -Array [ - Object { - "count": 7, - "locality": "1", - }, - Object { - "count": 51, - "locality": "5", - }, - Object { - "count": 21, - "locality": "6", - }, - Object { - "count": 25, - "locality": "4", - }, - Object { - "count": 47, - "locality": "2", - }, - Object { - "count": 50, - "locality": "3", - }, - Object { - "count": 106, - "locality": "7", - }, - Object { - "count": 17, - "locality": "8", - }, -] -`; - -exports[`data fetching for metric ParoleRevocationsAggregate 1`] = ` -Array [ - Object { - "ageBucket": "ALL", - "category": "abscond", - "count": 180, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "offend", - "count": 144, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "technical", - "count": 360, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "unknown", - "count": 36, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "abscond", - "count": 324, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "category": "offend", - "count": 324, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "category": "technical", - "count": 252, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "category": "unknown", - "count": 72, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "category": "abscond", - "count": 180, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "category": "offend", - "count": 36, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "category": "technical", - "count": 180, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "category": "unknown", - "count": 108, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "category": "abscond", - "count": 288, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "category": "offend", - "count": 36, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "category": "technical", - "count": 324, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "category": "unknown", - "count": 72, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "category": "abscond", - "count": 180, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "category": "offend", - "count": 360, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "category": "technical", - "count": 324, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "category": "unknown", - "count": 72, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "category": "abscond", - "count": 224, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "category": "offend", - "count": 324, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "category": "technical", - "count": 424, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "category": "unknown", - "count": 72, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "category": "abscond", - "count": 144, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "offend", - "count": 324, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "technical", - "count": 360, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "unknown", - "count": 72, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "abscond", - "count": 324, - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "offend", - "count": 144, - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "technical", - "count": 72, - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "unknown", - "count": 108, - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "category": "abscond", - "count": 36, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "category": "offend", - "count": 324, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "category": "technical", - "count": 324, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "category": "unknown", - "count": 108, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "category": "abscond", - "count": 252, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "category": "offend", - "count": 108, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "category": "technical", - "count": 324, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "category": "unknown", - "count": 108, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "category": "abscond", - "count": 0, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "category": "offend", - "count": 0, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "category": "technical", - "count": 324, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "category": "unknown", - "count": 108, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "category": "abscond", - "count": 360, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "category": "offend", - "count": 360, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "category": "technical", - "count": 360, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "category": "unknown", - "count": 0, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "category": "abscond", - "count": 144, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "category": "offend", - "count": 108, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "category": "technical", - "count": 108, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "category": "unknown", - "count": 36, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, -] -`; - -exports[`data fetching for metric ParoleSuccessAggregate 1`] = ` -Array [ - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "11", - "raceOrEthnicity": "ALL", - "rate": 0.8666666666666667, - "rateDenominator": 15, - "rateNumerator": 13, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "11", - "raceOrEthnicity": "BLACK", - "rate": 0.9090909090909091, - "rateDenominator": 11, - "rateNumerator": 10, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "13", - "raceOrEthnicity": "OTHER", - "rate": 0.5, - "rateDenominator": 6, - "rateNumerator": 3, - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "14", - "raceOrEthnicity": "ALL", - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "17", - "raceOrEthnicity": "ALL", - "rate": 0.864406779661017, - "rateDenominator": 236, - "rateNumerator": 204, - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "12", - "raceOrEthnicity": "ALL", - "rate": 0.8, - "rateDenominator": 60, - "rateNumerator": 48, - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "13", - "raceOrEthnicity": "ALL", - "rate": 0.6634615384615384, - "rateDenominator": 624, - "rateNumerator": 414, - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "5", - "raceOrEthnicity": "ALL", - "rate": 0.7340425531914894, - "rateDenominator": 94, - "rateNumerator": 69, - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "5", - "raceOrEthnicity": "ALL", - "rate": 0.7177914110429447, - "rateDenominator": 163, - "rateNumerator": 117, - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "7", - "raceOrEthnicity": "ALL", - "rate": 0.75, - "rateDenominator": 20, - "rateNumerator": 15, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "9", - "raceOrEthnicity": "WHITE", - "rate": 0.8571428571428571, - "rateDenominator": 14, - "rateNumerator": 12, - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.648471615720524, - "rateDenominator": 458, - "rateNumerator": 297, - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "EXTERNAL_UNKNOWN", - "raceOrEthnicity": "ALL", - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "EXTERNAL_UNKNOWN", - "raceOrEthnicity": "WHITE", - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "2", - "raceOrEthnicity": "ALL", - "rate": 0.8095238095238095, - "rateDenominator": 21, - "rateNumerator": 17, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "3", - "raceOrEthnicity": "WHITE", - "rate": 0.7636363636363637, - "rateDenominator": 165, - "rateNumerator": 126, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "5", - "raceOrEthnicity": "ALL", - "rate": 0.7430939226519337, - "rateDenominator": 362, - "rateNumerator": 269, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "6", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.9069767441860465, - "rateDenominator": 43, - "rateNumerator": 39, - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "13", - "raceOrEthnicity": "ALL", - "rate": 0.7681159420289855, - "rateDenominator": 69, - "rateNumerator": 53, - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "15", - "raceOrEthnicity": "ALL", - "rate": 1, - "rateDenominator": 3, - "rateNumerator": 3, - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "16", - "raceOrEthnicity": "ALL", - "rate": 0.7142857142857143, - "rateDenominator": 7, - "rateNumerator": 5, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "2", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.85, - "rateDenominator": 20, - "rateNumerator": 17, - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "6", - "raceOrEthnicity": "ALL", - "rate": 0.85, - "rateDenominator": 20, - "rateNumerator": 17, - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "8", - "raceOrEthnicity": "ALL", - "rate": 0.8333333333333334, - "rateDenominator": 6, - "rateNumerator": 5, - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "9", - "raceOrEthnicity": "ALL", - "rate": 1, - "rateDenominator": 4, - "rateNumerator": 4, - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.7604651162790698, - "rateDenominator": 860, - "rateNumerator": 654, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "15", - "raceOrEthnicity": "ALL", - "rate": 0.7352941176470589, - "rateDenominator": 34, - "rateNumerator": 25, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "4", - "raceOrEthnicity": "BLACK", - "rate": 0.7746478873239436, - "rateDenominator": 71, - "rateNumerator": 55, - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "6", - "raceOrEthnicity": "ALL", - "rate": 0.9166666666666666, - "rateDenominator": 36, - "rateNumerator": 33, - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "7", - "raceOrEthnicity": "ALL", - "rate": 0.5, - "rateDenominator": 4, - "rateNumerator": 2, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "9", - "raceOrEthnicity": "ALL", - "rate": 0.8529411764705882, - "rateDenominator": 34, - "rateNumerator": 29, - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "10", - "raceOrEthnicity": "ALL", - "rate": 0.972972972972973, - "rateDenominator": 37, - "rateNumerator": 36, - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "12", - "raceOrEthnicity": "ALL", - "rate": 0.6666666666666666, - "rateDenominator": 9, - "rateNumerator": 6, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "3", - "raceOrEthnicity": "BLACK", - "rate": 0.7368421052631579, - "rateDenominator": 19, - "rateNumerator": 14, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "3", - "raceOrEthnicity": "OTHER", - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "5", - "raceOrEthnicity": "HISPANIC", - "rate": 0.8125, - "rateDenominator": 32, - "rateNumerator": 26, - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.7186059907834101, - "rateDenominator": 3472, - "rateNumerator": 2495, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "1", - "raceOrEthnicity": "WHITE", - "rate": 0.7592190889370932, - "rateDenominator": 461, - "rateNumerator": 350, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "10", - "raceOrEthnicity": "OTHER", - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "13", - "raceOrEthnicity": "ALL", - "rate": 0.7252747252747253, - "rateDenominator": 91, - "rateNumerator": 66, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "13", - "raceOrEthnicity": "WHITE", - "rate": 0.7071129707112971, - "rateDenominator": 239, - "rateNumerator": 169, - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "15", - "raceOrEthnicity": "ALL", - "rate": 1, - "rateDenominator": 4, - "rateNumerator": 4, - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "2", - "raceOrEthnicity": "ALL", - "rate": 0.8169014084507042, - "rateDenominator": 142, - "rateNumerator": 116, - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "7", - "raceOrEthnicity": "ALL", - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "1", - "raceOrEthnicity": "BLACK", - "rate": 0.6351351351351351, - "rateDenominator": 74, - "rateNumerator": 47, - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "10", - "raceOrEthnicity": "ALL", - "rate": 0.7931034482758621, - "rateDenominator": 29, - "rateNumerator": 23, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "6", - "raceOrEthnicity": "ALL", - "rate": 0.8214285714285714, - "rateDenominator": 84, - "rateNumerator": 69, - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "1", - "raceOrEthnicity": "ALL", - "rate": 0.7368421052631579, - "rateDenominator": 114, - "rateNumerator": 84, - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "1", - "raceOrEthnicity": "ALL", - "rate": 0.7169811320754716, - "rateDenominator": 106, - "rateNumerator": 76, - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "18", - "raceOrEthnicity": "ALL", - "rate": 0.5, - "rateDenominator": 2, - "rateNumerator": 1, - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "2", - "raceOrEthnicity": "ALL", - "rate": 0.6363636363636364, - "rateDenominator": 11, - "rateNumerator": 7, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "5", - "raceOrEthnicity": "OTHER", - "rate": 0, - "rateDenominator": 1, - "rateNumerator": 0, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "7", - "raceOrEthnicity": "WHITE", - "rate": 0.7272727272727273, - "rateDenominator": 11, - "rateNumerator": 8, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "8", - "raceOrEthnicity": "ALL", - "rate": 0.85, - "rateDenominator": 40, - "rateNumerator": 34, - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "13", - "raceOrEthnicity": "ALL", - "rate": 0.5263157894736842, - "rateDenominator": 95, - "rateNumerator": 50, - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "9", - "raceOrEthnicity": "ALL", - "rate": 0.8518518518518519, - "rateDenominator": 27, - "rateNumerator": 23, - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "14", - "raceOrEthnicity": "ALL", - "rate": 0.5, - "rateDenominator": 2, - "rateNumerator": 1, - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "14", - "raceOrEthnicity": "ALL", - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "4", - "raceOrEthnicity": "ALL", - "rate": 0.6666666666666666, - "rateDenominator": 165, - "rateNumerator": 110, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "3", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.8235294117647058, - "rateDenominator": 17, - "rateNumerator": 14, - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "4", - "raceOrEthnicity": "ALL", - "rate": 0.6653992395437263, - "rateDenominator": 263, - "rateNumerator": 175, - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "6", - "raceOrEthnicity": "ALL", - "rate": 0.6666666666666666, - "rateDenominator": 18, - "rateNumerator": 12, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "8", - "raceOrEthnicity": "WHITE", - "rate": 0.8, - "rateDenominator": 5, - "rateNumerator": 4, - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "EXTERNAL_UNKNOWN", - "raceOrEthnicity": "ALL", - "rate": 1, - "rateDenominator": 3, - "rateNumerator": 3, - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.7545045045045045, - "rateDenominator": 444, - "rateNumerator": 335, - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "10", - "raceOrEthnicity": "ALL", - "rate": 0.8333333333333334, - "rateDenominator": 24, - "rateNumerator": 20, - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "3", - "raceOrEthnicity": "ALL", - "rate": 0.7768595041322314, - "rateDenominator": 121, - "rateNumerator": 94, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "3", - "raceOrEthnicity": "HISPANIC", - "rate": 1, - "rateDenominator": 4, - "rateNumerator": 4, - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "5", - "raceOrEthnicity": "ALL", - "rate": 0.8918918918918919, - "rateDenominator": 37, - "rateNumerator": 33, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "6", - "raceOrEthnicity": "HISPANIC", - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "8", - "raceOrEthnicity": "ALL", - "rate": 0.9090909090909091, - "rateDenominator": 11, - "rateNumerator": 10, - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "8", - "raceOrEthnicity": "ALL", - "rate": 1, - "rateDenominator": 3, - "rateNumerator": 3, - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "8", - "raceOrEthnicity": "ALL", - "rate": 0.8536585365853658, - "rateDenominator": 41, - "rateNumerator": 35, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "14", - "raceOrEthnicity": "ALL", - "rate": 0.5, - "rateDenominator": 4, - "rateNumerator": 2, - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "17", - "raceOrEthnicity": "ALL", - "rate": 0.8888888888888888, - "rateDenominator": 9, - "rateNumerator": 8, - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "5", - "raceOrEthnicity": "ALL", - "rate": 0.82, - "rateDenominator": 50, - "rateNumerator": 41, - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "6", - "raceOrEthnicity": "ALL", - "rate": 0.8, - "rateDenominator": 15, - "rateNumerator": 12, - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "9", - "raceOrEthnicity": "ALL", - "rate": 0.8, - "rateDenominator": 10, - "rateNumerator": 8, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.7345374931581828, - "rateDenominator": 1827, - "rateNumerator": 1342, - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "1", - "raceOrEthnicity": "ALL", - "rate": 0.6410256410256411, - "rateDenominator": 78, - "rateNumerator": 50, - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "10", - "raceOrEthnicity": "ALL", - "rate": 0.5833333333333334, - "rateDenominator": 12, - "rateNumerator": 7, - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "12", - "raceOrEthnicity": "ALL", - "rate": 1, - "rateDenominator": 7, - "rateNumerator": 7, - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "13", - "raceOrEthnicity": "ALL", - "rate": 0.6351351351351351, - "rateDenominator": 74, - "rateNumerator": 47, - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "15", - "raceOrEthnicity": "ALL", - "rate": 0.3333333333333333, - "rateDenominator": 3, - "rateNumerator": 1, - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "16", - "raceOrEthnicity": "ALL", - "rate": 0.8, - "rateDenominator": 5, - "rateNumerator": 4, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "EXTERNAL_UNKNOWN", - "raceOrEthnicity": "ALL", - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "14", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "2", - "raceOrEthnicity": "ALL", - "rate": 0.8363636363636363, - "rateDenominator": 55, - "rateNumerator": 46, - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "9", - "raceOrEthnicity": "ALL", - "rate": 0.5, - "rateDenominator": 2, - "rateNumerator": 1, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.727142344926497, - "rateDenominator": 2789, - "rateNumerator": 2028, - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "1", - "raceOrEthnicity": "ALL", - "rate": 0.7215777262180975, - "rateDenominator": 431, - "rateNumerator": 311, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "11", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 1, - "rateDenominator": 3, - "rateNumerator": 3, - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "16", - "raceOrEthnicity": "ALL", - "rate": 0.5, - "rateDenominator": 2, - "rateNumerator": 1, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.6953271028037383, - "rateDenominator": 535, - "rateNumerator": 372, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "10", - "raceOrEthnicity": "BLACK", - "rate": 1, - "rateDenominator": 5, - "rateNumerator": 5, - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "11", - "raceOrEthnicity": "ALL", - "rate": 0.8125, - "rateDenominator": 16, - "rateNumerator": 13, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "2", - "raceOrEthnicity": "ALL", - "rate": 0.8192771084337349, - "rateDenominator": 83, - "rateNumerator": 68, - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "2", - "raceOrEthnicity": "ALL", - "rate": 0.782608695652174, - "rateDenominator": 23, - "rateNumerator": 18, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "5", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.7105263157894737, - "rateDenominator": 38, - "rateNumerator": 27, - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "11", - "raceOrEthnicity": "ALL", - "rate": 0.9333333333333333, - "rateDenominator": 15, - "rateNumerator": 14, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "12", - "raceOrEthnicity": "ALL", - "rate": 0.8275862068965517, - "rateDenominator": 29, - "rateNumerator": 24, - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "15", - "raceOrEthnicity": "ALL", - "rate": 0.8333333333333334, - "rateDenominator": 6, - "rateNumerator": 5, - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "17", - "raceOrEthnicity": "ALL", - "rate": 0.8, - "rateDenominator": 5, - "rateNumerator": 4, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "3", - "raceOrEthnicity": "ALL", - "rate": 0.7730061349693251, - "rateDenominator": 163, - "rateNumerator": 126, - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "12", - "raceOrEthnicity": "ALL", - "rate": 0.75, - "rateDenominator": 16, - "rateNumerator": 12, - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "15", - "raceOrEthnicity": "ALL", - "rate": 0.6, - "rateDenominator": 5, - "rateNumerator": 3, - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "15", - "raceOrEthnicity": "ALL", - "rate": 0.5, - "rateDenominator": 6, - "rateNumerator": 3, - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "17", - "raceOrEthnicity": "ALL", - "rate": 0.9142857142857143, - "rateDenominator": 35, - "rateNumerator": 32, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "2", - "raceOrEthnicity": "BLACK", - "rate": 0.6666666666666666, - "rateDenominator": 6, - "rateNumerator": 4, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "17", - "raceOrEthnicity": "HISPANIC", - "rate": 1, - "rateDenominator": 13, - "rateNumerator": 13, - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "5", - "raceOrEthnicity": "ALL", - "rate": 0.6842105263157895, - "rateDenominator": 76, - "rateNumerator": 52, - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "5", - "raceOrEthnicity": "ALL", - "rate": 0.7333333333333333, - "rateDenominator": 15, - "rateNumerator": 11, - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "12", - "raceOrEthnicity": "ALL", - "rate": 0.9, - "rateDenominator": 10, - "rateNumerator": 9, - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "15", - "raceOrEthnicity": "ALL", - "rate": 0.6818181818181818, - "rateDenominator": 22, - "rateNumerator": 15, - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "16", - "raceOrEthnicity": "ALL", - "rate": 0.5, - "rateDenominator": 4, - "rateNumerator": 2, - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "3", - "raceOrEthnicity": "ALL", - "rate": 0.8103448275862069, - "rateDenominator": 58, - "rateNumerator": 47, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "10", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.8888888888888888, - "rateDenominator": 9, - "rateNumerator": 8, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "18", - "raceOrEthnicity": "ALL", - "rate": 0.6666666666666666, - "rateDenominator": 3, - "rateNumerator": 2, - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "2", - "raceOrEthnicity": "ALL", - "rate": 0.7647058823529411, - "rateDenominator": 17, - "rateNumerator": 13, - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "5", - "raceOrEthnicity": "ALL", - "rate": 0.7647058823529411, - "rateDenominator": 51, - "rateNumerator": 39, - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "7", - "raceOrEthnicity": "ALL", - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "7", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.6666666666666666, - "rateDenominator": 3, - "rateNumerator": 2, - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.6947674418604651, - "rateDenominator": 688, - "rateNumerator": 478, - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "1", - "raceOrEthnicity": "ALL", - "rate": 0.7489361702127659, - "rateDenominator": 235, - "rateNumerator": 176, - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "12", - "raceOrEthnicity": "ALL", - "rate": 0.8888888888888888, - "rateDenominator": 9, - "rateNumerator": 8, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "12", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 1, - "rateDenominator": 6, - "rateNumerator": 6, - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "3", - "raceOrEthnicity": "ALL", - "rate": 0.8275862068965517, - "rateDenominator": 29, - "rateNumerator": 24, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "17", - "raceOrEthnicity": "BLACK", - "rate": 0.8979591836734694, - "rateDenominator": 49, - "rateNumerator": 44, - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "3", - "raceOrEthnicity": "ALL", - "rate": 0.7073170731707317, - "rateDenominator": 41, - "rateNumerator": 29, - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "4", - "raceOrEthnicity": "ALL", - "rate": 0.6929824561403509, - "rateDenominator": 114, - "rateNumerator": 79, - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "18", - "raceOrEthnicity": "ALL", - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "4", - "raceOrEthnicity": "ALL", - "rate": 0.6506849315068494, - "rateDenominator": 146, - "rateNumerator": 95, - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "4", - "raceOrEthnicity": "ALL", - "rate": 0.5833333333333334, - "rateDenominator": 48, - "rateNumerator": 28, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "4", - "raceOrEthnicity": "OTHER", - "rate": 0.6666666666666666, - "rateDenominator": 3, - "rateNumerator": 2, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "4", - "raceOrEthnicity": "WHITE", - "rate": 0.660958904109589, - "rateDenominator": 584, - "rateNumerator": 386, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "15", - "raceOrEthnicity": "WHITE", - "rate": 0.6428571428571429, - "rateDenominator": 14, - "rateNumerator": 9, - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "8", - "raceOrEthnicity": "ALL", - "rate": 0.7777777777777778, - "rateDenominator": 9, - "rateNumerator": 7, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.7847222222222222, - "rateDenominator": 144, - "rateNumerator": 113, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "12", - "raceOrEthnicity": "WHITE", - "rate": 0.7777777777777778, - "rateDenominator": 45, - "rateNumerator": 35, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "15", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 1, - "rateDenominator": 3, - "rateNumerator": 3, - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "2", - "raceOrEthnicity": "ALL", - "rate": 0.8, - "rateDenominator": 15, - "rateNumerator": 12, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "4", - "raceOrEthnicity": "HISPANIC", - "rate": 0.75, - "rateDenominator": 28, - "rateNumerator": 21, - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.768796992481203, - "rateDenominator": 532, - "rateNumerator": 409, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "15", - "raceOrEthnicity": "HISPANIC", - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "4", - "raceOrEthnicity": "ALL", - "rate": 0.6507592190889371, - "rateDenominator": 461, - "rateNumerator": 300, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "7", - "raceOrEthnicity": "HISPANIC", - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "9", - "raceOrEthnicity": "ALL", - "rate": 0.875, - "rateDenominator": 8, - "rateNumerator": 7, - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "10", - "raceOrEthnicity": "ALL", - "rate": 0.875, - "rateDenominator": 88, - "rateNumerator": 77, - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "14", - "raceOrEthnicity": "ALL", - "rate": 0, - "rateDenominator": 1, - "rateNumerator": 0, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "16", - "raceOrEthnicity": "ALL", - "rate": 0.7647058823529411, - "rateDenominator": 17, - "rateNumerator": 13, - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "18", - "raceOrEthnicity": "ALL", - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "5", - "raceOrEthnicity": "WHITE", - "rate": 0.7395348837209302, - "rateDenominator": 215, - "rateNumerator": 159, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "11", - "raceOrEthnicity": "ALL", - "rate": 0.8059701492537313, - "rateDenominator": 67, - "rateNumerator": 54, - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "17", - "raceOrEthnicity": "ALL", - "rate": 0.8461538461538461, - "rateDenominator": 26, - "rateNumerator": 22, - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "17", - "raceOrEthnicity": "ALL", - "rate": 0.8615384615384616, - "rateDenominator": 130, - "rateNumerator": 112, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "18", - "raceOrEthnicity": "BLACK", - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "9", - "raceOrEthnicity": "ALL", - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "10", - "raceOrEthnicity": "ALL", - "rate": 0.8579881656804734, - "rateDenominator": 169, - "rateNumerator": 145, - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "13", - "raceOrEthnicity": "ALL", - "rate": 0.7777777777777778, - "rateDenominator": 72, - "rateNumerator": 56, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "15", - "raceOrEthnicity": "BLACK", - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "16", - "raceOrEthnicity": "ALL", - "rate": 1, - "rateDenominator": 4, - "rateNumerator": 4, - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "3", - "raceOrEthnicity": "ALL", - "rate": 0.8, - "rateDenominator": 30, - "rateNumerator": 24, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "6", - "raceOrEthnicity": "WHITE", - "rate": 0.7627118644067796, - "rateDenominator": 59, - "rateNumerator": 45, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "9", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 1, - "rateDenominator": 5, - "rateNumerator": 5, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "4", - "raceOrEthnicity": "ALL", - "rate": 0.6614634146341464, - "rateDenominator": 1025, - "rateNumerator": 678, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "4", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.6068965517241379, - "rateDenominator": 145, - "rateNumerator": 88, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "11", - "raceOrEthnicity": "WHITE", - "rate": 0.8024691358024691, - "rateDenominator": 81, - "rateNumerator": 65, - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "17", - "raceOrEthnicity": "ALL", - "rate": 0.9, - "rateDenominator": 30, - "rateNumerator": 27, - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "4", - "raceOrEthnicity": "ALL", - "rate": 0.6867469879518072, - "rateDenominator": 166, - "rateNumerator": 114, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "5", - "raceOrEthnicity": "BLACK", - "rate": 0.6551724137931034, - "rateDenominator": 29, - "rateNumerator": 19, - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "7", - "raceOrEthnicity": "ALL", - "rate": 0.75, - "rateDenominator": 4, - "rateNumerator": 3, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "1", - "raceOrEthnicity": "OTHER", - "rate": 0.7142857142857143, - "rateDenominator": 7, - "rateNumerator": 5, - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "11", - "raceOrEthnicity": "ALL", - "rate": 0.8095238095238095, - "rateDenominator": 21, - "rateNumerator": 17, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "14", - "raceOrEthnicity": "WHITE", - "rate": 0, - "rateDenominator": 2, - "rateNumerator": 0, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "16", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "18", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "2", - "raceOrEthnicity": "HISPANIC", - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "1", - "raceOrEthnicity": "HISPANIC", - "rate": 0.6896551724137931, - "rateDenominator": 29, - "rateNumerator": 20, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "10", - "raceOrEthnicity": "HISPANIC", - "rate": 0.875, - "rateDenominator": 8, - "rateNumerator": 7, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "2", - "raceOrEthnicity": "WHITE", - "rate": 0.8115942028985508, - "rateDenominator": 138, - "rateNumerator": 112, - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "8", - "raceOrEthnicity": "ALL", - "rate": 1, - "rateDenominator": 3, - "rateNumerator": 3, - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "14", - "raceOrEthnicity": "ALL", - "rate": 0, - "rateDenominator": 1, - "rateNumerator": 0, - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "3", - "raceOrEthnicity": "ALL", - "rate": 0.7941176470588235, - "rateDenominator": 34, - "rateNumerator": 27, - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "6", - "raceOrEthnicity": "ALL", - "rate": 0.8082191780821918, - "rateDenominator": 73, - "rateNumerator": 59, - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "9", - "raceOrEthnicity": "ALL", - "rate": 1, - "rateDenominator": 4, - "rateNumerator": 4, - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "11", - "raceOrEthnicity": "ALL", - "rate": 0.8024691358024691, - "rateDenominator": 81, - "rateNumerator": 65, - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "6", - "raceOrEthnicity": "ALL", - "rate": 0.7857142857142857, - "rateDenominator": 14, - "rateNumerator": 11, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.735632183908046, - "rateDenominator": 174, - "rateNumerator": 128, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "1", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.6724137931034483, - "rateDenominator": 232, - "rateNumerator": 156, - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "17", - "raceOrEthnicity": "ALL", - "rate": 0.8529411764705882, - "rateDenominator": 34, - "rateNumerator": 29, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "10", - "raceOrEthnicity": "WHITE", - "rate": 0.8493150684931506, - "rateDenominator": 73, - "rateNumerator": 62, - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "11", - "raceOrEthnicity": "ALL", - "rate": 0.45454545454545453, - "rateDenominator": 11, - "rateNumerator": 5, - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "12", - "raceOrEthnicity": "ALL", - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "13", - "raceOrEthnicity": "ALL", - "rate": 0.6881533101045296, - "rateDenominator": 574, - "rateNumerator": 395, - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "18", - "raceOrEthnicity": "ALL", - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "12", - "raceOrEthnicity": "HISPANIC", - "rate": 0.8888888888888888, - "rateDenominator": 9, - "rateNumerator": 8, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "18", - "raceOrEthnicity": "HISPANIC", - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "7", - "raceOrEthnicity": "ALL", - "rate": 0.75, - "rateDenominator": 16, - "rateNumerator": 12, - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "7", - "raceOrEthnicity": "ALL", - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "7", - "raceOrEthnicity": "BLACK", - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "EXTERNAL_UNKNOWN", - "raceOrEthnicity": "ALL", - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "13", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.6335877862595419, - "rateDenominator": 131, - "rateNumerator": 83, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "8", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.8571428571428571, - "rateDenominator": 42, - "rateNumerator": 36, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "13", - "raceOrEthnicity": "BLACK", - "rate": 0.6862745098039216, - "rateDenominator": 51, - "rateNumerator": 35, - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "16", - "raceOrEthnicity": "ALL", - "rate": 0.75, - "rateDenominator": 4, - "rateNumerator": 3, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "16", - "raceOrEthnicity": "WHITE", - "rate": 0.7916666666666666, - "rateDenominator": 24, - "rateNumerator": 19, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "17", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.8484848484848485, - "rateDenominator": 33, - "rateNumerator": 28, - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "3", - "raceOrEthnicity": "ALL", - "rate": 0.8, - "rateDenominator": 20, - "rateNumerator": 16, - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "EXTERNAL_UNKNOWN", - "raceOrEthnicity": "ALL", - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "1", - "raceOrEthnicity": "ALL", - "rate": 0.7130434782608696, - "rateDenominator": 115, - "rateNumerator": 82, - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "10", - "raceOrEthnicity": "ALL", - "rate": 0.8823529411764706, - "rateDenominator": 17, - "rateNumerator": 15, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "17", - "raceOrEthnicity": "OTHER", - "rate": 1, - "rateDenominator": 3, - "rateNumerator": 3, - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "7", - "raceOrEthnicity": "ALL", - "rate": 1, - "rateDenominator": 3, - "rateNumerator": 3, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.65, - "rateDenominator": 40, - "rateNumerator": 26, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "11", - "raceOrEthnicity": "OTHER", - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "13", - "raceOrEthnicity": "HISPANIC", - "rate": 0.68, - "rateDenominator": 25, - "rateNumerator": 17, - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "8", - "raceOrEthnicity": "ALL", - "rate": 0.7272727272727273, - "rateDenominator": 22, - "rateNumerator": 16, - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "1", - "raceOrEthnicity": "ALL", - "rate": 0.759825327510917, - "rateDenominator": 229, - "rateNumerator": 174, - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "11", - "raceOrEthnicity": "ALL", - "rate": 0.75, - "rateDenominator": 16, - "rateNumerator": 12, - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "13", - "raceOrEthnicity": "ALL", - "rate": 0.72, - "rateDenominator": 50, - "rateNumerator": 36, - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "16", - "raceOrEthnicity": "ALL", - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "18", - "raceOrEthnicity": "WHITE", - "rate": 0.5, - "rateDenominator": 2, - "rateNumerator": 1, - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "6", - "raceOrEthnicity": "ALL", - "rate": 0.875, - "rateDenominator": 32, - "rateNumerator": 28, - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.7403462050599201, - "rateDenominator": 751, - "rateNumerator": 556, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "1", - "raceOrEthnicity": "ALL", - "rate": 0.7223880597014926, - "rateDenominator": 670, - "rateNumerator": 484, - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "10", - "raceOrEthnicity": "ALL", - "rate": 0.7916666666666666, - "rateDenominator": 24, - "rateNumerator": 19, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "11", - "raceOrEthnicity": "HISPANIC", - "rate": 0.8, - "rateDenominator": 5, - "rateNumerator": 4, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "17", - "raceOrEthnicity": "WHITE", - "rate": 0.8333333333333334, - "rateDenominator": 96, - "rateNumerator": 80, - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "18", - "raceOrEthnicity": "ALL", - "rate": 0.8571428571428571, - "rateDenominator": 7, - "rateNumerator": 6, - }, -] -`; - -exports[`data fetching for metric ParoleSuccessHistorical 1`] = ` -Array [ - Object { - "locality": "9", - "month": 9, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2017, - }, - Object { - "locality": "13", - "month": 10, - "rate": 0.7857142857142857, - "rateDenominator": 14, - "rateNumerator": 11, - "year": 2017, - }, - Object { - "locality": "5", - "month": 5, - "rate": 0.2222222222222222, - "rateDenominator": 9, - "rateNumerator": 2, - "year": 2018, - }, - Object { - "locality": "2", - "month": 12, - "rate": 0.75, - "rateDenominator": 4, - "rateNumerator": 3, - "year": 2018, - }, - Object { - "locality": "4", - "month": 5, - "rate": 0.7692307692307693, - "rateDenominator": 13, - "rateNumerator": 10, - "year": 2019, - }, - Object { - "locality": "ALL", - "month": 6, - "rate": 0.7443181818181818, - "rateDenominator": 176, - "rateNumerator": 131, - "year": 2019, - }, - Object { - "locality": "13", - "month": 7, - "rate": 0.8260869565217391, - "rateDenominator": 23, - "rateNumerator": 19, - "year": 2019, - }, - Object { - "locality": "6", - "month": 7, - "rate": 1, - "rateDenominator": 4, - "rateNumerator": 4, - "year": 2019, - }, - Object { - "locality": "12", - "month": 1, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2020, - }, - Object { - "locality": "11", - "month": 4, - "rate": 1, - "rateDenominator": 4, - "rateNumerator": 4, - "year": 2020, - }, - Object { - "locality": "13", - "month": 1, - "rate": 0.6666666666666666, - "rateDenominator": 15, - "rateNumerator": 10, - "year": 2018, - }, - Object { - "locality": "12", - "month": 2, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2018, - }, - Object { - "locality": "ALL", - "month": 5, - "rate": 0.7295081967213115, - "rateDenominator": 122, - "rateNumerator": 89, - "year": 2018, - }, - Object { - "locality": "ALL", - "month": 6, - "rate": 0.719626168224299, - "rateDenominator": 107, - "rateNumerator": 77, - "year": 2018, - }, - Object { - "locality": "16", - "month": 6, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "15", - "month": 8, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "ALL", - "month": 11, - "rate": 0.7079207920792079, - "rateDenominator": 202, - "rateNumerator": 143, - "year": 2018, - }, - Object { - "locality": "6", - "month": 2, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "8", - "month": 6, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "13", - "month": 6, - "rate": 0.7368421052631579, - "rateDenominator": 19, - "rateNumerator": 14, - "year": 2019, - }, - Object { - "locality": "10", - "month": 6, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "9", - "month": 8, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "13", - "month": 3, - "rate": 0.4666666666666667, - "rateDenominator": 15, - "rateNumerator": 7, - "year": 2020, - }, - Object { - "locality": "5", - "month": 5, - "rate": 0.6666666666666666, - "rateDenominator": 3, - "rateNumerator": 2, - "year": 2020, - }, - Object { - "locality": "3", - "month": 7, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2020, - }, - Object { - "locality": "17", - "month": 10, - "rate": 0.9090909090909091, - "rateDenominator": 11, - "rateNumerator": 10, - "year": 2017, - }, - Object { - "locality": "ALL", - "month": 2, - "rate": 0.7195121951219512, - "rateDenominator": 164, - "rateNumerator": 118, - "year": 2018, - }, - Object { - "locality": "10", - "month": 2, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2018, - }, - Object { - "locality": "10", - "month": 3, - "rate": 1, - "rateDenominator": 5, - "rateNumerator": 5, - "year": 2018, - }, - Object { - "locality": "13", - "month": 4, - "rate": 0.5, - "rateDenominator": 10, - "rateNumerator": 5, - "year": 2018, - }, - Object { - "locality": "16", - "month": 4, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "4", - "month": 5, - "rate": 0.7, - "rateDenominator": 40, - "rateNumerator": 28, - "year": 2018, - }, - Object { - "locality": "3", - "month": 6, - "rate": 0.7777777777777778, - "rateDenominator": 9, - "rateNumerator": 7, - "year": 2018, - }, - Object { - "locality": "16", - "month": 9, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "6", - "month": 12, - "rate": 0.75, - "rateDenominator": 8, - "rateNumerator": 6, - "year": 2018, - }, - Object { - "locality": "12", - "month": 3, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2019, - }, - Object { - "locality": "1", - "month": 6, - "rate": 0.6808510638297872, - "rateDenominator": 47, - "rateNumerator": 32, - "year": 2019, - }, - Object { - "locality": "11", - "month": 9, - "rate": 0.5, - "rateDenominator": 2, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "10", - "month": 12, - "rate": 1, - "rateDenominator": 5, - "rateNumerator": 5, - "year": 2019, - }, - Object { - "locality": "2", - "month": 12, - "rate": 0.6666666666666666, - "rateDenominator": 6, - "rateNumerator": 4, - "year": 2017, - }, - Object { - "locality": "6", - "month": 12, - "rate": 0.5, - "rateDenominator": 2, - "rateNumerator": 1, - "year": 2017, - }, - Object { - "locality": "16", - "month": 2, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2018, - }, - Object { - "locality": "5", - "month": 3, - "rate": 0.7, - "rateDenominator": 20, - "rateNumerator": 14, - "year": 2018, - }, - Object { - "locality": "17", - "month": 3, - "rate": 0.9166666666666666, - "rateDenominator": 12, - "rateNumerator": 11, - "year": 2018, - }, - Object { - "locality": "12", - "month": 4, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "11", - "month": 5, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2018, - }, - Object { - "locality": "1", - "month": 7, - "rate": 0.8076923076923077, - "rateDenominator": 26, - "rateNumerator": 21, - "year": 2018, - }, - Object { - "locality": "7", - "month": 7, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "17", - "month": 2, - "rate": 0.6666666666666666, - "rateDenominator": 3, - "rateNumerator": 2, - "year": 2019, - }, - Object { - "locality": "12", - "month": 6, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "ALL", - "month": 9, - "rate": 0.6962025316455697, - "rateDenominator": 79, - "rateNumerator": 55, - "year": 2019, - }, - Object { - "locality": "3", - "month": 10, - "rate": 1, - "rateDenominator": 5, - "rateNumerator": 5, - "year": 2019, - }, - Object { - "locality": "11", - "month": 11, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "17", - "month": 1, - "rate": 1, - "rateDenominator": 7, - "rateNumerator": 7, - "year": 2020, - }, - Object { - "locality": "17", - "month": 2, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2020, - }, - Object { - "locality": "4", - "month": 6, - "rate": 0.5, - "rateDenominator": 6, - "rateNumerator": 3, - "year": 2020, - }, - Object { - "locality": "11", - "month": 6, - "rate": 0, - "rateDenominator": 1, - "rateNumerator": 0, - "year": 2020, - }, - Object { - "locality": "10", - "month": 8, - "rate": 1, - "rateDenominator": 3, - "rateNumerator": 3, - "year": 2017, - }, - Object { - "locality": "4", - "month": 10, - "rate": 0.625, - "rateDenominator": 40, - "rateNumerator": 25, - "year": 2018, - }, - Object { - "locality": "13", - "month": 10, - "rate": 0.6666666666666666, - "rateDenominator": 9, - "rateNumerator": 6, - "year": 2018, - }, - Object { - "locality": "2", - "month": 3, - "rate": 0.6666666666666666, - "rateDenominator": 3, - "rateNumerator": 2, - "year": 2019, - }, - Object { - "locality": "3", - "month": 4, - "rate": 0.782608695652174, - "rateDenominator": 23, - "rateNumerator": 18, - "year": 2019, - }, - Object { - "locality": "6", - "month": 2, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2020, - }, - Object { - "locality": "13", - "month": 6, - "rate": 0.21428571428571427, - "rateDenominator": 14, - "rateNumerator": 3, - "year": 2020, - }, - Object { - "locality": "ALL", - "month": 10, - "rate": 0.75, - "rateDenominator": 80, - "rateNumerator": 60, - "year": 2017, - }, - Object { - "locality": "3", - "month": 11, - "rate": 0.5714285714285714, - "rateDenominator": 7, - "rateNumerator": 4, - "year": 2017, - }, - Object { - "locality": "15", - "month": 11, - "rate": 0.5, - "rateDenominator": 2, - "rateNumerator": 1, - "year": 2017, - }, - Object { - "locality": "2", - "month": 1, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2018, - }, - Object { - "locality": "2", - "month": 4, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "5", - "month": 9, - "rate": 0.7272727272727273, - "rateDenominator": 11, - "rateNumerator": 8, - "year": 2018, - }, - Object { - "locality": "3", - "month": 10, - "rate": 0.8333333333333334, - "rateDenominator": 6, - "rateNumerator": 5, - "year": 2018, - }, - Object { - "locality": "15", - "month": 1, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "11", - "month": 5, - "rate": 0.3333333333333333, - "rateDenominator": 6, - "rateNumerator": 2, - "year": 2019, - }, - Object { - "locality": "4", - "month": 6, - "rate": 0.7547169811320755, - "rateDenominator": 53, - "rateNumerator": 40, - "year": 2019, - }, - Object { - "locality": "17", - "month": 6, - "rate": 0.75, - "rateDenominator": 8, - "rateNumerator": 6, - "year": 2019, - }, - Object { - "locality": "4", - "month": 7, - "rate": 0.625, - "rateDenominator": 32, - "rateNumerator": 20, - "year": 2019, - }, - Object { - "locality": "6", - "month": 8, - "rate": 0.6666666666666666, - "rateDenominator": 3, - "rateNumerator": 2, - "year": 2019, - }, - Object { - "locality": "4", - "month": 9, - "rate": 0.5882352941176471, - "rateDenominator": 17, - "rateNumerator": 10, - "year": 2019, - }, - Object { - "locality": "2", - "month": 11, - "rate": 0.4, - "rateDenominator": 5, - "rateNumerator": 2, - "year": 2019, - }, - Object { - "locality": "5", - "month": 4, - "rate": 0.8, - "rateDenominator": 5, - "rateNumerator": 4, - "year": 2020, - }, - Object { - "locality": "10", - "month": 6, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2020, - }, - Object { - "locality": "1", - "month": 9, - "rate": 0.7419354838709677, - "rateDenominator": 31, - "rateNumerator": 23, - "year": 2017, - }, - Object { - "locality": "17", - "month": 2, - "rate": 0.75, - "rateDenominator": 4, - "rateNumerator": 3, - "year": 2018, - }, - Object { - "locality": "1", - "month": 6, - "rate": 0.7727272727272727, - "rateDenominator": 22, - "rateNumerator": 17, - "year": 2018, - }, - Object { - "locality": "17", - "month": 10, - "rate": 0.6666666666666666, - "rateDenominator": 3, - "rateNumerator": 2, - "year": 2018, - }, - Object { - "locality": "10", - "month": 10, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2018, - }, - Object { - "locality": "13", - "month": 2, - "rate": 0.6774193548387096, - "rateDenominator": 31, - "rateNumerator": 21, - "year": 2019, - }, - Object { - "locality": "1", - "month": 9, - "rate": 0.8, - "rateDenominator": 30, - "rateNumerator": 24, - "year": 2019, - }, - Object { - "locality": "5", - "month": 11, - "rate": 0.8461538461538461, - "rateDenominator": 13, - "rateNumerator": 11, - "year": 2019, - }, - Object { - "locality": "3", - "month": 3, - "rate": 0.3333333333333333, - "rateDenominator": 3, - "rateNumerator": 1, - "year": 2020, - }, - Object { - "locality": "ALL", - "month": 4, - "rate": 0.7735849056603774, - "rateDenominator": 53, - "rateNumerator": 41, - "year": 2020, - }, - Object { - "locality": "1", - "month": 5, - "rate": 0.8, - "rateDenominator": 5, - "rateNumerator": 4, - "year": 2020, - }, - Object { - "locality": "ALL", - "month": 8, - "rate": 0.7487179487179487, - "rateDenominator": 195, - "rateNumerator": 146, - "year": 2017, - }, - Object { - "locality": "2", - "month": 9, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2017, - }, - Object { - "locality": "ALL", - "month": 1, - "rate": 0.7699530516431925, - "rateDenominator": 213, - "rateNumerator": 164, - "year": 2018, - }, - Object { - "locality": "6", - "month": 5, - "rate": 0.8333333333333334, - "rateDenominator": 6, - "rateNumerator": 5, - "year": 2018, - }, - Object { - "locality": "3", - "month": 11, - "rate": 0.8571428571428571, - "rateDenominator": 7, - "rateNumerator": 6, - "year": 2018, - }, - Object { - "locality": "16", - "month": 11, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2018, - }, - Object { - "locality": "2", - "month": 1, - "rate": 0.6666666666666666, - "rateDenominator": 6, - "rateNumerator": 4, - "year": 2019, - }, - Object { - "locality": "1", - "month": 4, - "rate": 0.8064516129032258, - "rateDenominator": 31, - "rateNumerator": 25, - "year": 2019, - }, - Object { - "locality": "1", - "month": 8, - "rate": 0.5714285714285714, - "rateDenominator": 21, - "rateNumerator": 12, - "year": 2019, - }, - Object { - "locality": "17", - "month": 10, - "rate": 0.75, - "rateDenominator": 4, - "rateNumerator": 3, - "year": 2019, - }, - Object { - "locality": "7", - "month": 10, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2019, - }, - Object { - "locality": "7", - "month": 9, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2017, - }, - Object { - "locality": "13", - "month": 2, - "rate": 0.5454545454545454, - "rateDenominator": 22, - "rateNumerator": 12, - "year": 2018, - }, - Object { - "locality": "ALL", - "month": 3, - "rate": 0.7375, - "rateDenominator": 160, - "rateNumerator": 118, - "year": 2018, - }, - Object { - "locality": "17", - "month": 8, - "rate": 1, - "rateDenominator": 5, - "rateNumerator": 5, - "year": 2018, - }, - Object { - "locality": "13", - "month": 12, - "rate": 0.6666666666666666, - "rateDenominator": 18, - "rateNumerator": 12, - "year": 2018, - }, - Object { - "locality": "2", - "month": 8, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "11", - "month": 8, - "rate": 0.3333333333333333, - "rateDenominator": 3, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "5", - "month": 10, - "rate": 0.5555555555555556, - "rateDenominator": 18, - "rateNumerator": 10, - "year": 2019, - }, - Object { - "locality": "13", - "month": 7, - "rate": 0, - "rateDenominator": 4, - "rateNumerator": 0, - "year": 2020, - }, - Object { - "locality": "13", - "month": 11, - "rate": 0.5833333333333334, - "rateDenominator": 24, - "rateNumerator": 14, - "year": 2017, - }, - Object { - "locality": "16", - "month": 3, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "2", - "month": 4, - "rate": 0.5, - "rateDenominator": 4, - "rateNumerator": 2, - "year": 2019, - }, - Object { - "locality": "5", - "month": 7, - "rate": 0.8888888888888888, - "rateDenominator": 9, - "rateNumerator": 8, - "year": 2019, - }, - Object { - "locality": "11", - "month": 10, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "4", - "month": 12, - "rate": 0.7714285714285715, - "rateDenominator": 35, - "rateNumerator": 27, - "year": 2019, - }, - Object { - "locality": "12", - "month": 12, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "5", - "month": 2, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2020, - }, - Object { - "locality": "1", - "month": 7, - "rate": 0, - "rateDenominator": 1, - "rateNumerator": 0, - "year": 2020, - }, - Object { - "locality": "12", - "month": 5, - "rate": 0, - "rateDenominator": 2, - "rateNumerator": 0, - "year": 2018, - }, - Object { - "locality": "2", - "month": 8, - "rate": 0.8, - "rateDenominator": 5, - "rateNumerator": 4, - "year": 2018, - }, - Object { - "locality": "13", - "month": 8, - "rate": 0.9285714285714286, - "rateDenominator": 14, - "rateNumerator": 13, - "year": 2019, - }, - Object { - "locality": "6", - "month": 12, - "rate": 0.875, - "rateDenominator": 8, - "rateNumerator": 7, - "year": 2019, - }, - Object { - "locality": "6", - "month": 4, - "rate": 0.8, - "rateDenominator": 5, - "rateNumerator": 4, - "year": 2020, - }, - Object { - "locality": "ALL", - "month": 12, - "rate": 0.7209302325581395, - "rateDenominator": 86, - "rateNumerator": 62, - "year": 2017, - }, - Object { - "locality": "5", - "month": 2, - "rate": 0.3333333333333333, - "rateDenominator": 6, - "rateNumerator": 2, - "year": 2018, - }, - Object { - "locality": "2", - "month": 2, - "rate": 0.5, - "rateDenominator": 6, - "rateNumerator": 3, - "year": 2018, - }, - Object { - "locality": "8", - "month": 8, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2018, - }, - Object { - "locality": "10", - "month": 11, - "rate": 1, - "rateDenominator": 3, - "rateNumerator": 3, - "year": 2018, - }, - Object { - "locality": "11", - "month": 1, - "rate": 0.8333333333333334, - "rateDenominator": 6, - "rateNumerator": 5, - "year": 2019, - }, - Object { - "locality": "12", - "month": 2, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "1", - "month": 3, - "rate": 0.631578947368421, - "rateDenominator": 19, - "rateNumerator": 12, - "year": 2019, - }, - Object { - "locality": "ALL", - "month": 4, - "rate": 0.7265625, - "rateDenominator": 128, - "rateNumerator": 93, - "year": 2019, - }, - Object { - "locality": "4", - "month": 4, - "rate": 0.5882352941176471, - "rateDenominator": 17, - "rateNumerator": 10, - "year": 2019, - }, - Object { - "locality": "7", - "month": 6, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "2", - "month": 7, - "rate": 0.625, - "rateDenominator": 8, - "rateNumerator": 5, - "year": 2019, - }, - Object { - "locality": "12", - "month": 10, - "rate": 1, - "rateDenominator": 3, - "rateNumerator": 3, - "year": 2019, - }, - Object { - "locality": "ALL", - "month": 12, - "rate": 0.7641509433962265, - "rateDenominator": 106, - "rateNumerator": 81, - "year": 2019, - }, - Object { - "locality": "10", - "month": 1, - "rate": 0.5, - "rateDenominator": 2, - "rateNumerator": 1, - "year": 2020, - }, - Object { - "locality": "8", - "month": 3, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2020, - }, - Object { - "locality": "16", - "month": 10, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2017, - }, - Object { - "locality": "10", - "month": 1, - "rate": 1, - "rateDenominator": 3, - "rateNumerator": 3, - "year": 2018, - }, - Object { - "locality": "4", - "month": 6, - "rate": 0.6515151515151515, - "rateDenominator": 66, - "rateNumerator": 43, - "year": 2018, - }, - Object { - "locality": "11", - "month": 6, - "rate": 1, - "rateDenominator": 9, - "rateNumerator": 9, - "year": 2018, - }, - Object { - "locality": "17", - "month": 6, - "rate": 1, - "rateDenominator": 5, - "rateNumerator": 5, - "year": 2018, - }, - Object { - "locality": "7", - "month": 9, - "rate": 0, - "rateDenominator": 1, - "rateNumerator": 0, - "year": 2018, - }, - Object { - "locality": "11", - "month": 11, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "16", - "month": 11, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "6", - "month": 1, - "rate": 0.6666666666666666, - "rateDenominator": 6, - "rateNumerator": 4, - "year": 2020, - }, - Object { - "locality": "6", - "month": 8, - "rate": 0.9, - "rateDenominator": 10, - "rateNumerator": 9, - "year": 2017, - }, - Object { - "locality": "1", - "month": 10, - "rate": 0.8536585365853658, - "rateDenominator": 41, - "rateNumerator": 35, - "year": 2017, - }, - Object { - "locality": "7", - "month": 11, - "rate": 0, - "rateDenominator": 1, - "rateNumerator": 0, - "year": 2017, - }, - Object { - "locality": "1", - "month": 5, - "rate": 0.7142857142857143, - "rateDenominator": 35, - "rateNumerator": 25, - "year": 2018, - }, - Object { - "locality": "11", - "month": 8, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2018, - }, - Object { - "locality": "13", - "month": 9, - "rate": 0.8064516129032258, - "rateDenominator": 31, - "rateNumerator": 25, - "year": 2018, - }, - Object { - "locality": "2", - "month": 10, - "rate": 1, - "rateDenominator": 6, - "rateNumerator": 6, - "year": 2018, - }, - Object { - "locality": "9", - "month": 11, - "rate": 0.5, - "rateDenominator": 4, - "rateNumerator": 2, - "year": 2018, - }, - Object { - "locality": "10", - "month": 1, - "rate": 0.5714285714285714, - "rateDenominator": 7, - "rateNumerator": 4, - "year": 2019, - }, - Object { - "locality": "10", - "month": 3, - "rate": 0.8333333333333334, - "rateDenominator": 6, - "rateNumerator": 5, - "year": 2019, - }, - Object { - "locality": "3", - "month": 9, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2019, - }, - Object { - "locality": "8", - "month": 12, - "rate": 0.6666666666666666, - "rateDenominator": 3, - "rateNumerator": 2, - "year": 2019, - }, - Object { - "locality": "5", - "month": 1, - "rate": 0.8333333333333334, - "rateDenominator": 12, - "rateNumerator": 10, - "year": 2020, - }, - Object { - "locality": "3", - "month": 1, - "rate": 0.9285714285714286, - "rateDenominator": 14, - "rateNumerator": 13, - "year": 2018, - }, - Object { - "locality": "5", - "month": 4, - "rate": 0.7142857142857143, - "rateDenominator": 7, - "rateNumerator": 5, - "year": 2018, - }, - Object { - "locality": "9", - "month": 7, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "15", - "month": 10, - "rate": 0, - "rateDenominator": 1, - "rateNumerator": 0, - "year": 2018, - }, - Object { - "locality": "3", - "month": 12, - "rate": 0.9, - "rateDenominator": 10, - "rateNumerator": 9, - "year": 2018, - }, - Object { - "locality": "2", - "month": 12, - "rate": 1, - "rateDenominator": 5, - "rateNumerator": 5, - "year": 2019, - }, - Object { - "locality": "11", - "month": 3, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2020, - }, - Object { - "locality": "6", - "month": 3, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2020, - }, - Object { - "locality": "3", - "month": 5, - "rate": 0.6363636363636364, - "rateDenominator": 11, - "rateNumerator": 7, - "year": 2020, - }, - Object { - "locality": "3", - "month": 6, - "rate": 0, - "rateDenominator": 1, - "rateNumerator": 0, - "year": 2020, - }, - Object { - "locality": "8", - "month": 12, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2017, - }, - Object { - "locality": "11", - "month": 1, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "1", - "month": 2, - "rate": 0.7073170731707317, - "rateDenominator": 41, - "rateNumerator": 29, - "year": 2018, - }, - Object { - "locality": "8", - "month": 6, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "7", - "month": 6, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "1", - "month": 2, - "rate": 0.6, - "rateDenominator": 15, - "rateNumerator": 9, - "year": 2019, - }, - Object { - "locality": "3", - "month": 2, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2019, - }, - Object { - "locality": "13", - "month": 3, - "rate": 0.6153846153846154, - "rateDenominator": 13, - "rateNumerator": 8, - "year": 2019, - }, - Object { - "locality": "3", - "month": 12, - "rate": 0.7142857142857143, - "rateDenominator": 7, - "rateNumerator": 5, - "year": 2017, - }, - Object { - "locality": "ALL", - "month": 12, - "rate": 0.7444444444444445, - "rateDenominator": 90, - "rateNumerator": 67, - "year": 2018, - }, - Object { - "locality": "15", - "month": 2, - "rate": 0, - "rateDenominator": 1, - "rateNumerator": 0, - "year": 2019, - }, - Object { - "locality": "6", - "month": 6, - "rate": 0.5, - "rateDenominator": 4, - "rateNumerator": 2, - "year": 2019, - }, - Object { - "locality": "17", - "month": 7, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2019, - }, - Object { - "locality": "16", - "month": 10, - "rate": 0, - "rateDenominator": 1, - "rateNumerator": 0, - "year": 2019, - }, - Object { - "locality": "1", - "month": 11, - "rate": 0.6923076923076923, - "rateDenominator": 26, - "rateNumerator": 18, - "year": 2019, - }, - Object { - "locality": "9", - "month": 12, - "rate": 0, - "rateDenominator": 1, - "rateNumerator": 0, - "year": 2019, - }, - Object { - "locality": "ALL", - "month": 9, - "rate": 0.7424242424242424, - "rateDenominator": 66, - "rateNumerator": 49, - "year": 2017, - }, - Object { - "locality": "17", - "month": 9, - "rate": 0.625, - "rateDenominator": 8, - "rateNumerator": 5, - "year": 2017, - }, - Object { - "locality": "9", - "month": 10, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2017, - }, - Object { - "locality": "15", - "month": 10, - "rate": 0, - "rateDenominator": 1, - "rateNumerator": 0, - "year": 2017, - }, - Object { - "locality": "4", - "month": 11, - "rate": 0.5531914893617021, - "rateDenominator": 47, - "rateNumerator": 26, - "year": 2018, - }, - Object { - "locality": "10", - "month": 12, - "rate": 1, - "rateDenominator": 4, - "rateNumerator": 4, - "year": 2018, - }, - Object { - "locality": "17", - "month": 4, - "rate": 0.6, - "rateDenominator": 10, - "rateNumerator": 6, - "year": 2019, - }, - Object { - "locality": "1", - "month": 3, - "rate": 0.6470588235294118, - "rateDenominator": 17, - "rateNumerator": 11, - "year": 2020, - }, - Object { - "locality": "4", - "month": 2, - "rate": 0.7567567567567568, - "rateDenominator": 37, - "rateNumerator": 28, - "year": 2018, - }, - Object { - "locality": "1", - "month": 4, - "rate": 0.7321428571428571, - "rateDenominator": 56, - "rateNumerator": 41, - "year": 2018, - }, - Object { - "locality": "5", - "month": 10, - "rate": 0.7, - "rateDenominator": 10, - "rateNumerator": 7, - "year": 2018, - }, - Object { - "locality": "8", - "month": 9, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "15", - "month": 11, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "13", - "month": 2, - "rate": 0.6190476190476191, - "rateDenominator": 21, - "rateNumerator": 13, - "year": 2020, - }, - Object { - "locality": "11", - "month": 2, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2020, - }, - Object { - "locality": "4", - "month": 3, - "rate": 0.4444444444444444, - "rateDenominator": 9, - "rateNumerator": 4, - "year": 2020, - }, - Object { - "locality": "10", - "month": 12, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2017, - }, - Object { - "locality": "6", - "month": 3, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2018, - }, - Object { - "locality": "13", - "month": 3, - "rate": 0.68, - "rateDenominator": 25, - "rateNumerator": 17, - "year": 2018, - }, - Object { - "locality": "11", - "month": 3, - "rate": 0, - "rateDenominator": 1, - "rateNumerator": 0, - "year": 2018, - }, - Object { - "locality": "ALL", - "month": 7, - "rate": 0.7927927927927928, - "rateDenominator": 111, - "rateNumerator": 88, - "year": 2018, - }, - Object { - "locality": "1", - "month": 8, - "rate": 0.7755102040816326, - "rateDenominator": 49, - "rateNumerator": 38, - "year": 2018, - }, - Object { - "locality": "6", - "month": 5, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "12", - "month": 5, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2019, - }, - Object { - "locality": "11", - "month": 7, - "rate": 0.5, - "rateDenominator": 2, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "18", - "month": 5, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2020, - }, - Object { - "locality": "9", - "month": 5, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2020, - }, - Object { - "locality": "10", - "month": 10, - "rate": 0.5, - "rateDenominator": 2, - "rateNumerator": 1, - "year": 2017, - }, - Object { - "locality": "10", - "month": 5, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "6", - "month": 4, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2019, - }, - Object { - "locality": "3", - "month": 5, - "rate": 0.8571428571428571, - "rateDenominator": 7, - "rateNumerator": 6, - "year": 2019, - }, - Object { - "locality": "17", - "month": 8, - "rate": 0.5, - "rateDenominator": 4, - "rateNumerator": 2, - "year": 2019, - }, - Object { - "locality": "5", - "month": 8, - "rate": 0.7777777777777778, - "rateDenominator": 9, - "rateNumerator": 7, - "year": 2019, - }, - Object { - "locality": "17", - "month": 11, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2019, - }, - Object { - "locality": "8", - "month": 1, - "rate": 0.5, - "rateDenominator": 2, - "rateNumerator": 1, - "year": 2020, - }, - Object { - "locality": "10", - "month": 2, - "rate": 1, - "rateDenominator": 3, - "rateNumerator": 3, - "year": 2020, - }, - Object { - "locality": "3", - "month": 8, - "rate": 1, - "rateDenominator": 6, - "rateNumerator": 6, - "year": 2017, - }, - Object { - "locality": "2", - "month": 8, - "rate": 0.5, - "rateDenominator": 4, - "rateNumerator": 2, - "year": 2017, - }, - Object { - "locality": "11", - "month": 9, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2017, - }, - Object { - "locality": "4", - "month": 12, - "rate": 0.5789473684210527, - "rateDenominator": 19, - "rateNumerator": 11, - "year": 2017, - }, - Object { - "locality": "13", - "month": 12, - "rate": 0.8888888888888888, - "rateDenominator": 18, - "rateNumerator": 16, - "year": 2017, - }, - Object { - "locality": "17", - "month": 5, - "rate": 0.875, - "rateDenominator": 8, - "rateNumerator": 7, - "year": 2018, - }, - Object { - "locality": "11", - "month": 10, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2018, - }, - Object { - "locality": "6", - "month": 11, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2018, - }, - Object { - "locality": "11", - "month": 12, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2018, - }, - Object { - "locality": "7", - "month": 7, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "5", - "month": 9, - "rate": 0.7692307692307693, - "rateDenominator": 13, - "rateNumerator": 10, - "year": 2019, - }, - Object { - "locality": "4", - "month": 11, - "rate": 0.5588235294117647, - "rateDenominator": 34, - "rateNumerator": 19, - "year": 2019, - }, - Object { - "locality": "16", - "month": 5, - "rate": 0.5, - "rateDenominator": 2, - "rateNumerator": 1, - "year": 2020, - }, - Object { - "locality": "4", - "month": 8, - "rate": 0.6190476190476191, - "rateDenominator": 42, - "rateNumerator": 26, - "year": 2017, - }, - Object { - "locality": "3", - "month": 9, - "rate": 0.75, - "rateDenominator": 4, - "rateNumerator": 3, - "year": 2017, - }, - Object { - "locality": "4", - "month": 10, - "rate": 0.5357142857142857, - "rateDenominator": 28, - "rateNumerator": 15, - "year": 2017, - }, - Object { - "locality": "10", - "month": 11, - "rate": 0.5, - "rateDenominator": 2, - "rateNumerator": 1, - "year": 2017, - }, - Object { - "locality": "15", - "month": 12, - "rate": 1, - "rateDenominator": 3, - "rateNumerator": 3, - "year": 2017, - }, - Object { - "locality": "3", - "month": 4, - "rate": 0.8, - "rateDenominator": 10, - "rateNumerator": 8, - "year": 2018, - }, - Object { - "locality": "1", - "month": 9, - "rate": 0.8709677419354839, - "rateDenominator": 31, - "rateNumerator": 27, - "year": 2018, - }, - Object { - "locality": "5", - "month": 2, - "rate": 1, - "rateDenominator": 6, - "rateNumerator": 6, - "year": 2019, - }, - Object { - "locality": "9", - "month": 5, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "10", - "month": 8, - "rate": 1, - "rateDenominator": 4, - "rateNumerator": 4, - "year": 2019, - }, - Object { - "locality": "9", - "month": 9, - "rate": 0, - "rateDenominator": 1, - "rateNumerator": 0, - "year": 2019, - }, - Object { - "locality": "4", - "month": 10, - "rate": 0.7083333333333334, - "rateDenominator": 48, - "rateNumerator": 34, - "year": 2019, - }, - Object { - "locality": "ALL", - "month": 11, - "rate": 0.7027027027027027, - "rateDenominator": 74, - "rateNumerator": 52, - "year": 2019, - }, - Object { - "locality": "13", - "month": 11, - "rate": 0.7666666666666667, - "rateDenominator": 30, - "rateNumerator": 23, - "year": 2019, - }, - Object { - "locality": "3", - "month": 2, - "rate": 0.7142857142857143, - "rateDenominator": 7, - "rateNumerator": 5, - "year": 2020, - }, - Object { - "locality": "ALL", - "month": 7, - "rate": 0.35294117647058826, - "rateDenominator": 17, - "rateNumerator": 6, - "year": 2020, - }, - Object { - "locality": "6", - "month": 10, - "rate": 1, - "rateDenominator": 3, - "rateNumerator": 3, - "year": 2017, - }, - Object { - "locality": "12", - "month": 11, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2017, - }, - Object { - "locality": "4", - "month": 1, - "rate": 0.6666666666666666, - "rateDenominator": 15, - "rateNumerator": 10, - "year": 2018, - }, - Object { - "locality": "12", - "month": 7, - "rate": 1, - "rateDenominator": 3, - "rateNumerator": 3, - "year": 2018, - }, - Object { - "locality": "ALL", - "month": 9, - "rate": 0.7938931297709924, - "rateDenominator": 131, - "rateNumerator": 104, - "year": 2018, - }, - Object { - "locality": "11", - "month": 3, - "rate": 1, - "rateDenominator": 3, - "rateNumerator": 3, - "year": 2019, - }, - Object { - "locality": "17", - "month": 5, - "rate": 0.75, - "rateDenominator": 4, - "rateNumerator": 3, - "year": 2019, - }, - Object { - "locality": "11", - "month": 1, - "rate": 1, - "rateDenominator": 4, - "rateNumerator": 4, - "year": 2020, - }, - Object { - "locality": "12", - "month": 4, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2020, - }, - Object { - "locality": "13", - "month": 8, - "rate": 0.7692307692307693, - "rateDenominator": 13, - "rateNumerator": 10, - "year": 2017, - }, - Object { - "locality": "15", - "month": 9, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2017, - }, - Object { - "locality": "17", - "month": 11, - "rate": 0.6666666666666666, - "rateDenominator": 6, - "rateNumerator": 4, - "year": 2017, - }, - Object { - "locality": "3", - "month": 5, - "rate": 0.8, - "rateDenominator": 5, - "rateNumerator": 4, - "year": 2018, - }, - Object { - "locality": "2", - "month": 7, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "7", - "month": 11, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "12", - "month": 1, - "rate": 0.5, - "rateDenominator": 2, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "17", - "month": 4, - "rate": 1, - "rateDenominator": 5, - "rateNumerator": 5, - "year": 2020, - }, - Object { - "locality": "13", - "month": 5, - "rate": 0.7674418604651163, - "rateDenominator": 43, - "rateNumerator": 33, - "year": 2020, - }, - Object { - "locality": "ALL", - "month": 6, - "rate": 0.3125, - "rateDenominator": 48, - "rateNumerator": 15, - "year": 2020, - }, - Object { - "locality": "11", - "month": 8, - "rate": 0.5, - "rateDenominator": 2, - "rateNumerator": 1, - "year": 2017, - }, - Object { - "locality": "5", - "month": 6, - "rate": 0.5, - "rateDenominator": 12, - "rateNumerator": 6, - "year": 2018, - }, - Object { - "locality": "9", - "month": 6, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "4", - "month": 8, - "rate": 0.7692307692307693, - "rateDenominator": 26, - "rateNumerator": 20, - "year": 2018, - }, - Object { - "locality": "3", - "month": 1, - "rate": 1, - "rateDenominator": 6, - "rateNumerator": 6, - "year": 2019, - }, - Object { - "locality": "5", - "month": 5, - "rate": 0.8571428571428571, - "rateDenominator": 7, - "rateNumerator": 6, - "year": 2019, - }, - Object { - "locality": "10", - "month": 11, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2019, - }, - Object { - "locality": "ALL", - "month": 3, - "rate": 0.5897435897435898, - "rateDenominator": 39, - "rateNumerator": 23, - "year": 2020, - }, - Object { - "locality": "12", - "month": 6, - "rate": 0, - "rateDenominator": 2, - "rateNumerator": 0, - "year": 2020, - }, - Object { - "locality": "5", - "month": 8, - "rate": 0.8, - "rateDenominator": 15, - "rateNumerator": 12, - "year": 2017, - }, - Object { - "locality": "7", - "month": 8, - "rate": 0, - "rateDenominator": 1, - "rateNumerator": 0, - "year": 2017, - }, - Object { - "locality": "3", - "month": 8, - "rate": 1, - "rateDenominator": 4, - "rateNumerator": 4, - "year": 2018, - }, - Object { - "locality": "6", - "month": 10, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2018, - }, - Object { - "locality": "10", - "month": 5, - "rate": 1, - "rateDenominator": 4, - "rateNumerator": 4, - "year": 2019, - }, - Object { - "locality": "17", - "month": 9, - "rate": 1, - "rateDenominator": 3, - "rateNumerator": 3, - "year": 2019, - }, - Object { - "locality": "5", - "month": 12, - "rate": 0.5, - "rateDenominator": 8, - "rateNumerator": 4, - "year": 2019, - }, - Object { - "locality": "11", - "month": 12, - "rate": 0, - "rateDenominator": 1, - "rateNumerator": 0, - "year": 2019, - }, - Object { - "locality": "16", - "month": 12, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "ALL", - "month": 1, - "rate": 0.7411764705882353, - "rateDenominator": 170, - "rateNumerator": 126, - "year": 2020, - }, - Object { - "locality": "ALL", - "month": 5, - "rate": 0.8275862068965517, - "rateDenominator": 145, - "rateNumerator": 120, - "year": 2020, - }, - Object { - "locality": "13", - "month": 9, - "rate": 0.6428571428571429, - "rateDenominator": 14, - "rateNumerator": 9, - "year": 2017, - }, - Object { - "locality": "9", - "month": 12, - "rate": 0.6666666666666666, - "rateDenominator": 3, - "rateNumerator": 2, - "year": 2017, - }, - Object { - "locality": "2", - "month": 5, - "rate": 1, - "rateDenominator": 4, - "rateNumerator": 4, - "year": 2018, - }, - Object { - "locality": "6", - "month": 6, - "rate": 0.8, - "rateDenominator": 5, - "rateNumerator": 4, - "year": 2018, - }, - Object { - "locality": "4", - "month": 12, - "rate": 0.6190476190476191, - "rateDenominator": 21, - "rateNumerator": 13, - "year": 2018, - }, - Object { - "locality": "15", - "month": 5, - "rate": 0, - "rateDenominator": 2, - "rateNumerator": 0, - "year": 2019, - }, - Object { - "locality": "3", - "month": 6, - "rate": 0.7857142857142857, - "rateDenominator": 14, - "rateNumerator": 11, - "year": 2019, - }, - Object { - "locality": "ALL", - "month": 2, - "rate": 0.7083333333333334, - "rateDenominator": 144, - "rateNumerator": 102, - "year": 2020, - }, - Object { - "locality": "16", - "month": 3, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2020, - }, - Object { - "locality": "8", - "month": 4, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2020, - }, - Object { - "locality": "14", - "month": 4, - "rate": 0.5, - "rateDenominator": 2, - "rateNumerator": 1, - "year": 2020, - }, - Object { - "locality": "6", - "month": 5, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2020, - }, - Object { - "locality": "5", - "month": 9, - "rate": 0.8181818181818182, - "rateDenominator": 11, - "rateNumerator": 9, - "year": 2017, - }, - Object { - "locality": "16", - "month": 9, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2017, - }, - Object { - "locality": "11", - "month": 10, - "rate": 1, - "rateDenominator": 4, - "rateNumerator": 4, - "year": 2017, - }, - Object { - "locality": "11", - "month": 9, - "rate": 0, - "rateDenominator": 1, - "rateNumerator": 0, - "year": 2018, - }, - Object { - "locality": "16", - "month": 10, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "8", - "month": 12, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "6", - "month": 1, - "rate": 0.6666666666666666, - "rateDenominator": 9, - "rateNumerator": 6, - "year": 2019, - }, - Object { - "locality": "9", - "month": 2, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "9", - "month": 6, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "16", - "month": 6, - "rate": 0, - "rateDenominator": 1, - "rateNumerator": 0, - "year": 2019, - }, - Object { - "locality": "10", - "month": 7, - "rate": 0.25, - "rateDenominator": 4, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "ALL", - "month": 10, - "rate": 0.6918238993710691, - "rateDenominator": 159, - "rateNumerator": 110, - "year": 2019, - }, - Object { - "locality": "8", - "month": 10, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "3", - "month": 12, - "rate": 0.5454545454545454, - "rateDenominator": 11, - "rateNumerator": 6, - "year": 2019, - }, - Object { - "locality": "4", - "month": 1, - "rate": 0.5909090909090909, - "rateDenominator": 22, - "rateNumerator": 13, - "year": 2020, - }, - Object { - "locality": "11", - "month": 5, - "rate": 1, - "rateDenominator": 8, - "rateNumerator": 8, - "year": 2020, - }, - Object { - "locality": "10", - "month": 5, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2020, - }, - Object { - "locality": "10", - "month": 7, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2020, - }, - Object { - "locality": "1", - "month": 11, - "rate": 0.8837209302325582, - "rateDenominator": 43, - "rateNumerator": 38, - "year": 2017, - }, - Object { - "locality": "6", - "month": 11, - "rate": 1, - "rateDenominator": 6, - "rateNumerator": 6, - "year": 2017, - }, - Object { - "locality": "1", - "month": 1, - "rate": 0.7164179104477612, - "rateDenominator": 67, - "rateNumerator": 48, - "year": 2018, - }, - Object { - "locality": "8", - "month": 7, - "rate": 0.6666666666666666, - "rateDenominator": 3, - "rateNumerator": 2, - "year": 2018, - }, - Object { - "locality": "5", - "month": 8, - "rate": 0.6, - "rateDenominator": 15, - "rateNumerator": 9, - "year": 2018, - }, - Object { - "locality": "16", - "month": 5, - "rate": 0, - "rateDenominator": 1, - "rateNumerator": 0, - "year": 2019, - }, - Object { - "locality": "EXTERNAL_UNKNOWN", - "month": 12, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2017, - }, - Object { - "locality": "6", - "month": 1, - "rate": 0.75, - "rateDenominator": 4, - "rateNumerator": 3, - "year": 2018, - }, - Object { - "locality": "12", - "month": 6, - "rate": 1, - "rateDenominator": 4, - "rateNumerator": 4, - "year": 2018, - }, - Object { - "locality": "3", - "month": 9, - "rate": 1, - "rateDenominator": 5, - "rateNumerator": 5, - "year": 2018, - }, - Object { - "locality": "11", - "month": 2, - "rate": 1, - "rateDenominator": 5, - "rateNumerator": 5, - "year": 2019, - }, - Object { - "locality": "5", - "month": 6, - "rate": 0.5, - "rateDenominator": 6, - "rateNumerator": 3, - "year": 2019, - }, - Object { - "locality": "9", - "month": 2, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2020, - }, - Object { - "locality": "17", - "month": 3, - "rate": 0, - "rateDenominator": 1, - "rateNumerator": 0, - "year": 2020, - }, - Object { - "locality": "4", - "month": 7, - "rate": 0.7083333333333334, - "rateDenominator": 24, - "rateNumerator": 17, - "year": 2018, - }, - Object { - "locality": "2", - "month": 9, - "rate": 0.8333333333333334, - "rateDenominator": 6, - "rateNumerator": 5, - "year": 2018, - }, - Object { - "locality": "5", - "month": 12, - "rate": 1, - "rateDenominator": 3, - "rateNumerator": 3, - "year": 2018, - }, - Object { - "locality": "ALL", - "month": 3, - "rate": 0.7247706422018348, - "rateDenominator": 218, - "rateNumerator": 158, - "year": 2019, - }, - Object { - "locality": "1", - "month": 5, - "rate": 0.7333333333333333, - "rateDenominator": 15, - "rateNumerator": 11, - "year": 2019, - }, - Object { - "locality": "ALL", - "month": 7, - "rate": 0.7054794520547946, - "rateDenominator": 146, - "rateNumerator": 103, - "year": 2019, - }, - Object { - "locality": "ALL", - "month": 8, - "rate": 0.7652173913043478, - "rateDenominator": 115, - "rateNumerator": 88, - "year": 2019, - }, - Object { - "locality": "10", - "month": 9, - "rate": 0.5, - "rateDenominator": 2, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "1", - "month": 10, - "rate": 0.6521739130434783, - "rateDenominator": 23, - "rateNumerator": 15, - "year": 2019, - }, - Object { - "locality": "6", - "month": 10, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2019, - }, - Object { - "locality": "3", - "month": 1, - "rate": 0.6, - "rateDenominator": 10, - "rateNumerator": 6, - "year": 2020, - }, - Object { - "locality": "12", - "month": 10, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2017, - }, - Object { - "locality": "11", - "month": 11, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2017, - }, - Object { - "locality": "5", - "month": 12, - "rate": 0.6666666666666666, - "rateDenominator": 9, - "rateNumerator": 6, - "year": 2017, - }, - Object { - "locality": "9", - "month": 2, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "12", - "month": 10, - "rate": 0.8333333333333334, - "rateDenominator": 6, - "rateNumerator": 5, - "year": 2018, - }, - Object { - "locality": "1", - "month": 12, - "rate": 0.7631578947368421, - "rateDenominator": 38, - "rateNumerator": 29, - "year": 2018, - }, - Object { - "locality": "1", - "month": 4, - "rate": 0.8666666666666667, - "rateDenominator": 15, - "rateNumerator": 13, - "year": 2020, - }, - Object { - "locality": "6", - "month": 6, - "rate": 0.3333333333333333, - "rateDenominator": 3, - "rateNumerator": 1, - "year": 2020, - }, - Object { - "locality": "1", - "month": 6, - "rate": 0.2222222222222222, - "rateDenominator": 9, - "rateNumerator": 2, - "year": 2020, - }, - Object { - "locality": "1", - "month": 12, - "rate": 0.6829268292682927, - "rateDenominator": 41, - "rateNumerator": 28, - "year": 2017, - }, - Object { - "locality": "3", - "month": 3, - "rate": 0.6363636363636364, - "rateDenominator": 11, - "rateNumerator": 7, - "year": 2018, - }, - Object { - "locality": "8", - "month": 5, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "ALL", - "month": 10, - "rate": 0.6538461538461539, - "rateDenominator": 156, - "rateNumerator": 102, - "year": 2018, - }, - Object { - "locality": "15", - "month": 3, - "rate": 0.5, - "rateDenominator": 2, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "12", - "month": 7, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "4", - "month": 2, - "rate": 0.6176470588235294, - "rateDenominator": 34, - "rateNumerator": 21, - "year": 2020, - }, - Object { - "locality": "2", - "month": 11, - "rate": 0.6666666666666666, - "rateDenominator": 3, - "rateNumerator": 2, - "year": 2017, - }, - Object { - "locality": "9", - "month": 3, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "2", - "month": 6, - "rate": 1, - "rateDenominator": 3, - "rateNumerator": 3, - "year": 2018, - }, - Object { - "locality": "9", - "month": 8, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "9", - "month": 4, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "17", - "month": 12, - "rate": 1, - "rateDenominator": 4, - "rateNumerator": 4, - "year": 2019, - }, - Object { - "locality": "2", - "month": 2, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2020, - }, - Object { - "locality": "8", - "month": 5, - "rate": 0.8333333333333334, - "rateDenominator": 6, - "rateNumerator": 5, - "year": 2020, - }, - Object { - "locality": "17", - "month": 5, - "rate": 0.8333333333333334, - "rateDenominator": 6, - "rateNumerator": 5, - "year": 2020, - }, - Object { - "locality": "10", - "month": 4, - "rate": 1, - "rateDenominator": 6, - "rateNumerator": 6, - "year": 2018, - }, - Object { - "locality": "10", - "month": 7, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "ALL", - "month": 8, - "rate": 0.7857142857142857, - "rateDenominator": 210, - "rateNumerator": 165, - "year": 2018, - }, - Object { - "locality": "13", - "month": 8, - "rate": 0.7586206896551724, - "rateDenominator": 29, - "rateNumerator": 22, - "year": 2018, - }, - Object { - "locality": "13", - "month": 1, - "rate": 0.7666666666666667, - "rateDenominator": 30, - "rateNumerator": 23, - "year": 2019, - }, - Object { - "locality": "9", - "month": 7, - "rate": 0, - "rateDenominator": 1, - "rateNumerator": 0, - "year": 2019, - }, - Object { - "locality": "12", - "month": 11, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "9", - "month": 4, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2020, - }, - Object { - "locality": "14", - "month": 5, - "rate": 0.5, - "rateDenominator": 2, - "rateNumerator": 1, - "year": 2020, - }, - Object { - "locality": "10", - "month": 9, - "rate": 0.5714285714285714, - "rateDenominator": 7, - "rateNumerator": 4, - "year": 2017, - }, - Object { - "locality": "3", - "month": 3, - "rate": 0.5714285714285714, - "rateDenominator": 7, - "rateNumerator": 4, - "year": 2019, - }, - Object { - "locality": "13", - "month": 5, - "rate": 0.6428571428571429, - "rateDenominator": 14, - "rateNumerator": 9, - "year": 2019, - }, - Object { - "locality": "13", - "month": 10, - "rate": 0.625, - "rateDenominator": 48, - "rateNumerator": 30, - "year": 2019, - }, - Object { - "locality": "3", - "month": 11, - "rate": 0.5, - "rateDenominator": 4, - "rateNumerator": 2, - "year": 2019, - }, - Object { - "locality": "2", - "month": 10, - "rate": 0.8, - "rateDenominator": 5, - "rateNumerator": 4, - "year": 2017, - }, - Object { - "locality": "8", - "month": 4, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "13", - "month": 5, - "rate": 0.7272727272727273, - "rateDenominator": 11, - "rateNumerator": 8, - "year": 2018, - }, - Object { - "locality": "13", - "month": 6, - "rate": 0.4166666666666667, - "rateDenominator": 12, - "rateNumerator": 5, - "year": 2018, - }, - Object { - "locality": "15", - "month": 6, - "rate": 0.5, - "rateDenominator": 4, - "rateNumerator": 2, - "year": 2018, - }, - Object { - "locality": "4", - "month": 1, - "rate": 0.574468085106383, - "rateDenominator": 47, - "rateNumerator": 27, - "year": 2019, - }, - Object { - "locality": "9", - "month": 3, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "1", - "month": 2, - "rate": 0.6428571428571429, - "rateDenominator": 14, - "rateNumerator": 9, - "year": 2020, - }, - Object { - "locality": "6", - "month": 9, - "rate": 1, - "rateDenominator": 4, - "rateNumerator": 4, - "year": 2017, - }, - Object { - "locality": "ALL", - "month": 11, - "rate": 0.7226277372262774, - "rateDenominator": 137, - "rateNumerator": 99, - "year": 2017, - }, - Object { - "locality": "9", - "month": 1, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2018, - }, - Object { - "locality": "6", - "month": 7, - "rate": 0.6666666666666666, - "rateDenominator": 3, - "rateNumerator": 2, - "year": 2018, - }, - Object { - "locality": "11", - "month": 7, - "rate": 1, - "rateDenominator": 4, - "rateNumerator": 4, - "year": 2018, - }, - Object { - "locality": "17", - "month": 7, - "rate": 1, - "rateDenominator": 7, - "rateNumerator": 7, - "year": 2018, - }, - Object { - "locality": "6", - "month": 8, - "rate": 0.625, - "rateDenominator": 8, - "rateNumerator": 5, - "year": 2018, - }, - Object { - "locality": "17", - "month": 9, - "rate": 0.7777777777777778, - "rateDenominator": 9, - "rateNumerator": 7, - "year": 2018, - }, - Object { - "locality": "17", - "month": 1, - "rate": 1, - "rateDenominator": 8, - "rateNumerator": 8, - "year": 2019, - }, - Object { - "locality": "16", - "month": 1, - "rate": 0.5, - "rateDenominator": 2, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "ALL", - "month": 2, - "rate": 0.7152317880794702, - "rateDenominator": 151, - "rateNumerator": 108, - "year": 2019, - }, - Object { - "locality": "6", - "month": 3, - "rate": 1, - "rateDenominator": 4, - "rateNumerator": 4, - "year": 2019, - }, - Object { - "locality": "16", - "month": 4, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "8", - "month": 5, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "9", - "month": 11, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "18", - "month": 1, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2020, - }, - Object { - "locality": "18", - "month": 3, - "rate": 0, - "rateDenominator": 1, - "rateNumerator": 0, - "year": 2020, - }, - Object { - "locality": "2", - "month": 5, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2020, - }, - Object { - "locality": "5", - "month": 7, - "rate": 0.3333333333333333, - "rateDenominator": 3, - "rateNumerator": 1, - "year": 2020, - }, - Object { - "locality": "12", - "month": 1, - "rate": 1, - "rateDenominator": 3, - "rateNumerator": 3, - "year": 2018, - }, - Object { - "locality": "5", - "month": 1, - "rate": 0.8181818181818182, - "rateDenominator": 11, - "rateNumerator": 9, - "year": 2018, - }, - Object { - "locality": "11", - "month": 2, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2018, - }, - Object { - "locality": "9", - "month": 9, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2018, - }, - Object { - "locality": "15", - "month": 12, - "rate": 0, - "rateDenominator": 2, - "rateNumerator": 0, - "year": 2018, - }, - Object { - "locality": "7", - "month": 4, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "3", - "month": 7, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "EXTERNAL_UNKNOWN", - "month": 5, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2020, - }, - Object { - "locality": "ALL", - "month": 4, - "rate": 0.7902097902097902, - "rateDenominator": 143, - "rateNumerator": 113, - "year": 2018, - }, - Object { - "locality": "11", - "month": 4, - "rate": 1, - "rateDenominator": 4, - "rateNumerator": 4, - "year": 2018, - }, - Object { - "locality": "7", - "month": 5, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "12", - "month": 9, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "13", - "month": 11, - "rate": 0.5555555555555556, - "rateDenominator": 27, - "rateNumerator": 15, - "year": 2018, - }, - Object { - "locality": "2", - "month": 11, - "rate": 0.625, - "rateDenominator": 8, - "rateNumerator": 5, - "year": 2018, - }, - Object { - "locality": "8", - "month": 3, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2019, - }, - Object { - "locality": "1", - "month": 12, - "rate": 0.8333333333333334, - "rateDenominator": 12, - "rateNumerator": 10, - "year": 2019, - }, - Object { - "locality": "3", - "month": 4, - "rate": 0.4, - "rateDenominator": 5, - "rateNumerator": 2, - "year": 2020, - }, - Object { - "locality": "10", - "month": 4, - "rate": 0.5714285714285714, - "rateDenominator": 7, - "rateNumerator": 4, - "year": 2020, - }, - Object { - "locality": "11", - "month": 7, - "rate": 0.5, - "rateDenominator": 2, - "rateNumerator": 1, - "year": 2020, - }, - Object { - "locality": "7", - "month": 1, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "17", - "month": 1, - "rate": 1, - "rateDenominator": 11, - "rateNumerator": 11, - "year": 2018, - }, - Object { - "locality": "6", - "month": 2, - "rate": 1, - "rateDenominator": 6, - "rateNumerator": 6, - "year": 2018, - }, - Object { - "locality": "7", - "month": 3, - "rate": 0, - "rateDenominator": 1, - "rateNumerator": 0, - "year": 2018, - }, - Object { - "locality": "12", - "month": 3, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "3", - "month": 7, - "rate": 1, - "rateDenominator": 14, - "rateNumerator": 14, - "year": 2018, - }, - Object { - "locality": "16", - "month": 8, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2018, - }, - Object { - "locality": "5", - "month": 1, - "rate": 0.7692307692307693, - "rateDenominator": 13, - "rateNumerator": 10, - "year": 2019, - }, - Object { - "locality": "15", - "month": 7, - "rate": 0.6666666666666666, - "rateDenominator": 3, - "rateNumerator": 2, - "year": 2019, - }, - Object { - "locality": "6", - "month": 9, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "2", - "month": 10, - "rate": 0.8, - "rateDenominator": 10, - "rateNumerator": 8, - "year": 2019, - }, - Object { - "locality": "10", - "month": 10, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "1", - "month": 1, - "rate": 0.8571428571428571, - "rateDenominator": 7, - "rateNumerator": 6, - "year": 2020, - }, - Object { - "locality": "4", - "month": 5, - "rate": 0.875, - "rateDenominator": 24, - "rateNumerator": 21, - "year": 2020, - }, - Object { - "locality": "8", - "month": 6, - "rate": 0, - "rateDenominator": 1, - "rateNumerator": 0, - "year": 2020, - }, - Object { - "locality": "12", - "month": 12, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2017, - }, - Object { - "locality": "8", - "month": 1, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2018, - }, - Object { - "locality": "3", - "month": 2, - "rate": 0.6666666666666666, - "rateDenominator": 3, - "rateNumerator": 2, - "year": 2018, - }, - Object { - "locality": "6", - "month": 9, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2018, - }, - Object { - "locality": "2", - "month": 5, - "rate": 0.6, - "rateDenominator": 5, - "rateNumerator": 3, - "year": 2019, - }, - Object { - "locality": "16", - "month": 7, - "rate": 0, - "rateDenominator": 1, - "rateNumerator": 0, - "year": 2019, - }, - Object { - "locality": "3", - "month": 8, - "rate": 0.9230769230769231, - "rateDenominator": 13, - "rateNumerator": 12, - "year": 2019, - }, - Object { - "locality": "7", - "month": 9, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "13", - "month": 1, - "rate": 0.7272727272727273, - "rateDenominator": 22, - "rateNumerator": 16, - "year": 2020, - }, - Object { - "locality": "8", - "month": 2, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2020, - }, - Object { - "locality": "13", - "month": 4, - "rate": 0.65, - "rateDenominator": 20, - "rateNumerator": 13, - "year": 2020, - }, - Object { - "locality": "5", - "month": 11, - "rate": 0.7142857142857143, - "rateDenominator": 7, - "rateNumerator": 5, - "year": 2017, - }, - Object { - "locality": "1", - "month": 3, - "rate": 0.8032786885245902, - "rateDenominator": 61, - "rateNumerator": 49, - "year": 2018, - }, - Object { - "locality": "4", - "month": 4, - "rate": 0.7857142857142857, - "rateDenominator": 42, - "rateNumerator": 33, - "year": 2018, - }, - Object { - "locality": "10", - "month": 8, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2018, - }, - Object { - "locality": "ALL", - "month": 1, - "rate": 0.7379310344827587, - "rateDenominator": 145, - "rateNumerator": 107, - "year": 2019, - }, - Object { - "locality": "17", - "month": 3, - "rate": 0.75, - "rateDenominator": 4, - "rateNumerator": 3, - "year": 2019, - }, - Object { - "locality": "2", - "month": 1, - "rate": 0.75, - "rateDenominator": 4, - "rateNumerator": 3, - "year": 2020, - }, - Object { - "locality": "4", - "month": 4, - "rate": 0.9473684210526315, - "rateDenominator": 19, - "rateNumerator": 18, - "year": 2020, - }, - Object { - "locality": "12", - "month": 8, - "rate": 0.5, - "rateDenominator": 2, - "rateNumerator": 1, - "year": 2017, - }, - Object { - "locality": "5", - "month": 10, - "rate": 0.6666666666666666, - "rateDenominator": 9, - "rateNumerator": 6, - "year": 2017, - }, - Object { - "locality": "7", - "month": 10, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2017, - }, - Object { - "locality": "4", - "month": 3, - "rate": 0.6428571428571429, - "rateDenominator": 14, - "rateNumerator": 9, - "year": 2018, - }, - Object { - "locality": "5", - "month": 11, - "rate": 0.8, - "rateDenominator": 5, - "rateNumerator": 4, - "year": 2018, - }, - Object { - "locality": "15", - "month": 11, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2018, - }, - Object { - "locality": "10", - "month": 2, - "rate": 0.5, - "rateDenominator": 2, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "10", - "month": 4, - "rate": 1, - "rateDenominator": 3, - "rateNumerator": 3, - "year": 2019, - }, - Object { - "locality": "1", - "month": 7, - "rate": 0.5789473684210527, - "rateDenominator": 19, - "rateNumerator": 11, - "year": 2019, - }, - Object { - "locality": "8", - "month": 11, - "rate": 1, - "rateDenominator": 3, - "rateNumerator": 3, - "year": 2019, - }, - Object { - "locality": "13", - "month": 12, - "rate": 0.7058823529411765, - "rateDenominator": 34, - "rateNumerator": 24, - "year": 2019, - }, - Object { - "locality": "EXTERNAL_UNKNOWN", - "month": 4, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2020, - }, - Object { - "locality": "15", - "month": 5, - "rate": 0, - "rateDenominator": 1, - "rateNumerator": 0, - "year": 2020, - }, - Object { - "locality": "3", - "month": 10, - "rate": 0.7, - "rateDenominator": 10, - "rateNumerator": 7, - "year": 2017, - }, - Object { - "locality": "8", - "month": 11, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2017, - }, - Object { - "locality": "9", - "month": 10, - "rate": 0.3333333333333333, - "rateDenominator": 3, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "9", - "month": 1, - "rate": 1, - "rateDenominator": 3, - "rateNumerator": 3, - "year": 2019, - }, - Object { - "locality": "13", - "month": 4, - "rate": 0.5714285714285714, - "rateDenominator": 28, - "rateNumerator": 16, - "year": 2019, - }, - Object { - "locality": "15", - "month": 4, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2019, - }, - Object { - "locality": "ALL", - "month": 5, - "rate": 0.725, - "rateDenominator": 80, - "rateNumerator": 58, - "year": 2019, - }, - Object { - "locality": "7", - "month": 5, - "rate": 0, - "rateDenominator": 1, - "rateNumerator": 0, - "year": 2019, - }, - Object { - "locality": "2", - "month": 9, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2019, - }, - Object { - "locality": "5", - "month": 3, - "rate": 0.6666666666666666, - "rateDenominator": 3, - "rateNumerator": 2, - "year": 2020, - }, - Object { - "locality": "2", - "month": 4, - "rate": 0.8333333333333334, - "rateDenominator": 6, - "rateNumerator": 5, - "year": 2020, - }, - Object { - "locality": "4", - "month": 11, - "rate": 0.5625, - "rateDenominator": 32, - "rateNumerator": 18, - "year": 2017, - }, - Object { - "locality": "17", - "month": 4, - "rate": 1, - "rateDenominator": 5, - "rateNumerator": 5, - "year": 2018, - }, - Object { - "locality": "12", - "month": 8, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "8", - "month": 9, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "8", - "month": 11, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "9", - "month": 12, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "4", - "month": 2, - "rate": 0.6190476190476191, - "rateDenominator": 21, - "rateNumerator": 13, - "year": 2019, - }, - Object { - "locality": "5", - "month": 4, - "rate": 0.9230769230769231, - "rateDenominator": 13, - "rateNumerator": 12, - "year": 2019, - }, - Object { - "locality": "4", - "month": 8, - "rate": 0.6923076923076923, - "rateDenominator": 13, - "rateNumerator": 9, - "year": 2019, - }, - Object { - "locality": "6", - "month": 11, - "rate": 0.6, - "rateDenominator": 5, - "rateNumerator": 3, - "year": 2019, - }, - Object { - "locality": "16", - "month": 1, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2020, - }, - Object { - "locality": "12", - "month": 2, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2020, - }, - Object { - "locality": "9", - "month": 8, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2017, - }, - Object { - "locality": "4", - "month": 9, - "rate": 0.6923076923076923, - "rateDenominator": 26, - "rateNumerator": 18, - "year": 2017, - }, - Object { - "locality": "9", - "month": 11, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2017, - }, - Object { - "locality": "17", - "month": 12, - "rate": 1, - "rateDenominator": 4, - "rateNumerator": 4, - "year": 2017, - }, - Object { - "locality": "5", - "month": 7, - "rate": 0.6666666666666666, - "rateDenominator": 12, - "rateNumerator": 8, - "year": 2018, - }, - Object { - "locality": "10", - "month": 9, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2018, - }, - Object { - "locality": "17", - "month": 12, - "rate": 0.5, - "rateDenominator": 2, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "1", - "month": 1, - "rate": 0.7272727272727273, - "rateDenominator": 33, - "rateNumerator": 24, - "year": 2019, - }, - Object { - "locality": "4", - "month": 3, - "rate": 0.7346938775510204, - "rateDenominator": 49, - "rateNumerator": 36, - "year": 2019, - }, - Object { - "locality": "13", - "month": 9, - "rate": 0.6346153846153846, - "rateDenominator": 52, - "rateNumerator": 33, - "year": 2019, - }, - Object { - "locality": "18", - "month": 12, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "9", - "month": 6, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2020, - }, - Object { - "locality": "4", - "month": 7, - "rate": 0.2, - "rateDenominator": 5, - "rateNumerator": 1, - "year": 2020, - }, - Object { - "locality": "1", - "month": 8, - "rate": 0.7291666666666666, - "rateDenominator": 48, - "rateNumerator": 35, - "year": 2017, - }, - Object { - "locality": "8", - "month": 8, - "rate": 0.5, - "rateDenominator": 2, - "rateNumerator": 1, - "year": 2017, - }, - Object { - "locality": "16", - "month": 12, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2017, - }, - Object { - "locality": "8", - "month": 2, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "2", - "month": 3, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "13", - "month": 7, - "rate": 0.5384615384615384, - "rateDenominator": 13, - "rateNumerator": 7, - "year": 2018, - }, - Object { - "locality": "1", - "month": 10, - "rate": 0.5333333333333333, - "rateDenominator": 30, - "rateNumerator": 16, - "year": 2018, - }, - Object { - "locality": "17", - "month": 11, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "12", - "month": 12, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2018, - }, - Object { - "locality": "5", - "month": 3, - "rate": 0.9166666666666666, - "rateDenominator": 12, - "rateNumerator": 11, - "year": 2019, - }, - Object { - "locality": "12", - "month": 9, - "rate": 0.5, - "rateDenominator": 2, - "rateNumerator": 1, - "year": 2019, - }, - Object { - "locality": "17", - "month": 8, - "rate": 1, - "rateDenominator": 4, - "rateNumerator": 4, - "year": 2017, - }, - Object { - "locality": "4", - "month": 9, - "rate": 0.6470588235294118, - "rateDenominator": 17, - "rateNumerator": 11, - "year": 2018, - }, - Object { - "locality": "1", - "month": 11, - "rate": 0.7380952380952381, - "rateDenominator": 42, - "rateNumerator": 31, - "year": 2018, - }, - Object { - "locality": "2", - "month": 2, - "rate": 1, - "rateDenominator": 2, - "rateNumerator": 2, - "year": 2019, - }, - Object { - "locality": "11", - "month": 4, - "rate": 0.75, - "rateDenominator": 4, - "rateNumerator": 3, - "year": 2019, - }, - Object { - "locality": "2", - "month": 6, - "rate": 0.8571428571428571, - "rateDenominator": 7, - "rateNumerator": 6, - "year": 2019, - }, - Object { - "locality": "12", - "month": 8, - "rate": 0.8, - "rateDenominator": 5, - "rateNumerator": 4, - "year": 2019, - }, - Object { - "locality": "10", - "month": 3, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2020, - }, - Object { - "locality": "8", - "month": 7, - "rate": 1, - "rateDenominator": 1, - "rateNumerator": 1, - "year": 2020, - }, -] -`; - -exports[`data fetching for metric PrisonAdmissionReasonsCurrent 1`] = ` -Array [ - Object { - "ageBucket": "ALL", - "category": "newAdmission", - "count": 427, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "paroleRevoked", - "count": 309, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "probationRevoked", - "count": 245, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "other", - "count": 481, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "category": "newAdmission", - "count": 150, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "category": "paroleRevoked", - "count": 76, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "category": "probationRevoked", - "count": 96, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "category": "other", - "count": 133, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "category": "newAdmission", - "count": 91, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "category": "paroleRevoked", - "count": 142, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "category": "probationRevoked", - "count": 72, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "category": "other", - "count": 126, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "category": "newAdmission", - "count": 25, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "category": "paroleRevoked", - "count": 48, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "category": "probationRevoked", - "count": 43, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "category": "other", - "count": 31, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "category": "newAdmission", - "count": 36, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "category": "paroleRevoked", - "count": 32, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "category": "probationRevoked", - "count": 19, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "category": "other", - "count": 23, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "category": "newAdmission", - "count": 104, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "category": "paroleRevoked", - "count": 67, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "category": "probationRevoked", - "count": 93, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "category": "other", - "count": 53, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "newAdmission", - "count": 125, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "category": "paroleRevoked", - "count": 91, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "category": "probationRevoked", - "count": 141, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "category": "other", - "count": 72, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "category": "newAdmission", - "count": 83, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "category": "paroleRevoked", - "count": 93, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "category": "probationRevoked", - "count": 48, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "category": "other", - "count": 60, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "category": "newAdmission", - "count": 5, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "category": "paroleRevoked", - "count": 4, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "category": "probationRevoked", - "count": 6, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "category": "other", - "count": 7, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "category": "newAdmission", - "count": 93, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "category": "paroleRevoked", - "count": 68, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "category": "probationRevoked", - "count": 105, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "category": "other", - "count": 54, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "category": "newAdmission", - "count": 68, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "category": "paroleRevoked", - "count": 119, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "category": "probationRevoked", - "count": 86, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "category": "other", - "count": 134, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "category": "newAdmission", - "count": 66, - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "paroleRevoked", - "count": 38, - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "probationRevoked", - "count": 48, - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "other", - "count": 74, - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "newAdmission", - "count": 407, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "paroleRevoked", - "count": 261, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "probationRevoked", - "count": 207, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "other", - "count": 361, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, -] -`; - -exports[`data fetching for metric PrisonPopulationCurrent 1`] = ` -Array [ - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "TRC", - "population": 7, - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "FTPFAR", - "population": 1, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "EXTERNAL_UNKNOWN", - "gender": "ALL", - "locality": "JRCC", - "population": 1, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "MTPMND", - "population": 3, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "FTPMND", - "population": 0, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "GFC", - "population": 0, - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "LRRP", - "population": 1, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "NDSP", - "population": 82, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "GFC", - "population": 3, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "GFC", - "population": 7, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "TRC", - "population": 2, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "ALL", - "population": 123, - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "BTC", - "population": 21, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "FTPMND", - "population": 1, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "GFC", - "population": 1, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "JRCC", - "population": 74, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "MTPMND", - "population": 5, - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "FTPFAR", - "population": 3, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "FTPMND", - "population": 5, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "EXTERNAL_UNKNOWN", - "locality": "BTC", - "population": 1, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "DWCRC", - "population": 6, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "MTPMND", - "population": 1, - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "MTPMND", - "population": 0, - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "ALL", - "population": 67, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "MRCC", - "population": 49, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "BTC", - "population": 7, - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "DWCRC", - "population": 111, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "FTPMND", - "population": 1, - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "GFC", - "population": 1, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "EXTERNAL_UNKNOWN", - "gender": "ALL", - "locality": "MRCC", - "population": 0, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "EXTERNAL_UNKNOWN", - "locality": "ALL", - "population": 7, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "DWCRC", - "population": 9, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "JRCC", - "population": 170, - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "DWCRC", - "population": 2, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "FTPMND", - "population": 0, - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "JRCC", - "population": 0, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "TRC", - "population": 10, - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "MRCC", - "population": 2, - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "GFC", - "population": 0, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "EXTERNAL_UNKNOWN", - "locality": "MRCC", - "population": 0, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "BTC", - "population": 15, - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "DWCRC", - "population": 33, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "FTPFAR", - "population": 5, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "FTPMND", - "population": 2, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "ALL", - "population": 96, - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "BTC", - "population": 31, - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "GFC", - "population": 3, - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "LRRP", - "population": 0, - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "MTPFAR", - "population": 2, - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "NDSP", - "population": 89, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "GFC", - "population": 2, - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "MTPMND", - "population": 7, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "EXTERNAL_UNKNOWN", - "gender": "ALL", - "locality": "BTC", - "population": 0, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "MTPFAR", - "population": 5, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "MTPMND", - "population": 2, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "ALL", - "population": 661, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "BTC", - "population": 8, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "BTC", - "population": 5, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NDSP", - "population": 124, - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NDSP", - "population": 299, - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NDSP", - "population": 71, - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "TRC", - "population": 11, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "BTC", - "population": 13, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "FTPFAR", - "population": 1, - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "gender": "EXTERNAL_UNKNOWN", - "locality": "JRCC", - "population": 2, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "JRCC", - "population": 5, - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NDSP", - "population": 99, - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "MTPFAR", - "population": 5, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "GFC", - "population": 9, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "EXTERNAL_UNKNOWN", - "locality": "NDSP", - "population": 0, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "DWCRC", - "population": 9, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "MRCC", - "population": 17, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "MRCC", - "population": 77, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "MTPFAR", - "population": 2, - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "MTPMND", - "population": 2, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "TRC", - "population": 5, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "FTPFAR", - "population": 16, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "MTPFAR", - "population": 7, - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "MRCC", - "population": 1, - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "FTPMND", - "population": 0, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "ALL", - "population": 244, - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "BTC", - "population": 16, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "NDSP", - "population": 236, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "DWCRC", - "population": 71, - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "JRCC", - "population": 257, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "JRCC", - "population": 88, - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "EXTERNAL_UNKNOWN", - "gender": "ALL", - "locality": "NDSP", - "population": 1, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "ALL", - "population": 242, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "EXTERNAL_UNKNOWN", - "gender": "ALL", - "locality": "ALL", - "population": 6, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "MTPFAR", - "population": 1, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "MTPMND", - "population": 8, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "MRCC", - "population": 18, - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "NDSP", - "population": 58, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "TRC", - "population": 1, - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "ALL", - "population": 266, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "BTC", - "population": 1, - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "FTPFAR", - "population": 9, - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "JRCC", - "population": 31, - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "MTPMND", - "population": 2, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "MTPFAR", - "population": 2, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "TRC", - "population": 1, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "TRC", - "population": 17, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "FTPMND", - "population": 3, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "ALL", - "population": 2041, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "ALL", - "population": 12, - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "DWCRC", - "population": 89, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "MRCC", - "population": 58, - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "MTPFAR", - "population": 9, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "BTC", - "population": 2, - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "FTPFAR", - "population": 7, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "JRCC", - "population": 70, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "MRCC", - "population": 142, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "NDSP", - "population": 850, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "FTPMND", - "population": 1, - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "JRCC", - "population": 30, - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "MRCC", - "population": 15, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "MRCC", - "population": 26, - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "NDSP", - "population": 1, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "DWCRC", - "population": 25, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "JRCC", - "population": 278, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "BTC", - "population": 73, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "GFC", - "population": 3, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "LRRP", - "population": 1, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "MTPFAR", - "population": 4, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "DWCRC", - "population": 18, - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "MRCC", - "population": 8, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "TRC", - "population": 0, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "ALL", - "population": 284, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "BTC", - "population": 16, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "FTPFAR", - "population": 3, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "FTPFAR", - "population": 1, - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "GFC", - "population": 6, - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "LRRP", - "population": 1, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "BTC", - "population": 10, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "DWCRC", - "population": 2, - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NDSP", - "population": 10, - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "TRC", - "population": 3, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "ALL", - "population": 146, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "ALL", - "population": 671, - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "DWCRC", - "population": 1, - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "JRCC", - "population": 47, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "JRCC", - "population": 57, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "MRCC", - "population": 25, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "NDSP", - "population": 160, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "JRCC", - "population": 188, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "ALL", - "population": 134, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "DWCRC", - "population": 3, - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "FTPFAR", - "population": 9, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NDSP", - "population": 413, - "raceOrEthnicity": "ALL", - }, -] -`; - -exports[`data fetching for metric PrisonPopulationHistorical 1`] = ` -Array [ - Object { - "ageBucket": "ALL", - "count": 961, - "date": "2000-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 33, - "date": "2000-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 329, - "date": "2000-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 162, - "date": "2000-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 292, - "date": "2000-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 146, - "date": "2000-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 30, - "date": "2000-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 47, - "date": "2000-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 61, - "date": "2000-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 427, - "date": "2000-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 396, - "date": "2000-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 476, - "date": "2000-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 485, - "date": "2000-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 957, - "date": "2000-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 33, - "date": "2000-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 327, - "date": "2000-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 161, - "date": "2000-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 290, - "date": "2000-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 145, - "date": "2000-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 30, - "date": "2000-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 47, - "date": "2000-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 60, - "date": "2000-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 425, - "date": "2000-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 394, - "date": "2000-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 474, - "date": "2000-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 483, - "date": "2000-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 997, - "date": "2000-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 34, - "date": "2000-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 341, - "date": "2000-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 168, - "date": "2000-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 303, - "date": "2000-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 152, - "date": "2000-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 31, - "date": "2000-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 49, - "date": "2000-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 63, - "date": "2000-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 443, - "date": "2000-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 411, - "date": "2000-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 494, - "date": "2000-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 503, - "date": "2000-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 989, - "date": "2000-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 34, - "date": "2000-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 338, - "date": "2000-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 167, - "date": "2000-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 300, - "date": "2000-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 150, - "date": "2000-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 31, - "date": "2000-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 49, - "date": "2000-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 62, - "date": "2000-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 439, - "date": "2000-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 408, - "date": "2000-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 490, - "date": "2000-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 499, - "date": "2000-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 994, - "date": "2000-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 34, - "date": "2000-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 340, - "date": "2000-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 167, - "date": "2000-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 302, - "date": "2000-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 151, - "date": "2000-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 31, - "date": "2000-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 49, - "date": "2000-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 63, - "date": "2000-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 441, - "date": "2000-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 410, - "date": "2000-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 492, - "date": "2000-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 502, - "date": "2000-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1042, - "date": "2000-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 35, - "date": "2000-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 356, - "date": "2000-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 176, - "date": "2000-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 316, - "date": "2000-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 158, - "date": "2000-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 33, - "date": "2000-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 51, - "date": "2000-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 66, - "date": "2000-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 462, - "date": "2000-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 430, - "date": "2000-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 516, - "date": "2000-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 526, - "date": "2000-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1033, - "date": "2000-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 35, - "date": "2000-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 353, - "date": "2000-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 174, - "date": "2000-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 313, - "date": "2000-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 157, - "date": "2000-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 33, - "date": "2000-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 51, - "date": "2000-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 65, - "date": "2000-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 458, - "date": "2000-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 426, - "date": "2000-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 511, - "date": "2000-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 522, - "date": "2000-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1032, - "date": "2000-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 35, - "date": "2000-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 353, - "date": "2000-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 174, - "date": "2000-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 313, - "date": "2000-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 157, - "date": "2000-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 33, - "date": "2000-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 51, - "date": "2000-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 65, - "date": "2000-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 458, - "date": "2000-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 425, - "date": "2000-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 511, - "date": "2000-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 521, - "date": "2000-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1065, - "date": "2000-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 36, - "date": "2000-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 364, - "date": "2000-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 179, - "date": "2000-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 323, - "date": "2000-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 162, - "date": "2000-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 34, - "date": "2000-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 53, - "date": "2000-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 67, - "date": "2000-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 473, - "date": "2000-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 439, - "date": "2000-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 527, - "date": "2000-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 538, - "date": "2000-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1074, - "date": "2000-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 37, - "date": "2000-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 367, - "date": "2000-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 181, - "date": "2000-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 326, - "date": "2000-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 163, - "date": "2000-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 34, - "date": "2000-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 53, - "date": "2000-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 68, - "date": "2000-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 477, - "date": "2000-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 443, - "date": "2000-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 532, - "date": "2000-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 542, - "date": "2000-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1069, - "date": "2000-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 36, - "date": "2000-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 366, - "date": "2000-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 180, - "date": "2000-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 324, - "date": "2000-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 162, - "date": "2000-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 34, - "date": "2000-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 53, - "date": "2000-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 67, - "date": "2000-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 474, - "date": "2000-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 441, - "date": "2000-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 529, - "date": "2000-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 540, - "date": "2000-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1062, - "date": "2000-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 36, - "date": "2000-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 363, - "date": "2000-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 179, - "date": "2000-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 322, - "date": "2000-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 161, - "date": "2000-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 34, - "date": "2000-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 52, - "date": "2000-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 67, - "date": "2000-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 471, - "date": "2000-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 438, - "date": "2000-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 526, - "date": "2000-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 536, - "date": "2000-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1082, - "date": "2001-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 37, - "date": "2001-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 370, - "date": "2001-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 182, - "date": "2001-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 328, - "date": "2001-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 164, - "date": "2001-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 34, - "date": "2001-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 53, - "date": "2001-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 68, - "date": "2001-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 480, - "date": "2001-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 446, - "date": "2001-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 536, - "date": "2001-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 546, - "date": "2001-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1102, - "date": "2001-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 38, - "date": "2001-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 377, - "date": "2001-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 186, - "date": "2001-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 334, - "date": "2001-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 167, - "date": "2001-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 35, - "date": "2001-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 54, - "date": "2001-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 69, - "date": "2001-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 489, - "date": "2001-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 454, - "date": "2001-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 546, - "date": "2001-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 556, - "date": "2001-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1145, - "date": "2001-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 39, - "date": "2001-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 392, - "date": "2001-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 193, - "date": "2001-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 347, - "date": "2001-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 174, - "date": "2001-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 36, - "date": "2001-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 57, - "date": "2001-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 72, - "date": "2001-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 508, - "date": "2001-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 472, - "date": "2001-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 567, - "date": "2001-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 578, - "date": "2001-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1092, - "date": "2001-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 37, - "date": "2001-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 374, - "date": "2001-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 184, - "date": "2001-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 331, - "date": "2001-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 166, - "date": "2001-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 34, - "date": "2001-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 54, - "date": "2001-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 69, - "date": "2001-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 485, - "date": "2001-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 450, - "date": "2001-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 541, - "date": "2001-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 551, - "date": "2001-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1145, - "date": "2001-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 39, - "date": "2001-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 392, - "date": "2001-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 193, - "date": "2001-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 347, - "date": "2001-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 174, - "date": "2001-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 36, - "date": "2001-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 57, - "date": "2001-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 72, - "date": "2001-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 508, - "date": "2001-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 472, - "date": "2001-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 567, - "date": "2001-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 578, - "date": "2001-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1104, - "date": "2001-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 38, - "date": "2001-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 378, - "date": "2001-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 186, - "date": "2001-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 335, - "date": "2001-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 168, - "date": "2001-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 35, - "date": "2001-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 55, - "date": "2001-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 70, - "date": "2001-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 490, - "date": "2001-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 455, - "date": "2001-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 547, - "date": "2001-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 557, - "date": "2001-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1079, - "date": "2001-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 37, - "date": "2001-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 369, - "date": "2001-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 182, - "date": "2001-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 327, - "date": "2001-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 164, - "date": "2001-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 34, - "date": "2001-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 53, - "date": "2001-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 68, - "date": "2001-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 479, - "date": "2001-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 445, - "date": "2001-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 534, - "date": "2001-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 545, - "date": "2001-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1086, - "date": "2001-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 37, - "date": "2001-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 371, - "date": "2001-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 183, - "date": "2001-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 330, - "date": "2001-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 165, - "date": "2001-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 34, - "date": "2001-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 54, - "date": "2001-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 68, - "date": "2001-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 482, - "date": "2001-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 448, - "date": "2001-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 538, - "date": "2001-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 548, - "date": "2001-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1113, - "date": "2001-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 38, - "date": "2001-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 381, - "date": "2001-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 188, - "date": "2001-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 338, - "date": "2001-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 169, - "date": "2001-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 35, - "date": "2001-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 55, - "date": "2001-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 70, - "date": "2001-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 494, - "date": "2001-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 459, - "date": "2001-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 551, - "date": "2001-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 562, - "date": "2001-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1147, - "date": "2001-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 39, - "date": "2001-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 392, - "date": "2001-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 193, - "date": "2001-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 348, - "date": "2001-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 174, - "date": "2001-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 36, - "date": "2001-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 57, - "date": "2001-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 72, - "date": "2001-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 509, - "date": "2001-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 473, - "date": "2001-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 568, - "date": "2001-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 579, - "date": "2001-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1148, - "date": "2001-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 39, - "date": "2001-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 393, - "date": "2001-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 193, - "date": "2001-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 348, - "date": "2001-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 174, - "date": "2001-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 36, - "date": "2001-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 57, - "date": "2001-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 72, - "date": "2001-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 510, - "date": "2001-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 473, - "date": "2001-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 568, - "date": "2001-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 580, - "date": "2001-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1142, - "date": "2001-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 39, - "date": "2001-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 391, - "date": "2001-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 192, - "date": "2001-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 347, - "date": "2001-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 174, - "date": "2001-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 36, - "date": "2001-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 56, - "date": "2001-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 72, - "date": "2001-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 507, - "date": "2001-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 471, - "date": "2001-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 565, - "date": "2001-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 577, - "date": "2001-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1123, - "date": "2002-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 38, - "date": "2002-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 384, - "date": "2002-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 189, - "date": "2002-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 341, - "date": "2002-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 171, - "date": "2002-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 35, - "date": "2002-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 55, - "date": "2002-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 71, - "date": "2002-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 498, - "date": "2002-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 463, - "date": "2002-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 556, - "date": "2002-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 567, - "date": "2002-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1198, - "date": "2002-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 41, - "date": "2002-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 410, - "date": "2002-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 202, - "date": "2002-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 364, - "date": "2002-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 182, - "date": "2002-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 38, - "date": "2002-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 59, - "date": "2002-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 75, - "date": "2002-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 532, - "date": "2002-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 494, - "date": "2002-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 593, - "date": "2002-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 605, - "date": "2002-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1145, - "date": "2002-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 39, - "date": "2002-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 392, - "date": "2002-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 193, - "date": "2002-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 347, - "date": "2002-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 174, - "date": "2002-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 36, - "date": "2002-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 57, - "date": "2002-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 72, - "date": "2002-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 508, - "date": "2002-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 472, - "date": "2002-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 567, - "date": "2002-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 578, - "date": "2002-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1174, - "date": "2002-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 40, - "date": "2002-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 402, - "date": "2002-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 198, - "date": "2002-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 356, - "date": "2002-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 178, - "date": "2002-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 37, - "date": "2002-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 58, - "date": "2002-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 74, - "date": "2002-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 521, - "date": "2002-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 484, - "date": "2002-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 581, - "date": "2002-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 593, - "date": "2002-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1223, - "date": "2002-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 42, - "date": "2002-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 418, - "date": "2002-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 206, - "date": "2002-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 371, - "date": "2002-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 186, - "date": "2002-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 39, - "date": "2002-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 60, - "date": "2002-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 77, - "date": "2002-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 543, - "date": "2002-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 504, - "date": "2002-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 606, - "date": "2002-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 617, - "date": "2002-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1223, - "date": "2002-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 42, - "date": "2002-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 418, - "date": "2002-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 206, - "date": "2002-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 371, - "date": "2002-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 186, - "date": "2002-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 39, - "date": "2002-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 60, - "date": "2002-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 77, - "date": "2002-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 543, - "date": "2002-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 504, - "date": "2002-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 606, - "date": "2002-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 617, - "date": "2002-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1160, - "date": "2002-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 39, - "date": "2002-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 397, - "date": "2002-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 195, - "date": "2002-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 352, - "date": "2002-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 176, - "date": "2002-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 37, - "date": "2002-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 57, - "date": "2002-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 73, - "date": "2002-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 515, - "date": "2002-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 478, - "date": "2002-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 574, - "date": "2002-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 586, - "date": "2002-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1164, - "date": "2002-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 40, - "date": "2002-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 398, - "date": "2002-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 196, - "date": "2002-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 353, - "date": "2002-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 177, - "date": "2002-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 37, - "date": "2002-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 58, - "date": "2002-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 73, - "date": "2002-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 517, - "date": "2002-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 480, - "date": "2002-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 576, - "date": "2002-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 588, - "date": "2002-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1140, - "date": "2002-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 39, - "date": "2002-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 390, - "date": "2002-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 192, - "date": "2002-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 346, - "date": "2002-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 173, - "date": "2002-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 36, - "date": "2002-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 56, - "date": "2002-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 72, - "date": "2002-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 506, - "date": "2002-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 470, - "date": "2002-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 564, - "date": "2002-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 576, - "date": "2002-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1163, - "date": "2002-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 40, - "date": "2002-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 398, - "date": "2002-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 196, - "date": "2002-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 353, - "date": "2002-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 177, - "date": "2002-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 37, - "date": "2002-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 57, - "date": "2002-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 73, - "date": "2002-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 516, - "date": "2002-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 479, - "date": "2002-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 576, - "date": "2002-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 587, - "date": "2002-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1118, - "date": "2002-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 38, - "date": "2002-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 382, - "date": "2002-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 188, - "date": "2002-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 339, - "date": "2002-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 170, - "date": "2002-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 35, - "date": "2002-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 55, - "date": "2002-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 70, - "date": "2002-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 496, - "date": "2002-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 461, - "date": "2002-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 554, - "date": "2002-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 564, - "date": "2002-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1172, - "date": "2002-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 40, - "date": "2002-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 401, - "date": "2002-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 197, - "date": "2002-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 356, - "date": "2002-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 178, - "date": "2002-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 37, - "date": "2002-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 58, - "date": "2002-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 74, - "date": "2002-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 520, - "date": "2002-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 483, - "date": "2002-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 580, - "date": "2002-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 592, - "date": "2002-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1178, - "date": "2003-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 40, - "date": "2003-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 403, - "date": "2003-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 198, - "date": "2003-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 357, - "date": "2003-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 179, - "date": "2003-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 37, - "date": "2003-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 58, - "date": "2003-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 74, - "date": "2003-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 523, - "date": "2003-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 486, - "date": "2003-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 583, - "date": "2003-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 595, - "date": "2003-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1203, - "date": "2003-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 41, - "date": "2003-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 412, - "date": "2003-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 203, - "date": "2003-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 365, - "date": "2003-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 183, - "date": "2003-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 38, - "date": "2003-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 59, - "date": "2003-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 76, - "date": "2003-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 534, - "date": "2003-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 496, - "date": "2003-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 596, - "date": "2003-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 607, - "date": "2003-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1176, - "date": "2003-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 40, - "date": "2003-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 402, - "date": "2003-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 198, - "date": "2003-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 357, - "date": "2003-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 179, - "date": "2003-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 37, - "date": "2003-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 58, - "date": "2003-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 74, - "date": "2003-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 522, - "date": "2003-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 485, - "date": "2003-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 582, - "date": "2003-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 594, - "date": "2003-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1177, - "date": "2003-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 40, - "date": "2003-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 403, - "date": "2003-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 198, - "date": "2003-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 357, - "date": "2003-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 179, - "date": "2003-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 37, - "date": "2003-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 58, - "date": "2003-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 74, - "date": "2003-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 522, - "date": "2003-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 485, - "date": "2003-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 583, - "date": "2003-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 594, - "date": "2003-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1203, - "date": "2003-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 41, - "date": "2003-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 412, - "date": "2003-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 203, - "date": "2003-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 365, - "date": "2003-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 183, - "date": "2003-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 38, - "date": "2003-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 59, - "date": "2003-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 76, - "date": "2003-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 534, - "date": "2003-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 496, - "date": "2003-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 596, - "date": "2003-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 607, - "date": "2003-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1194, - "date": "2003-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 41, - "date": "2003-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 408, - "date": "2003-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 201, - "date": "2003-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 362, - "date": "2003-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 181, - "date": "2003-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 38, - "date": "2003-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 59, - "date": "2003-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 75, - "date": "2003-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 530, - "date": "2003-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 492, - "date": "2003-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 591, - "date": "2003-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 603, - "date": "2003-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1222, - "date": "2003-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 42, - "date": "2003-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 418, - "date": "2003-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 206, - "date": "2003-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 371, - "date": "2003-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 186, - "date": "2003-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 39, - "date": "2003-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 60, - "date": "2003-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 77, - "date": "2003-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 542, - "date": "2003-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 504, - "date": "2003-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 605, - "date": "2003-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 617, - "date": "2003-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1228, - "date": "2003-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 42, - "date": "2003-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 420, - "date": "2003-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 207, - "date": "2003-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 373, - "date": "2003-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 187, - "date": "2003-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 39, - "date": "2003-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 61, - "date": "2003-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 77, - "date": "2003-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 545, - "date": "2003-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 506, - "date": "2003-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 608, - "date": "2003-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 620, - "date": "2003-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1254, - "date": "2003-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 43, - "date": "2003-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 429, - "date": "2003-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 211, - "date": "2003-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 380, - "date": "2003-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 191, - "date": "2003-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 40, - "date": "2003-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 62, - "date": "2003-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 79, - "date": "2003-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 557, - "date": "2003-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 517, - "date": "2003-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 621, - "date": "2003-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 633, - "date": "2003-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1268, - "date": "2003-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 43, - "date": "2003-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 434, - "date": "2003-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 214, - "date": "2003-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 385, - "date": "2003-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 193, - "date": "2003-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 40, - "date": "2003-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 63, - "date": "2003-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 80, - "date": "2003-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 563, - "date": "2003-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 523, - "date": "2003-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 628, - "date": "2003-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 640, - "date": "2003-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1290, - "date": "2003-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 44, - "date": "2003-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 441, - "date": "2003-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 217, - "date": "2003-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 391, - "date": "2003-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 196, - "date": "2003-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 41, - "date": "2003-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 64, - "date": "2003-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 81, - "date": "2003-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 573, - "date": "2003-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 532, - "date": "2003-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 639, - "date": "2003-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 651, - "date": "2003-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1303, - "date": "2003-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 44, - "date": "2003-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 446, - "date": "2003-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 220, - "date": "2003-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 395, - "date": "2003-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 198, - "date": "2003-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 41, - "date": "2003-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 64, - "date": "2003-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 82, - "date": "2003-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 578, - "date": "2003-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 537, - "date": "2003-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 645, - "date": "2003-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 658, - "date": "2003-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1256, - "date": "2004-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 43, - "date": "2004-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 430, - "date": "2004-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 212, - "date": "2004-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 381, - "date": "2004-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 191, - "date": "2004-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 40, - "date": "2004-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 62, - "date": "2004-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 79, - "date": "2004-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 557, - "date": "2004-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 518, - "date": "2004-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 622, - "date": "2004-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 634, - "date": "2004-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1303, - "date": "2004-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 44, - "date": "2004-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 446, - "date": "2004-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 220, - "date": "2004-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 395, - "date": "2004-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 198, - "date": "2004-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 41, - "date": "2004-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 64, - "date": "2004-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 82, - "date": "2004-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 578, - "date": "2004-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 537, - "date": "2004-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 645, - "date": "2004-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 658, - "date": "2004-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1287, - "date": "2004-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 44, - "date": "2004-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 440, - "date": "2004-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 217, - "date": "2004-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 391, - "date": "2004-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 196, - "date": "2004-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 41, - "date": "2004-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 64, - "date": "2004-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 81, - "date": "2004-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 571, - "date": "2004-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 531, - "date": "2004-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 637, - "date": "2004-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 650, - "date": "2004-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1299, - "date": "2004-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 44, - "date": "2004-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 444, - "date": "2004-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 219, - "date": "2004-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 394, - "date": "2004-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 197, - "date": "2004-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 41, - "date": "2004-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 64, - "date": "2004-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 82, - "date": "2004-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 577, - "date": "2004-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 535, - "date": "2004-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 643, - "date": "2004-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 656, - "date": "2004-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1290, - "date": "2004-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 44, - "date": "2004-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 441, - "date": "2004-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 217, - "date": "2004-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 391, - "date": "2004-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 196, - "date": "2004-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 41, - "date": "2004-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 64, - "date": "2004-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 81, - "date": "2004-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 573, - "date": "2004-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 532, - "date": "2004-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 639, - "date": "2004-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 651, - "date": "2004-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1258, - "date": "2004-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 43, - "date": "2004-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 430, - "date": "2004-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 212, - "date": "2004-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 382, - "date": "2004-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 191, - "date": "2004-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 40, - "date": "2004-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 62, - "date": "2004-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 79, - "date": "2004-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 558, - "date": "2004-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 519, - "date": "2004-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 623, - "date": "2004-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 635, - "date": "2004-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1333, - "date": "2004-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 45, - "date": "2004-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 456, - "date": "2004-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 225, - "date": "2004-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 404, - "date": "2004-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 203, - "date": "2004-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 42, - "date": "2004-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 66, - "date": "2004-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 84, - "date": "2004-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 592, - "date": "2004-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 549, - "date": "2004-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 660, - "date": "2004-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 673, - "date": "2004-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1288, - "date": "2004-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 44, - "date": "2004-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 441, - "date": "2004-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 217, - "date": "2004-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 391, - "date": "2004-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 196, - "date": "2004-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 41, - "date": "2004-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 64, - "date": "2004-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 81, - "date": "2004-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 572, - "date": "2004-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 531, - "date": "2004-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 638, - "date": "2004-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 650, - "date": "2004-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1312, - "date": "2004-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 45, - "date": "2004-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 449, - "date": "2004-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 221, - "date": "2004-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 398, - "date": "2004-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 199, - "date": "2004-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 41, - "date": "2004-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 65, - "date": "2004-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 83, - "date": "2004-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 582, - "date": "2004-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 541, - "date": "2004-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 650, - "date": "2004-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 662, - "date": "2004-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1338, - "date": "2004-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 46, - "date": "2004-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 458, - "date": "2004-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 225, - "date": "2004-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 406, - "date": "2004-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 203, - "date": "2004-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 42, - "date": "2004-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 66, - "date": "2004-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 84, - "date": "2004-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 594, - "date": "2004-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 552, - "date": "2004-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 662, - "date": "2004-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 676, - "date": "2004-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1367, - "date": "2004-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 47, - "date": "2004-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 468, - "date": "2004-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 230, - "date": "2004-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 415, - "date": "2004-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 208, - "date": "2004-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 43, - "date": "2004-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 68, - "date": "2004-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 86, - "date": "2004-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 607, - "date": "2004-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 563, - "date": "2004-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 677, - "date": "2004-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 690, - "date": "2004-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1358, - "date": "2004-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 46, - "date": "2004-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 465, - "date": "2004-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 229, - "date": "2004-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 412, - "date": "2004-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 206, - "date": "2004-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 43, - "date": "2004-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 67, - "date": "2004-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 86, - "date": "2004-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 603, - "date": "2004-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 560, - "date": "2004-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 672, - "date": "2004-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 686, - "date": "2004-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1373, - "date": "2005-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 47, - "date": "2005-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 470, - "date": "2005-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 231, - "date": "2005-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 417, - "date": "2005-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 209, - "date": "2005-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 43, - "date": "2005-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 68, - "date": "2005-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 86, - "date": "2005-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 609, - "date": "2005-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 566, - "date": "2005-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 680, - "date": "2005-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 693, - "date": "2005-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1362, - "date": "2005-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 46, - "date": "2005-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 466, - "date": "2005-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 229, - "date": "2005-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 413, - "date": "2005-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 207, - "date": "2005-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 43, - "date": "2005-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 67, - "date": "2005-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 86, - "date": "2005-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 605, - "date": "2005-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 561, - "date": "2005-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 674, - "date": "2005-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 688, - "date": "2005-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1395, - "date": "2005-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 47, - "date": "2005-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 477, - "date": "2005-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 235, - "date": "2005-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 423, - "date": "2005-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 212, - "date": "2005-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 44, - "date": "2005-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 69, - "date": "2005-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 88, - "date": "2005-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 619, - "date": "2005-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 575, - "date": "2005-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 691, - "date": "2005-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 704, - "date": "2005-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1339, - "date": "2005-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 46, - "date": "2005-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 458, - "date": "2005-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 226, - "date": "2005-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 406, - "date": "2005-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 204, - "date": "2005-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 42, - "date": "2005-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 66, - "date": "2005-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 84, - "date": "2005-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 594, - "date": "2005-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 552, - "date": "2005-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 663, - "date": "2005-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 676, - "date": "2005-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1378, - "date": "2005-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 47, - "date": "2005-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 471, - "date": "2005-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 232, - "date": "2005-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 418, - "date": "2005-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 209, - "date": "2005-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 43, - "date": "2005-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 68, - "date": "2005-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 87, - "date": "2005-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 612, - "date": "2005-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 568, - "date": "2005-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 682, - "date": "2005-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 696, - "date": "2005-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1352, - "date": "2005-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 46, - "date": "2005-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 462, - "date": "2005-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 228, - "date": "2005-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 410, - "date": "2005-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 205, - "date": "2005-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 43, - "date": "2005-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 67, - "date": "2005-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 85, - "date": "2005-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 600, - "date": "2005-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 557, - "date": "2005-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 669, - "date": "2005-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 683, - "date": "2005-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1341, - "date": "2005-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 46, - "date": "2005-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 459, - "date": "2005-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 226, - "date": "2005-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 407, - "date": "2005-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 204, - "date": "2005-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 42, - "date": "2005-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 66, - "date": "2005-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 84, - "date": "2005-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 595, - "date": "2005-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 553, - "date": "2005-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 664, - "date": "2005-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 677, - "date": "2005-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1397, - "date": "2005-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 48, - "date": "2005-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 478, - "date": "2005-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 235, - "date": "2005-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 424, - "date": "2005-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 212, - "date": "2005-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 44, - "date": "2005-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 69, - "date": "2005-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 88, - "date": "2005-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 620, - "date": "2005-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 576, - "date": "2005-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 692, - "date": "2005-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 705, - "date": "2005-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1400, - "date": "2005-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 48, - "date": "2005-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 479, - "date": "2005-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 236, - "date": "2005-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 425, - "date": "2005-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 213, - "date": "2005-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 44, - "date": "2005-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 69, - "date": "2005-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 88, - "date": "2005-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 621, - "date": "2005-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 577, - "date": "2005-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 693, - "date": "2005-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 707, - "date": "2005-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1415, - "date": "2005-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 48, - "date": "2005-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 484, - "date": "2005-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 238, - "date": "2005-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 429, - "date": "2005-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 215, - "date": "2005-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 45, - "date": "2005-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 70, - "date": "2005-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 89, - "date": "2005-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 628, - "date": "2005-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 583, - "date": "2005-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 701, - "date": "2005-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 714, - "date": "2005-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1396, - "date": "2005-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 48, - "date": "2005-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 478, - "date": "2005-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 235, - "date": "2005-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 424, - "date": "2005-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 212, - "date": "2005-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 44, - "date": "2005-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 69, - "date": "2005-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 88, - "date": "2005-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 620, - "date": "2005-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 575, - "date": "2005-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 691, - "date": "2005-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 705, - "date": "2005-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1378, - "date": "2005-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 47, - "date": "2005-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 471, - "date": "2005-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 232, - "date": "2005-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 418, - "date": "2005-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 209, - "date": "2005-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 43, - "date": "2005-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 68, - "date": "2005-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 87, - "date": "2005-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 612, - "date": "2005-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 568, - "date": "2005-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 682, - "date": "2005-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 696, - "date": "2005-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1397, - "date": "2006-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 48, - "date": "2006-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 478, - "date": "2006-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 235, - "date": "2006-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 424, - "date": "2006-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 212, - "date": "2006-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 44, - "date": "2006-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 69, - "date": "2006-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 88, - "date": "2006-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 620, - "date": "2006-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 576, - "date": "2006-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 692, - "date": "2006-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 705, - "date": "2006-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1452, - "date": "2006-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 49, - "date": "2006-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 497, - "date": "2006-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 245, - "date": "2006-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 441, - "date": "2006-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 221, - "date": "2006-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 46, - "date": "2006-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 72, - "date": "2006-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 91, - "date": "2006-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 644, - "date": "2006-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 599, - "date": "2006-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 719, - "date": "2006-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 733, - "date": "2006-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1472, - "date": "2006-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 50, - "date": "2006-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 504, - "date": "2006-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 248, - "date": "2006-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 447, - "date": "2006-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 224, - "date": "2006-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 46, - "date": "2006-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 73, - "date": "2006-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 93, - "date": "2006-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 653, - "date": "2006-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 607, - "date": "2006-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 729, - "date": "2006-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 743, - "date": "2006-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1436, - "date": "2006-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 49, - "date": "2006-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 491, - "date": "2006-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 242, - "date": "2006-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 436, - "date": "2006-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 218, - "date": "2006-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 45, - "date": "2006-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 71, - "date": "2006-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 90, - "date": "2006-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 637, - "date": "2006-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 592, - "date": "2006-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 711, - "date": "2006-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 725, - "date": "2006-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1390, - "date": "2006-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 47, - "date": "2006-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 475, - "date": "2006-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 234, - "date": "2006-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 422, - "date": "2006-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 211, - "date": "2006-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 44, - "date": "2006-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 69, - "date": "2006-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 88, - "date": "2006-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 617, - "date": "2006-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 573, - "date": "2006-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 688, - "date": "2006-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 702, - "date": "2006-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1401, - "date": "2006-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 48, - "date": "2006-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 479, - "date": "2006-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 236, - "date": "2006-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 425, - "date": "2006-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 213, - "date": "2006-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 44, - "date": "2006-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 69, - "date": "2006-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 88, - "date": "2006-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 622, - "date": "2006-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 577, - "date": "2006-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 694, - "date": "2006-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 707, - "date": "2006-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1385, - "date": "2006-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 47, - "date": "2006-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 474, - "date": "2006-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 233, - "date": "2006-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 420, - "date": "2006-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 211, - "date": "2006-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 44, - "date": "2006-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 68, - "date": "2006-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 87, - "date": "2006-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 615, - "date": "2006-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 571, - "date": "2006-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 686, - "date": "2006-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 699, - "date": "2006-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1449, - "date": "2006-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 49, - "date": "2006-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 496, - "date": "2006-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 244, - "date": "2006-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 440, - "date": "2006-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 220, - "date": "2006-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 46, - "date": "2006-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 72, - "date": "2006-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 91, - "date": "2006-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 643, - "date": "2006-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 597, - "date": "2006-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 717, - "date": "2006-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 732, - "date": "2006-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1400, - "date": "2006-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 48, - "date": "2006-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 479, - "date": "2006-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 236, - "date": "2006-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 425, - "date": "2006-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 213, - "date": "2006-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 44, - "date": "2006-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 69, - "date": "2006-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 88, - "date": "2006-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 621, - "date": "2006-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 577, - "date": "2006-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 693, - "date": "2006-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 707, - "date": "2006-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1381, - "date": "2006-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 47, - "date": "2006-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 472, - "date": "2006-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 233, - "date": "2006-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 419, - "date": "2006-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 210, - "date": "2006-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 44, - "date": "2006-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 68, - "date": "2006-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 87, - "date": "2006-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 613, - "date": "2006-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 569, - "date": "2006-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 684, - "date": "2006-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 697, - "date": "2006-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1393, - "date": "2006-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 47, - "date": "2006-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 477, - "date": "2006-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 235, - "date": "2006-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 423, - "date": "2006-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 212, - "date": "2006-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 44, - "date": "2006-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 69, - "date": "2006-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 88, - "date": "2006-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 618, - "date": "2006-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 574, - "date": "2006-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 690, - "date": "2006-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 703, - "date": "2006-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1418, - "date": "2006-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 48, - "date": "2006-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 485, - "date": "2006-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 239, - "date": "2006-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 430, - "date": "2006-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 216, - "date": "2006-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 45, - "date": "2006-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 70, - "date": "2006-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 89, - "date": "2006-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 629, - "date": "2006-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 585, - "date": "2006-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 702, - "date": "2006-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 716, - "date": "2006-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1412, - "date": "2007-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 48, - "date": "2007-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 483, - "date": "2007-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 238, - "date": "2007-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 428, - "date": "2007-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 215, - "date": "2007-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 45, - "date": "2007-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 70, - "date": "2007-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 89, - "date": "2007-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 627, - "date": "2007-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 582, - "date": "2007-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 699, - "date": "2007-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 713, - "date": "2007-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1383, - "date": "2007-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 47, - "date": "2007-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 473, - "date": "2007-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 233, - "date": "2007-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 420, - "date": "2007-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 210, - "date": "2007-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 44, - "date": "2007-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 68, - "date": "2007-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 87, - "date": "2007-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 614, - "date": "2007-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 570, - "date": "2007-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 685, - "date": "2007-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 698, - "date": "2007-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1392, - "date": "2007-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 47, - "date": "2007-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 476, - "date": "2007-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 235, - "date": "2007-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 422, - "date": "2007-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 212, - "date": "2007-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 44, - "date": "2007-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 69, - "date": "2007-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 88, - "date": "2007-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 618, - "date": "2007-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 574, - "date": "2007-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 689, - "date": "2007-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 703, - "date": "2007-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1440, - "date": "2007-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 49, - "date": "2007-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 493, - "date": "2007-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 243, - "date": "2007-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 437, - "date": "2007-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 219, - "date": "2007-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 45, - "date": "2007-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 71, - "date": "2007-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 91, - "date": "2007-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 639, - "date": "2007-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 594, - "date": "2007-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 713, - "date": "2007-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 727, - "date": "2007-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1395, - "date": "2007-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 47, - "date": "2007-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 477, - "date": "2007-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 235, - "date": "2007-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 423, - "date": "2007-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 212, - "date": "2007-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 44, - "date": "2007-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 69, - "date": "2007-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 88, - "date": "2007-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 619, - "date": "2007-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 575, - "date": "2007-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 691, - "date": "2007-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 704, - "date": "2007-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1427, - "date": "2007-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 49, - "date": "2007-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 488, - "date": "2007-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 240, - "date": "2007-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 433, - "date": "2007-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 217, - "date": "2007-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 45, - "date": "2007-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 71, - "date": "2007-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 90, - "date": "2007-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 633, - "date": "2007-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 588, - "date": "2007-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 707, - "date": "2007-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 720, - "date": "2007-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1406, - "date": "2007-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 48, - "date": "2007-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 481, - "date": "2007-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 237, - "date": "2007-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 427, - "date": "2007-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 214, - "date": "2007-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 44, - "date": "2007-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 69, - "date": "2007-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 89, - "date": "2007-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 624, - "date": "2007-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 580, - "date": "2007-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 696, - "date": "2007-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 710, - "date": "2007-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1441, - "date": "2007-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 49, - "date": "2007-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 493, - "date": "2007-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 243, - "date": "2007-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 437, - "date": "2007-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 219, - "date": "2007-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 45, - "date": "2007-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 71, - "date": "2007-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 91, - "date": "2007-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 640, - "date": "2007-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 594, - "date": "2007-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 713, - "date": "2007-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 728, - "date": "2007-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1459, - "date": "2007-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 50, - "date": "2007-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 499, - "date": "2007-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 246, - "date": "2007-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 443, - "date": "2007-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 222, - "date": "2007-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 46, - "date": "2007-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 72, - "date": "2007-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 92, - "date": "2007-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 648, - "date": "2007-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 601, - "date": "2007-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 722, - "date": "2007-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 737, - "date": "2007-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1471, - "date": "2007-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 50, - "date": "2007-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 503, - "date": "2007-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 248, - "date": "2007-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 446, - "date": "2007-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 224, - "date": "2007-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 46, - "date": "2007-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 73, - "date": "2007-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 93, - "date": "2007-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 653, - "date": "2007-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 606, - "date": "2007-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 728, - "date": "2007-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 743, - "date": "2007-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1475, - "date": "2007-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 50, - "date": "2007-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 505, - "date": "2007-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 248, - "date": "2007-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 448, - "date": "2007-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 224, - "date": "2007-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 47, - "date": "2007-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 73, - "date": "2007-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 93, - "date": "2007-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 655, - "date": "2007-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 608, - "date": "2007-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 730, - "date": "2007-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 745, - "date": "2007-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1435, - "date": "2007-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 49, - "date": "2007-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 491, - "date": "2007-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 242, - "date": "2007-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 435, - "date": "2007-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 218, - "date": "2007-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 45, - "date": "2007-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 71, - "date": "2007-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 90, - "date": "2007-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 637, - "date": "2007-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 592, - "date": "2007-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 710, - "date": "2007-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 725, - "date": "2007-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1409, - "date": "2008-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 48, - "date": "2008-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 482, - "date": "2008-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 237, - "date": "2008-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 428, - "date": "2008-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 214, - "date": "2008-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 44, - "date": "2008-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 70, - "date": "2008-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 89, - "date": "2008-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 625, - "date": "2008-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 581, - "date": "2008-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 698, - "date": "2008-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 711, - "date": "2008-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1453, - "date": "2008-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 49, - "date": "2008-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 497, - "date": "2008-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 245, - "date": "2008-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 441, - "date": "2008-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 221, - "date": "2008-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 46, - "date": "2008-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 72, - "date": "2008-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 92, - "date": "2008-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 645, - "date": "2008-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 599, - "date": "2008-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 719, - "date": "2008-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 734, - "date": "2008-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1437, - "date": "2008-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 49, - "date": "2008-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 492, - "date": "2008-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 242, - "date": "2008-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 436, - "date": "2008-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 218, - "date": "2008-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 45, - "date": "2008-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 71, - "date": "2008-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 91, - "date": "2008-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 638, - "date": "2008-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 592, - "date": "2008-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 711, - "date": "2008-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 726, - "date": "2008-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1451, - "date": "2008-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 49, - "date": "2008-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 496, - "date": "2008-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 244, - "date": "2008-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 440, - "date": "2008-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 221, - "date": "2008-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 46, - "date": "2008-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 72, - "date": "2008-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 91, - "date": "2008-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 644, - "date": "2008-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 598, - "date": "2008-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 718, - "date": "2008-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 733, - "date": "2008-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1418, - "date": "2008-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 48, - "date": "2008-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 485, - "date": "2008-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 239, - "date": "2008-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 430, - "date": "2008-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 216, - "date": "2008-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 45, - "date": "2008-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 70, - "date": "2008-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 89, - "date": "2008-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 629, - "date": "2008-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 585, - "date": "2008-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 702, - "date": "2008-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 716, - "date": "2008-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1445, - "date": "2008-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 49, - "date": "2008-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 494, - "date": "2008-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 243, - "date": "2008-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 438, - "date": "2008-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 220, - "date": "2008-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 46, - "date": "2008-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 71, - "date": "2008-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 91, - "date": "2008-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 641, - "date": "2008-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 596, - "date": "2008-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 715, - "date": "2008-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 730, - "date": "2008-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1451, - "date": "2008-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 49, - "date": "2008-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 496, - "date": "2008-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 244, - "date": "2008-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 440, - "date": "2008-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 221, - "date": "2008-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 46, - "date": "2008-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 72, - "date": "2008-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 91, - "date": "2008-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 644, - "date": "2008-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 598, - "date": "2008-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 718, - "date": "2008-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 733, - "date": "2008-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1479, - "date": "2008-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 50, - "date": "2008-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 506, - "date": "2008-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 249, - "date": "2008-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 449, - "date": "2008-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 225, - "date": "2008-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 47, - "date": "2008-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 73, - "date": "2008-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 93, - "date": "2008-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 656, - "date": "2008-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 610, - "date": "2008-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 732, - "date": "2008-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 747, - "date": "2008-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1476, - "date": "2008-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 50, - "date": "2008-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 505, - "date": "2008-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 249, - "date": "2008-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 448, - "date": "2008-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 224, - "date": "2008-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 47, - "date": "2008-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 73, - "date": "2008-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 93, - "date": "2008-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 655, - "date": "2008-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 608, - "date": "2008-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 731, - "date": "2008-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 745, - "date": "2008-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1449, - "date": "2008-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 49, - "date": "2008-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 496, - "date": "2008-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 244, - "date": "2008-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 440, - "date": "2008-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 220, - "date": "2008-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 46, - "date": "2008-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 72, - "date": "2008-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 91, - "date": "2008-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 643, - "date": "2008-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 597, - "date": "2008-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 717, - "date": "2008-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 732, - "date": "2008-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1489, - "date": "2008-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 51, - "date": "2008-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 509, - "date": "2008-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 251, - "date": "2008-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 452, - "date": "2008-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 226, - "date": "2008-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 47, - "date": "2008-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 74, - "date": "2008-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 94, - "date": "2008-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 661, - "date": "2008-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 614, - "date": "2008-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 737, - "date": "2008-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 752, - "date": "2008-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1480, - "date": "2008-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 50, - "date": "2008-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 506, - "date": "2008-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 249, - "date": "2008-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 449, - "date": "2008-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 225, - "date": "2008-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 47, - "date": "2008-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 73, - "date": "2008-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 93, - "date": "2008-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 657, - "date": "2008-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 610, - "date": "2008-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 733, - "date": "2008-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 747, - "date": "2008-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1443, - "date": "2009-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 49, - "date": "2009-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 494, - "date": "2009-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 243, - "date": "2009-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 438, - "date": "2009-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 219, - "date": "2009-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 46, - "date": "2009-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 71, - "date": "2009-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 91, - "date": "2009-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 640, - "date": "2009-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 595, - "date": "2009-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 714, - "date": "2009-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 729, - "date": "2009-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1461, - "date": "2009-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 50, - "date": "2009-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 500, - "date": "2009-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 246, - "date": "2009-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 443, - "date": "2009-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 222, - "date": "2009-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 46, - "date": "2009-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 72, - "date": "2009-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 92, - "date": "2009-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 648, - "date": "2009-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 602, - "date": "2009-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 723, - "date": "2009-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 738, - "date": "2009-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1452, - "date": "2009-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 49, - "date": "2009-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 497, - "date": "2009-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 245, - "date": "2009-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 441, - "date": "2009-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 221, - "date": "2009-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 46, - "date": "2009-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 72, - "date": "2009-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 91, - "date": "2009-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 644, - "date": "2009-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 599, - "date": "2009-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 719, - "date": "2009-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 733, - "date": "2009-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1455, - "date": "2009-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 50, - "date": "2009-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 498, - "date": "2009-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 245, - "date": "2009-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 441, - "date": "2009-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 221, - "date": "2009-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 46, - "date": "2009-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 72, - "date": "2009-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 92, - "date": "2009-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 646, - "date": "2009-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 600, - "date": "2009-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 720, - "date": "2009-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 735, - "date": "2009-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1428, - "date": "2009-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 49, - "date": "2009-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 488, - "date": "2009-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 241, - "date": "2009-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 433, - "date": "2009-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 217, - "date": "2009-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 45, - "date": "2009-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 71, - "date": "2009-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 90, - "date": "2009-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 634, - "date": "2009-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 589, - "date": "2009-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 707, - "date": "2009-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 721, - "date": "2009-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1429, - "date": "2009-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 49, - "date": "2009-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 489, - "date": "2009-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 241, - "date": "2009-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 434, - "date": "2009-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 217, - "date": "2009-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 45, - "date": "2009-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 71, - "date": "2009-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 90, - "date": "2009-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 634, - "date": "2009-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 589, - "date": "2009-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 707, - "date": "2009-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 722, - "date": "2009-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1453, - "date": "2009-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 49, - "date": "2009-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 497, - "date": "2009-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 245, - "date": "2009-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 441, - "date": "2009-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 221, - "date": "2009-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 46, - "date": "2009-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 72, - "date": "2009-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 92, - "date": "2009-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 645, - "date": "2009-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 599, - "date": "2009-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 719, - "date": "2009-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 734, - "date": "2009-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1414, - "date": "2009-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 48, - "date": "2009-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 484, - "date": "2009-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 238, - "date": "2009-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 429, - "date": "2009-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 215, - "date": "2009-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 45, - "date": "2009-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 70, - "date": "2009-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 89, - "date": "2009-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 628, - "date": "2009-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 583, - "date": "2009-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 700, - "date": "2009-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 714, - "date": "2009-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1473, - "date": "2009-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 50, - "date": "2009-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 504, - "date": "2009-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 248, - "date": "2009-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 447, - "date": "2009-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 224, - "date": "2009-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 46, - "date": "2009-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 73, - "date": "2009-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 93, - "date": "2009-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 654, - "date": "2009-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 607, - "date": "2009-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 729, - "date": "2009-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 744, - "date": "2009-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1449, - "date": "2009-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 49, - "date": "2009-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 496, - "date": "2009-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 244, - "date": "2009-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 440, - "date": "2009-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 220, - "date": "2009-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 46, - "date": "2009-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 72, - "date": "2009-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 91, - "date": "2009-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 643, - "date": "2009-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 597, - "date": "2009-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 717, - "date": "2009-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 732, - "date": "2009-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1415, - "date": "2009-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 48, - "date": "2009-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 484, - "date": "2009-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 238, - "date": "2009-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 429, - "date": "2009-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 215, - "date": "2009-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 45, - "date": "2009-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 70, - "date": "2009-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 89, - "date": "2009-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 628, - "date": "2009-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 583, - "date": "2009-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 701, - "date": "2009-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 714, - "date": "2009-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1527, - "date": "2009-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 52, - "date": "2009-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 522, - "date": "2009-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 257, - "date": "2009-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 463, - "date": "2009-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 232, - "date": "2009-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 48, - "date": "2009-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 75, - "date": "2009-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 96, - "date": "2009-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 678, - "date": "2009-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 629, - "date": "2009-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 756, - "date": "2009-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 771, - "date": "2009-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1502, - "date": "2010-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 51, - "date": "2010-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 514, - "date": "2010-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 253, - "date": "2010-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 456, - "date": "2010-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 228, - "date": "2010-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 47, - "date": "2010-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 74, - "date": "2010-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 95, - "date": "2010-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 667, - "date": "2010-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 619, - "date": "2010-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 744, - "date": "2010-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 758, - "date": "2010-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1522, - "date": "2010-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 52, - "date": "2010-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 521, - "date": "2010-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 256, - "date": "2010-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 462, - "date": "2010-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 231, - "date": "2010-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 48, - "date": "2010-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 75, - "date": "2010-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 96, - "date": "2010-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 676, - "date": "2010-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 627, - "date": "2010-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 754, - "date": "2010-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 768, - "date": "2010-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1518, - "date": "2010-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 52, - "date": "2010-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 519, - "date": "2010-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 256, - "date": "2010-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 461, - "date": "2010-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 231, - "date": "2010-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 48, - "date": "2010-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 75, - "date": "2010-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 96, - "date": "2010-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 674, - "date": "2010-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 626, - "date": "2010-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 752, - "date": "2010-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 766, - "date": "2010-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1541, - "date": "2010-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 52, - "date": "2010-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 527, - "date": "2010-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 260, - "date": "2010-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 468, - "date": "2010-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 234, - "date": "2010-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 49, - "date": "2010-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 76, - "date": "2010-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 97, - "date": "2010-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 684, - "date": "2010-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 635, - "date": "2010-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 763, - "date": "2010-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 778, - "date": "2010-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1499, - "date": "2010-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 51, - "date": "2010-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 513, - "date": "2010-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 253, - "date": "2010-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 455, - "date": "2010-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 228, - "date": "2010-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 47, - "date": "2010-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 74, - "date": "2010-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 94, - "date": "2010-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 665, - "date": "2010-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 618, - "date": "2010-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 742, - "date": "2010-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 757, - "date": "2010-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1501, - "date": "2010-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 51, - "date": "2010-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 513, - "date": "2010-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 253, - "date": "2010-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 455, - "date": "2010-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 228, - "date": "2010-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 47, - "date": "2010-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 74, - "date": "2010-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 95, - "date": "2010-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 666, - "date": "2010-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 619, - "date": "2010-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 743, - "date": "2010-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 758, - "date": "2010-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1512, - "date": "2010-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 51, - "date": "2010-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 517, - "date": "2010-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 255, - "date": "2010-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 459, - "date": "2010-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 230, - "date": "2010-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 48, - "date": "2010-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 75, - "date": "2010-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 95, - "date": "2010-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 671, - "date": "2010-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 623, - "date": "2010-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 749, - "date": "2010-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 763, - "date": "2010-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1437, - "date": "2010-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 49, - "date": "2010-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 492, - "date": "2010-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 242, - "date": "2010-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 436, - "date": "2010-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 218, - "date": "2010-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 45, - "date": "2010-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 71, - "date": "2010-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 91, - "date": "2010-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 638, - "date": "2010-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 592, - "date": "2010-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 711, - "date": "2010-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 726, - "date": "2010-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1508, - "date": "2010-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 51, - "date": "2010-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 516, - "date": "2010-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 254, - "date": "2010-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 458, - "date": "2010-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 229, - "date": "2010-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 48, - "date": "2010-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 75, - "date": "2010-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 95, - "date": "2010-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 669, - "date": "2010-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 622, - "date": "2010-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 747, - "date": "2010-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 761, - "date": "2010-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1521, - "date": "2010-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 52, - "date": "2010-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 520, - "date": "2010-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 256, - "date": "2010-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 462, - "date": "2010-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 231, - "date": "2010-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 48, - "date": "2010-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 75, - "date": "2010-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 96, - "date": "2010-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 675, - "date": "2010-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 627, - "date": "2010-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 753, - "date": "2010-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 768, - "date": "2010-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1434, - "date": "2010-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 49, - "date": "2010-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 491, - "date": "2010-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 242, - "date": "2010-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 435, - "date": "2010-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 218, - "date": "2010-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 45, - "date": "2010-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 71, - "date": "2010-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 90, - "date": "2010-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 636, - "date": "2010-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 591, - "date": "2010-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 710, - "date": "2010-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 724, - "date": "2010-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1517, - "date": "2010-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 52, - "date": "2010-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 519, - "date": "2010-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 256, - "date": "2010-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 460, - "date": "2010-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 231, - "date": "2010-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 48, - "date": "2010-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 75, - "date": "2010-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 96, - "date": "2010-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 673, - "date": "2010-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 625, - "date": "2010-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 751, - "date": "2010-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 766, - "date": "2010-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1496, - "date": "2011-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 51, - "date": "2011-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 512, - "date": "2011-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 252, - "date": "2011-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 454, - "date": "2011-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 227, - "date": "2011-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 47, - "date": "2011-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 74, - "date": "2011-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 94, - "date": "2011-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 664, - "date": "2011-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 617, - "date": "2011-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 741, - "date": "2011-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 755, - "date": "2011-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1492, - "date": "2011-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 51, - "date": "2011-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 510, - "date": "2011-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 251, - "date": "2011-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 453, - "date": "2011-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 227, - "date": "2011-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 47, - "date": "2011-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 74, - "date": "2011-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 94, - "date": "2011-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 662, - "date": "2011-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 615, - "date": "2011-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 739, - "date": "2011-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 753, - "date": "2011-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1472, - "date": "2011-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 50, - "date": "2011-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 504, - "date": "2011-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 248, - "date": "2011-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 447, - "date": "2011-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 224, - "date": "2011-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 46, - "date": "2011-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 73, - "date": "2011-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 93, - "date": "2011-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 653, - "date": "2011-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 607, - "date": "2011-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 729, - "date": "2011-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 743, - "date": "2011-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1440, - "date": "2011-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 49, - "date": "2011-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 493, - "date": "2011-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 243, - "date": "2011-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 437, - "date": "2011-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 219, - "date": "2011-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 45, - "date": "2011-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 71, - "date": "2011-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 91, - "date": "2011-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 639, - "date": "2011-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 594, - "date": "2011-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 713, - "date": "2011-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 727, - "date": "2011-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1413, - "date": "2011-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 48, - "date": "2011-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 483, - "date": "2011-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 238, - "date": "2011-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 429, - "date": "2011-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 215, - "date": "2011-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 45, - "date": "2011-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 70, - "date": "2011-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 89, - "date": "2011-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 627, - "date": "2011-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 582, - "date": "2011-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 700, - "date": "2011-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 713, - "date": "2011-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1455, - "date": "2011-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 50, - "date": "2011-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 498, - "date": "2011-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 245, - "date": "2011-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 441, - "date": "2011-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 221, - "date": "2011-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 46, - "date": "2011-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 72, - "date": "2011-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 92, - "date": "2011-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 646, - "date": "2011-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 600, - "date": "2011-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 720, - "date": "2011-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 735, - "date": "2011-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1474, - "date": "2011-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 50, - "date": "2011-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 504, - "date": "2011-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 248, - "date": "2011-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 447, - "date": "2011-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 224, - "date": "2011-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 47, - "date": "2011-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 73, - "date": "2011-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 93, - "date": "2011-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 654, - "date": "2011-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 608, - "date": "2011-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 730, - "date": "2011-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 744, - "date": "2011-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1491, - "date": "2011-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 51, - "date": "2011-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 510, - "date": "2011-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 251, - "date": "2011-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 452, - "date": "2011-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 227, - "date": "2011-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 47, - "date": "2011-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 74, - "date": "2011-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 94, - "date": "2011-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 662, - "date": "2011-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 615, - "date": "2011-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 738, - "date": "2011-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 753, - "date": "2011-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1442, - "date": "2011-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 49, - "date": "2011-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 493, - "date": "2011-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 243, - "date": "2011-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 438, - "date": "2011-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 219, - "date": "2011-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 46, - "date": "2011-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 71, - "date": "2011-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 91, - "date": "2011-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 640, - "date": "2011-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 594, - "date": "2011-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 714, - "date": "2011-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 728, - "date": "2011-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1426, - "date": "2011-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 49, - "date": "2011-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 488, - "date": "2011-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 240, - "date": "2011-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 433, - "date": "2011-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 217, - "date": "2011-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 45, - "date": "2011-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 70, - "date": "2011-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 90, - "date": "2011-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 633, - "date": "2011-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 588, - "date": "2011-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 706, - "date": "2011-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 720, - "date": "2011-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1429, - "date": "2011-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 49, - "date": "2011-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 489, - "date": "2011-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 241, - "date": "2011-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 434, - "date": "2011-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 217, - "date": "2011-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 45, - "date": "2011-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 71, - "date": "2011-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 90, - "date": "2011-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 634, - "date": "2011-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 589, - "date": "2011-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 707, - "date": "2011-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 722, - "date": "2011-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1470, - "date": "2011-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 50, - "date": "2011-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 503, - "date": "2011-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 248, - "date": "2011-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 446, - "date": "2011-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 223, - "date": "2011-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 46, - "date": "2011-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 73, - "date": "2011-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 93, - "date": "2011-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 652, - "date": "2011-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 606, - "date": "2011-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 728, - "date": "2011-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 742, - "date": "2011-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1462, - "date": "2012-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 50, - "date": "2012-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 500, - "date": "2012-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 246, - "date": "2012-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 444, - "date": "2012-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 222, - "date": "2012-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 46, - "date": "2012-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 72, - "date": "2012-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 92, - "date": "2012-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 649, - "date": "2012-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 603, - "date": "2012-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 724, - "date": "2012-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 738, - "date": "2012-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1446, - "date": "2012-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 49, - "date": "2012-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 495, - "date": "2012-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 244, - "date": "2012-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 439, - "date": "2012-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 220, - "date": "2012-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 46, - "date": "2012-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 71, - "date": "2012-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 91, - "date": "2012-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 642, - "date": "2012-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 596, - "date": "2012-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 716, - "date": "2012-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 730, - "date": "2012-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1458, - "date": "2012-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 50, - "date": "2012-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 499, - "date": "2012-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 246, - "date": "2012-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 442, - "date": "2012-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 222, - "date": "2012-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 46, - "date": "2012-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 72, - "date": "2012-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 92, - "date": "2012-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 647, - "date": "2012-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 601, - "date": "2012-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 722, - "date": "2012-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 736, - "date": "2012-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1430, - "date": "2012-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 49, - "date": "2012-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 489, - "date": "2012-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 241, - "date": "2012-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 434, - "date": "2012-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 217, - "date": "2012-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 45, - "date": "2012-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 71, - "date": "2012-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 90, - "date": "2012-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 635, - "date": "2012-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 589, - "date": "2012-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 708, - "date": "2012-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 722, - "date": "2012-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1459, - "date": "2012-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 50, - "date": "2012-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 499, - "date": "2012-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 246, - "date": "2012-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 443, - "date": "2012-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 222, - "date": "2012-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 46, - "date": "2012-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 72, - "date": "2012-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 92, - "date": "2012-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 648, - "date": "2012-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 601, - "date": "2012-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 722, - "date": "2012-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 737, - "date": "2012-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1475, - "date": "2012-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 50, - "date": "2012-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 505, - "date": "2012-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 248, - "date": "2012-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 448, - "date": "2012-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 224, - "date": "2012-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 47, - "date": "2012-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 73, - "date": "2012-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 93, - "date": "2012-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 655, - "date": "2012-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 608, - "date": "2012-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 730, - "date": "2012-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 745, - "date": "2012-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1444, - "date": "2012-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 49, - "date": "2012-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 494, - "date": "2012-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 243, - "date": "2012-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 438, - "date": "2012-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 219, - "date": "2012-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 46, - "date": "2012-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 71, - "date": "2012-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 91, - "date": "2012-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 641, - "date": "2012-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 595, - "date": "2012-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 715, - "date": "2012-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 729, - "date": "2012-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1514, - "date": "2012-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 52, - "date": "2012-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 518, - "date": "2012-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 255, - "date": "2012-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 459, - "date": "2012-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 230, - "date": "2012-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 48, - "date": "2012-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 75, - "date": "2012-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 95, - "date": "2012-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 672, - "date": "2012-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 624, - "date": "2012-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 750, - "date": "2012-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 764, - "date": "2012-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1476, - "date": "2012-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 50, - "date": "2012-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 505, - "date": "2012-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 249, - "date": "2012-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 448, - "date": "2012-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 224, - "date": "2012-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 47, - "date": "2012-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 73, - "date": "2012-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 93, - "date": "2012-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 655, - "date": "2012-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 608, - "date": "2012-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 731, - "date": "2012-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 745, - "date": "2012-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1483, - "date": "2012-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 50, - "date": "2012-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 507, - "date": "2012-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 250, - "date": "2012-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 450, - "date": "2012-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 225, - "date": "2012-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 47, - "date": "2012-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 73, - "date": "2012-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 93, - "date": "2012-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 658, - "date": "2012-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 611, - "date": "2012-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 734, - "date": "2012-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 749, - "date": "2012-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1501, - "date": "2012-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 51, - "date": "2012-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 513, - "date": "2012-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 253, - "date": "2012-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 455, - "date": "2012-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 228, - "date": "2012-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 47, - "date": "2012-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 74, - "date": "2012-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 95, - "date": "2012-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 666, - "date": "2012-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 619, - "date": "2012-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 743, - "date": "2012-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 758, - "date": "2012-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1537, - "date": "2012-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 52, - "date": "2012-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 526, - "date": "2012-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 259, - "date": "2012-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 466, - "date": "2012-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 234, - "date": "2012-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 49, - "date": "2012-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 76, - "date": "2012-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 97, - "date": "2012-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 682, - "date": "2012-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 634, - "date": "2012-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 761, - "date": "2012-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 776, - "date": "2012-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1569, - "date": "2013-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 53, - "date": "2013-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 537, - "date": "2013-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 264, - "date": "2013-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 476, - "date": "2013-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 238, - "date": "2013-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 50, - "date": "2013-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 78, - "date": "2013-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 99, - "date": "2013-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 696, - "date": "2013-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 647, - "date": "2013-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 777, - "date": "2013-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 792, - "date": "2013-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1570, - "date": "2013-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 53, - "date": "2013-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 537, - "date": "2013-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 264, - "date": "2013-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 476, - "date": "2013-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 239, - "date": "2013-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 50, - "date": "2013-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 78, - "date": "2013-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 99, - "date": "2013-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 697, - "date": "2013-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 647, - "date": "2013-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 777, - "date": "2013-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 793, - "date": "2013-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1528, - "date": "2013-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 52, - "date": "2013-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 523, - "date": "2013-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 257, - "date": "2013-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 464, - "date": "2013-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 232, - "date": "2013-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 48, - "date": "2013-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 76, - "date": "2013-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 96, - "date": "2013-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 678, - "date": "2013-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 630, - "date": "2013-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 757, - "date": "2013-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 771, - "date": "2013-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1521, - "date": "2013-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 52, - "date": "2013-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 520, - "date": "2013-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 256, - "date": "2013-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 462, - "date": "2013-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 231, - "date": "2013-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 48, - "date": "2013-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 75, - "date": "2013-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 96, - "date": "2013-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 675, - "date": "2013-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 627, - "date": "2013-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 753, - "date": "2013-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 768, - "date": "2013-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1578, - "date": "2013-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 54, - "date": "2013-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 540, - "date": "2013-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 266, - "date": "2013-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 479, - "date": "2013-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 240, - "date": "2013-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 50, - "date": "2013-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 78, - "date": "2013-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 99, - "date": "2013-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 700, - "date": "2013-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 650, - "date": "2013-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 781, - "date": "2013-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 797, - "date": "2013-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1543, - "date": "2013-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 53, - "date": "2013-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 528, - "date": "2013-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 260, - "date": "2013-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 468, - "date": "2013-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 235, - "date": "2013-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 49, - "date": "2013-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 76, - "date": "2013-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 97, - "date": "2013-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 685, - "date": "2013-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 636, - "date": "2013-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 764, - "date": "2013-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 779, - "date": "2013-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1535, - "date": "2013-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 52, - "date": "2013-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 525, - "date": "2013-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 259, - "date": "2013-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 466, - "date": "2013-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 233, - "date": "2013-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 48, - "date": "2013-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 76, - "date": "2013-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 97, - "date": "2013-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 681, - "date": "2013-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 633, - "date": "2013-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 760, - "date": "2013-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 775, - "date": "2013-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1543, - "date": "2013-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 53, - "date": "2013-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 528, - "date": "2013-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 260, - "date": "2013-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 468, - "date": "2013-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 235, - "date": "2013-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 49, - "date": "2013-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 76, - "date": "2013-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 97, - "date": "2013-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 685, - "date": "2013-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 636, - "date": "2013-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 764, - "date": "2013-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 779, - "date": "2013-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1500, - "date": "2013-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 51, - "date": "2013-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 513, - "date": "2013-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 253, - "date": "2013-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 455, - "date": "2013-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 228, - "date": "2013-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 47, - "date": "2013-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 74, - "date": "2013-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 94, - "date": "2013-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 666, - "date": "2013-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 618, - "date": "2013-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 743, - "date": "2013-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 757, - "date": "2013-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1568, - "date": "2013-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 53, - "date": "2013-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 536, - "date": "2013-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 264, - "date": "2013-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 476, - "date": "2013-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 238, - "date": "2013-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 49, - "date": "2013-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 77, - "date": "2013-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 99, - "date": "2013-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 696, - "date": "2013-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 646, - "date": "2013-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 776, - "date": "2013-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 792, - "date": "2013-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1544, - "date": "2013-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 53, - "date": "2013-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 528, - "date": "2013-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 260, - "date": "2013-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 468, - "date": "2013-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 235, - "date": "2013-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 49, - "date": "2013-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 76, - "date": "2013-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 97, - "date": "2013-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 685, - "date": "2013-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 636, - "date": "2013-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 764, - "date": "2013-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 780, - "date": "2013-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1581, - "date": "2013-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 54, - "date": "2013-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 541, - "date": "2013-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 266, - "date": "2013-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 480, - "date": "2013-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 240, - "date": "2013-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 50, - "date": "2013-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 78, - "date": "2013-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 100, - "date": "2013-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 702, - "date": "2013-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 652, - "date": "2013-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 783, - "date": "2013-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 798, - "date": "2013-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1556, - "date": "2014-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 53, - "date": "2014-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 532, - "date": "2014-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 262, - "date": "2014-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 472, - "date": "2014-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 237, - "date": "2014-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 49, - "date": "2014-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 77, - "date": "2014-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 98, - "date": "2014-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 691, - "date": "2014-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 641, - "date": "2014-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 770, - "date": "2014-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 786, - "date": "2014-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1574, - "date": "2014-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 54, - "date": "2014-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 538, - "date": "2014-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 265, - "date": "2014-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 478, - "date": "2014-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 239, - "date": "2014-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 50, - "date": "2014-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 78, - "date": "2014-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 99, - "date": "2014-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 699, - "date": "2014-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 649, - "date": "2014-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 779, - "date": "2014-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 795, - "date": "2014-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1590, - "date": "2014-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 54, - "date": "2014-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 544, - "date": "2014-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 268, - "date": "2014-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 482, - "date": "2014-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 242, - "date": "2014-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 50, - "date": "2014-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 79, - "date": "2014-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 100, - "date": "2014-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 706, - "date": "2014-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 655, - "date": "2014-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 787, - "date": "2014-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 803, - "date": "2014-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1580, - "date": "2014-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 54, - "date": "2014-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 540, - "date": "2014-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 266, - "date": "2014-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 479, - "date": "2014-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 240, - "date": "2014-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 50, - "date": "2014-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 78, - "date": "2014-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 100, - "date": "2014-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 701, - "date": "2014-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 651, - "date": "2014-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 782, - "date": "2014-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 798, - "date": "2014-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1600, - "date": "2014-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 54, - "date": "2014-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 547, - "date": "2014-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 270, - "date": "2014-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 485, - "date": "2014-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 243, - "date": "2014-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 51, - "date": "2014-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 79, - "date": "2014-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 101, - "date": "2014-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 710, - "date": "2014-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 660, - "date": "2014-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 792, - "date": "2014-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 808, - "date": "2014-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1581, - "date": "2014-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 54, - "date": "2014-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 541, - "date": "2014-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 266, - "date": "2014-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 480, - "date": "2014-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 240, - "date": "2014-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 50, - "date": "2014-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 78, - "date": "2014-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 100, - "date": "2014-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 702, - "date": "2014-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 652, - "date": "2014-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 783, - "date": "2014-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 798, - "date": "2014-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1608, - "date": "2014-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 55, - "date": "2014-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 550, - "date": "2014-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 271, - "date": "2014-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 488, - "date": "2014-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 244, - "date": "2014-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 51, - "date": "2014-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 79, - "date": "2014-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 101, - "date": "2014-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 714, - "date": "2014-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 663, - "date": "2014-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 796, - "date": "2014-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 812, - "date": "2014-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1603, - "date": "2014-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 55, - "date": "2014-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 548, - "date": "2014-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 270, - "date": "2014-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 486, - "date": "2014-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 244, - "date": "2014-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 51, - "date": "2014-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 79, - "date": "2014-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 101, - "date": "2014-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 711, - "date": "2014-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 661, - "date": "2014-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 794, - "date": "2014-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 809, - "date": "2014-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1596, - "date": "2014-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 54, - "date": "2014-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 546, - "date": "2014-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 269, - "date": "2014-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 484, - "date": "2014-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 243, - "date": "2014-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 50, - "date": "2014-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 79, - "date": "2014-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 101, - "date": "2014-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 708, - "date": "2014-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 658, - "date": "2014-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 790, - "date": "2014-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 806, - "date": "2014-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1670, - "date": "2014-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 57, - "date": "2014-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 571, - "date": "2014-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 281, - "date": "2014-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 507, - "date": "2014-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 254, - "date": "2014-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 53, - "date": "2014-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 83, - "date": "2014-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 105, - "date": "2014-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 741, - "date": "2014-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 688, - "date": "2014-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 827, - "date": "2014-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 843, - "date": "2014-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1666, - "date": "2014-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 57, - "date": "2014-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 570, - "date": "2014-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 281, - "date": "2014-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 506, - "date": "2014-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 253, - "date": "2014-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 53, - "date": "2014-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 82, - "date": "2014-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 105, - "date": "2014-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 739, - "date": "2014-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 687, - "date": "2014-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 825, - "date": "2014-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 841, - "date": "2014-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1724, - "date": "2014-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 59, - "date": "2014-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 590, - "date": "2014-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 290, - "date": "2014-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 523, - "date": "2014-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 262, - "date": "2014-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 54, - "date": "2014-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 85, - "date": "2014-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 109, - "date": "2014-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 765, - "date": "2014-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 711, - "date": "2014-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 854, - "date": "2014-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 870, - "date": "2014-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1737, - "date": "2015-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 59, - "date": "2015-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 594, - "date": "2015-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 293, - "date": "2015-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 527, - "date": "2015-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 264, - "date": "2015-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 55, - "date": "2015-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 86, - "date": "2015-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 109, - "date": "2015-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 771, - "date": "2015-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 716, - "date": "2015-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 860, - "date": "2015-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 877, - "date": "2015-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1706, - "date": "2015-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 58, - "date": "2015-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 584, - "date": "2015-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 287, - "date": "2015-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 518, - "date": "2015-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 259, - "date": "2015-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 54, - "date": "2015-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 84, - "date": "2015-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 107, - "date": "2015-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 757, - "date": "2015-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 703, - "date": "2015-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 845, - "date": "2015-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 861, - "date": "2015-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1773, - "date": "2015-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 60, - "date": "2015-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 607, - "date": "2015-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 299, - "date": "2015-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 538, - "date": "2015-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 269, - "date": "2015-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 56, - "date": "2015-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 88, - "date": "2015-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 112, - "date": "2015-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 787, - "date": "2015-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 731, - "date": "2015-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 878, - "date": "2015-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 895, - "date": "2015-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1819, - "date": "2015-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 62, - "date": "2015-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 622, - "date": "2015-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 306, - "date": "2015-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 552, - "date": "2015-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 276, - "date": "2015-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 57, - "date": "2015-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 90, - "date": "2015-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 115, - "date": "2015-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 807, - "date": "2015-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 750, - "date": "2015-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 901, - "date": "2015-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 918, - "date": "2015-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1742, - "date": "2015-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 59, - "date": "2015-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 596, - "date": "2015-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 293, - "date": "2015-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 529, - "date": "2015-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 265, - "date": "2015-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 55, - "date": "2015-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 86, - "date": "2015-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 110, - "date": "2015-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 773, - "date": "2015-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 718, - "date": "2015-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 862, - "date": "2015-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 880, - "date": "2015-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1780, - "date": "2015-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 61, - "date": "2015-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 609, - "date": "2015-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 300, - "date": "2015-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 540, - "date": "2015-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 271, - "date": "2015-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 56, - "date": "2015-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 88, - "date": "2015-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 112, - "date": "2015-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 790, - "date": "2015-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 734, - "date": "2015-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 881, - "date": "2015-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 899, - "date": "2015-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1748, - "date": "2015-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 59, - "date": "2015-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 598, - "date": "2015-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 294, - "date": "2015-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 530, - "date": "2015-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 266, - "date": "2015-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 55, - "date": "2015-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 86, - "date": "2015-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 110, - "date": "2015-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 776, - "date": "2015-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 721, - "date": "2015-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 865, - "date": "2015-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 883, - "date": "2015-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1756, - "date": "2015-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 60, - "date": "2015-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 601, - "date": "2015-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 296, - "date": "2015-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 533, - "date": "2015-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 267, - "date": "2015-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 55, - "date": "2015-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 87, - "date": "2015-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 111, - "date": "2015-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 779, - "date": "2015-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 724, - "date": "2015-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 869, - "date": "2015-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 887, - "date": "2015-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1778, - "date": "2015-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 61, - "date": "2015-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 608, - "date": "2015-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 300, - "date": "2015-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 539, - "date": "2015-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 270, - "date": "2015-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 56, - "date": "2015-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 88, - "date": "2015-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 112, - "date": "2015-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 789, - "date": "2015-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 733, - "date": "2015-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 880, - "date": "2015-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 898, - "date": "2015-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1791, - "date": "2015-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 61, - "date": "2015-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 613, - "date": "2015-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 302, - "date": "2015-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 543, - "date": "2015-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 272, - "date": "2015-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 57, - "date": "2015-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 89, - "date": "2015-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 113, - "date": "2015-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 795, - "date": "2015-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 738, - "date": "2015-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 887, - "date": "2015-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 904, - "date": "2015-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1768, - "date": "2015-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 60, - "date": "2015-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 605, - "date": "2015-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 298, - "date": "2015-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 536, - "date": "2015-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 269, - "date": "2015-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 56, - "date": "2015-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 87, - "date": "2015-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 111, - "date": "2015-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 785, - "date": "2015-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 729, - "date": "2015-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 875, - "date": "2015-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 893, - "date": "2015-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1804, - "date": "2015-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 61, - "date": "2015-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 617, - "date": "2015-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 304, - "date": "2015-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 547, - "date": "2015-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 274, - "date": "2015-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 57, - "date": "2015-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 89, - "date": "2015-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 114, - "date": "2015-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 801, - "date": "2015-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 744, - "date": "2015-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 893, - "date": "2015-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 911, - "date": "2015-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1819, - "date": "2016-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 62, - "date": "2016-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 622, - "date": "2016-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 306, - "date": "2016-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 552, - "date": "2016-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 276, - "date": "2016-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 57, - "date": "2016-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 90, - "date": "2016-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 115, - "date": "2016-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 807, - "date": "2016-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 750, - "date": "2016-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 901, - "date": "2016-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 918, - "date": "2016-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1771, - "date": "2016-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 60, - "date": "2016-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 606, - "date": "2016-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 298, - "date": "2016-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 537, - "date": "2016-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 269, - "date": "2016-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 56, - "date": "2016-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 88, - "date": "2016-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 112, - "date": "2016-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 786, - "date": "2016-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 730, - "date": "2016-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 877, - "date": "2016-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 894, - "date": "2016-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1809, - "date": "2016-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 62, - "date": "2016-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 619, - "date": "2016-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 305, - "date": "2016-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 549, - "date": "2016-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 275, - "date": "2016-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 57, - "date": "2016-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 89, - "date": "2016-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 114, - "date": "2016-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 803, - "date": "2016-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 746, - "date": "2016-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 896, - "date": "2016-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 913, - "date": "2016-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1780, - "date": "2016-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 61, - "date": "2016-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 609, - "date": "2016-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 300, - "date": "2016-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 540, - "date": "2016-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 271, - "date": "2016-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 56, - "date": "2016-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 88, - "date": "2016-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 112, - "date": "2016-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 790, - "date": "2016-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 734, - "date": "2016-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 881, - "date": "2016-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 899, - "date": "2016-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1838, - "date": "2016-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 63, - "date": "2016-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 629, - "date": "2016-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 310, - "date": "2016-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 558, - "date": "2016-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 279, - "date": "2016-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 58, - "date": "2016-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 91, - "date": "2016-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 116, - "date": "2016-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 816, - "date": "2016-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 758, - "date": "2016-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 910, - "date": "2016-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 928, - "date": "2016-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1781, - "date": "2016-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 61, - "date": "2016-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 609, - "date": "2016-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 300, - "date": "2016-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 540, - "date": "2016-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 271, - "date": "2016-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 56, - "date": "2016-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 88, - "date": "2016-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 112, - "date": "2016-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 790, - "date": "2016-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 734, - "date": "2016-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 882, - "date": "2016-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 899, - "date": "2016-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1740, - "date": "2016-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 59, - "date": "2016-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 595, - "date": "2016-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 293, - "date": "2016-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 528, - "date": "2016-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 264, - "date": "2016-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 55, - "date": "2016-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 86, - "date": "2016-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 110, - "date": "2016-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 772, - "date": "2016-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 717, - "date": "2016-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 861, - "date": "2016-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 879, - "date": "2016-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1763, - "date": "2016-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 60, - "date": "2016-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 603, - "date": "2016-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 297, - "date": "2016-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 535, - "date": "2016-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 268, - "date": "2016-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 56, - "date": "2016-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 87, - "date": "2016-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 111, - "date": "2016-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 782, - "date": "2016-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 727, - "date": "2016-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 873, - "date": "2016-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 890, - "date": "2016-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1782, - "date": "2016-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 61, - "date": "2016-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 610, - "date": "2016-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 300, - "date": "2016-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 541, - "date": "2016-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 271, - "date": "2016-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 56, - "date": "2016-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 88, - "date": "2016-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 112, - "date": "2016-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 791, - "date": "2016-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 735, - "date": "2016-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 882, - "date": "2016-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 900, - "date": "2016-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1826, - "date": "2016-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 62, - "date": "2016-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 625, - "date": "2016-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 308, - "date": "2016-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 554, - "date": "2016-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 278, - "date": "2016-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 58, - "date": "2016-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 90, - "date": "2016-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 115, - "date": "2016-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 810, - "date": "2016-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 753, - "date": "2016-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 904, - "date": "2016-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 922, - "date": "2016-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1756, - "date": "2016-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 60, - "date": "2016-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 601, - "date": "2016-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 296, - "date": "2016-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 533, - "date": "2016-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 267, - "date": "2016-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 55, - "date": "2016-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 87, - "date": "2016-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 111, - "date": "2016-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 779, - "date": "2016-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 724, - "date": "2016-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 869, - "date": "2016-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 887, - "date": "2016-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1786, - "date": "2016-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 61, - "date": "2016-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 611, - "date": "2016-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 301, - "date": "2016-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 542, - "date": "2016-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 271, - "date": "2016-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 56, - "date": "2016-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 88, - "date": "2016-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 112, - "date": "2016-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 793, - "date": "2016-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 736, - "date": "2016-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 884, - "date": "2016-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 902, - "date": "2016-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1795, - "date": "2017-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 61, - "date": "2017-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 614, - "date": "2017-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 302, - "date": "2017-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 545, - "date": "2017-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 273, - "date": "2017-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 57, - "date": "2017-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 89, - "date": "2017-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 113, - "date": "2017-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 797, - "date": "2017-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 740, - "date": "2017-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 889, - "date": "2017-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 906, - "date": "2017-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1853, - "date": "2017-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 63, - "date": "2017-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 634, - "date": "2017-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 312, - "date": "2017-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 562, - "date": "2017-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 282, - "date": "2017-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 58, - "date": "2017-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 92, - "date": "2017-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 117, - "date": "2017-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 822, - "date": "2017-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 764, - "date": "2017-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 917, - "date": "2017-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 936, - "date": "2017-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1814, - "date": "2017-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 62, - "date": "2017-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 621, - "date": "2017-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 306, - "date": "2017-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 550, - "date": "2017-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 276, - "date": "2017-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 57, - "date": "2017-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 90, - "date": "2017-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 114, - "date": "2017-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 805, - "date": "2017-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 748, - "date": "2017-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 898, - "date": "2017-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 916, - "date": "2017-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1843, - "date": "2017-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 63, - "date": "2017-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 630, - "date": "2017-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 310, - "date": "2017-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 559, - "date": "2017-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 280, - "date": "2017-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 58, - "date": "2017-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 91, - "date": "2017-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 116, - "date": "2017-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 818, - "date": "2017-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 760, - "date": "2017-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 912, - "date": "2017-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 931, - "date": "2017-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1826, - "date": "2017-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 62, - "date": "2017-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 625, - "date": "2017-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 308, - "date": "2017-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 554, - "date": "2017-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 278, - "date": "2017-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 58, - "date": "2017-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 90, - "date": "2017-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 115, - "date": "2017-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 810, - "date": "2017-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 753, - "date": "2017-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 904, - "date": "2017-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 922, - "date": "2017-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1829, - "date": "2017-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 62, - "date": "2017-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 626, - "date": "2017-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 308, - "date": "2017-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 555, - "date": "2017-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 278, - "date": "2017-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 58, - "date": "2017-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 90, - "date": "2017-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 115, - "date": "2017-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 812, - "date": "2017-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 754, - "date": "2017-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 906, - "date": "2017-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 923, - "date": "2017-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1785, - "date": "2017-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 61, - "date": "2017-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 611, - "date": "2017-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 301, - "date": "2017-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 542, - "date": "2017-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 271, - "date": "2017-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 56, - "date": "2017-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 88, - "date": "2017-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 112, - "date": "2017-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 792, - "date": "2017-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 736, - "date": "2017-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 884, - "date": "2017-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 901, - "date": "2017-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1776, - "date": "2017-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 60, - "date": "2017-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 608, - "date": "2017-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 299, - "date": "2017-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 539, - "date": "2017-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 270, - "date": "2017-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 56, - "date": "2017-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 88, - "date": "2017-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 112, - "date": "2017-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 788, - "date": "2017-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 732, - "date": "2017-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 879, - "date": "2017-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 897, - "date": "2017-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1766, - "date": "2017-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 60, - "date": "2017-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 604, - "date": "2017-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 298, - "date": "2017-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 536, - "date": "2017-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 268, - "date": "2017-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 56, - "date": "2017-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 87, - "date": "2017-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 111, - "date": "2017-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 784, - "date": "2017-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 728, - "date": "2017-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 874, - "date": "2017-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 892, - "date": "2017-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1765, - "date": "2017-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 60, - "date": "2017-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 604, - "date": "2017-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 297, - "date": "2017-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 536, - "date": "2017-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 268, - "date": "2017-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 56, - "date": "2017-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 87, - "date": "2017-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 111, - "date": "2017-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 783, - "date": "2017-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 728, - "date": "2017-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 874, - "date": "2017-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 891, - "date": "2017-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1696, - "date": "2017-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 58, - "date": "2017-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 580, - "date": "2017-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 286, - "date": "2017-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 515, - "date": "2017-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 258, - "date": "2017-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 54, - "date": "2017-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 84, - "date": "2017-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 107, - "date": "2017-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 753, - "date": "2017-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 699, - "date": "2017-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 840, - "date": "2017-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 856, - "date": "2017-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1678, - "date": "2017-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 57, - "date": "2017-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 574, - "date": "2017-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 283, - "date": "2017-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 509, - "date": "2017-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 255, - "date": "2017-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 53, - "date": "2017-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 83, - "date": "2017-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 106, - "date": "2017-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 745, - "date": "2017-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 692, - "date": "2017-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 831, - "date": "2017-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 847, - "date": "2017-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1678, - "date": "2018-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 57, - "date": "2018-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 574, - "date": "2018-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 283, - "date": "2018-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 509, - "date": "2018-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 255, - "date": "2018-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 53, - "date": "2018-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 83, - "date": "2018-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 106, - "date": "2018-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 745, - "date": "2018-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 692, - "date": "2018-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 831, - "date": "2018-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 847, - "date": "2018-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1708, - "date": "2018-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 58, - "date": "2018-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 584, - "date": "2018-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 288, - "date": "2018-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 518, - "date": "2018-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 260, - "date": "2018-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 54, - "date": "2018-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 84, - "date": "2018-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 108, - "date": "2018-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 758, - "date": "2018-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 704, - "date": "2018-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 846, - "date": "2018-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 862, - "date": "2018-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1743, - "date": "2018-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 59, - "date": "2018-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 596, - "date": "2018-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 294, - "date": "2018-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 529, - "date": "2018-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 265, - "date": "2018-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 55, - "date": "2018-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 86, - "date": "2018-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 110, - "date": "2018-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 774, - "date": "2018-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 718, - "date": "2018-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 863, - "date": "2018-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 880, - "date": "2018-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1727, - "date": "2018-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 59, - "date": "2018-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 591, - "date": "2018-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 291, - "date": "2018-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 524, - "date": "2018-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 262, - "date": "2018-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 55, - "date": "2018-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 85, - "date": "2018-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 109, - "date": "2018-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 767, - "date": "2018-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 712, - "date": "2018-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 855, - "date": "2018-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 872, - "date": "2018-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1733, - "date": "2018-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 59, - "date": "2018-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 593, - "date": "2018-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 292, - "date": "2018-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 526, - "date": "2018-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 263, - "date": "2018-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 55, - "date": "2018-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 86, - "date": "2018-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 109, - "date": "2018-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 769, - "date": "2018-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 714, - "date": "2018-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 858, - "date": "2018-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 875, - "date": "2018-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1659, - "date": "2018-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 56, - "date": "2018-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 568, - "date": "2018-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 279, - "date": "2018-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 503, - "date": "2018-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 252, - "date": "2018-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 52, - "date": "2018-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 82, - "date": "2018-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 104, - "date": "2018-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 736, - "date": "2018-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 684, - "date": "2018-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 821, - "date": "2018-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 838, - "date": "2018-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1680, - "date": "2018-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 57, - "date": "2018-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 575, - "date": "2018-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 283, - "date": "2018-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 510, - "date": "2018-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 255, - "date": "2018-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 53, - "date": "2018-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 83, - "date": "2018-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 106, - "date": "2018-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 746, - "date": "2018-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 692, - "date": "2018-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 832, - "date": "2018-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 848, - "date": "2018-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1692, - "date": "2018-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 58, - "date": "2018-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 579, - "date": "2018-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 285, - "date": "2018-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 513, - "date": "2018-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 257, - "date": "2018-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 53, - "date": "2018-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 84, - "date": "2018-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 107, - "date": "2018-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 751, - "date": "2018-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 697, - "date": "2018-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 838, - "date": "2018-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 854, - "date": "2018-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1681, - "date": "2018-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 57, - "date": "2018-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 575, - "date": "2018-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 283, - "date": "2018-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 510, - "date": "2018-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 256, - "date": "2018-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 53, - "date": "2018-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 83, - "date": "2018-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 106, - "date": "2018-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 746, - "date": "2018-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 693, - "date": "2018-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 832, - "date": "2018-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 849, - "date": "2018-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1662, - "date": "2018-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 57, - "date": "2018-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 569, - "date": "2018-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 280, - "date": "2018-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 504, - "date": "2018-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 253, - "date": "2018-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 52, - "date": "2018-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 82, - "date": "2018-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 105, - "date": "2018-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 738, - "date": "2018-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 685, - "date": "2018-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 823, - "date": "2018-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 839, - "date": "2018-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1698, - "date": "2018-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 58, - "date": "2018-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 581, - "date": "2018-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 286, - "date": "2018-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 515, - "date": "2018-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 258, - "date": "2018-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 54, - "date": "2018-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 84, - "date": "2018-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 107, - "date": "2018-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 754, - "date": "2018-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 700, - "date": "2018-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 841, - "date": "2018-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 857, - "date": "2018-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1675, - "date": "2018-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 57, - "date": "2018-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 573, - "date": "2018-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 282, - "date": "2018-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 508, - "date": "2018-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 255, - "date": "2018-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 53, - "date": "2018-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 83, - "date": "2018-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 105, - "date": "2018-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 743, - "date": "2018-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 690, - "date": "2018-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 829, - "date": "2018-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 846, - "date": "2018-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1680, - "date": "2019-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 57, - "date": "2019-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 575, - "date": "2019-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 283, - "date": "2019-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 510, - "date": "2019-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 255, - "date": "2019-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 53, - "date": "2019-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 83, - "date": "2019-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 106, - "date": "2019-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 746, - "date": "2019-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 692, - "date": "2019-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 832, - "date": "2019-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 848, - "date": "2019-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1691, - "date": "2019-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 58, - "date": "2019-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 578, - "date": "2019-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 285, - "date": "2019-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 513, - "date": "2019-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 257, - "date": "2019-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 53, - "date": "2019-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 84, - "date": "2019-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 106, - "date": "2019-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 751, - "date": "2019-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 697, - "date": "2019-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 837, - "date": "2019-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 854, - "date": "2019-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1726, - "date": "2019-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 59, - "date": "2019-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 590, - "date": "2019-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 291, - "date": "2019-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 524, - "date": "2019-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 262, - "date": "2019-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 54, - "date": "2019-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 85, - "date": "2019-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 109, - "date": "2019-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 766, - "date": "2019-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 711, - "date": "2019-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 855, - "date": "2019-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 871, - "date": "2019-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1759, - "date": "2019-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 60, - "date": "2019-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 602, - "date": "2019-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 296, - "date": "2019-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 534, - "date": "2019-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 267, - "date": "2019-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 56, - "date": "2019-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 87, - "date": "2019-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 111, - "date": "2019-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 781, - "date": "2019-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 725, - "date": "2019-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 871, - "date": "2019-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 888, - "date": "2019-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1793, - "date": "2019-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 61, - "date": "2019-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 613, - "date": "2019-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 302, - "date": "2019-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 544, - "date": "2019-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 273, - "date": "2019-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 57, - "date": "2019-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 89, - "date": "2019-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 113, - "date": "2019-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 796, - "date": "2019-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 739, - "date": "2019-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 888, - "date": "2019-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 905, - "date": "2019-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1790, - "date": "2019-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 61, - "date": "2019-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 612, - "date": "2019-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 302, - "date": "2019-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 543, - "date": "2019-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 272, - "date": "2019-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 56, - "date": "2019-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 88, - "date": "2019-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 113, - "date": "2019-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 794, - "date": "2019-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 738, - "date": "2019-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 886, - "date": "2019-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 904, - "date": "2019-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1721, - "date": "2019-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 59, - "date": "2019-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 589, - "date": "2019-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 290, - "date": "2019-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 522, - "date": "2019-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 262, - "date": "2019-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 54, - "date": "2019-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 85, - "date": "2019-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 108, - "date": "2019-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 764, - "date": "2019-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 709, - "date": "2019-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 852, - "date": "2019-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 869, - "date": "2019-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1779, - "date": "2019-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 61, - "date": "2019-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 609, - "date": "2019-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 300, - "date": "2019-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 540, - "date": "2019-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 270, - "date": "2019-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 56, - "date": "2019-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 88, - "date": "2019-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 112, - "date": "2019-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 790, - "date": "2019-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 733, - "date": "2019-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 881, - "date": "2019-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 898, - "date": "2019-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1786, - "date": "2019-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 61, - "date": "2019-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 611, - "date": "2019-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 301, - "date": "2019-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 542, - "date": "2019-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 271, - "date": "2019-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 56, - "date": "2019-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 88, - "date": "2019-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 112, - "date": "2019-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 793, - "date": "2019-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 736, - "date": "2019-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 884, - "date": "2019-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 902, - "date": "2019-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1801, - "date": "2019-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 61, - "date": "2019-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 616, - "date": "2019-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 303, - "date": "2019-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 546, - "date": "2019-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 274, - "date": "2019-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 57, - "date": "2019-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 89, - "date": "2019-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 113, - "date": "2019-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 799, - "date": "2019-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 742, - "date": "2019-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 892, - "date": "2019-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 909, - "date": "2019-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1776, - "date": "2019-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 60, - "date": "2019-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 608, - "date": "2019-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 299, - "date": "2019-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 539, - "date": "2019-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 270, - "date": "2019-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 56, - "date": "2019-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 88, - "date": "2019-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 112, - "date": "2019-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 788, - "date": "2019-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 732, - "date": "2019-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 879, - "date": "2019-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 897, - "date": "2019-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1740, - "date": "2019-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 59, - "date": "2019-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 595, - "date": "2019-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 293, - "date": "2019-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 528, - "date": "2019-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 264, - "date": "2019-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 55, - "date": "2019-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 86, - "date": "2019-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 110, - "date": "2019-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 772, - "date": "2019-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 717, - "date": "2019-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 861, - "date": "2019-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 879, - "date": "2019-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1794, - "date": "2020-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 61, - "date": "2020-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 614, - "date": "2020-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 302, - "date": "2020-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 544, - "date": "2020-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 273, - "date": "2020-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 57, - "date": "2020-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 89, - "date": "2020-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 113, - "date": "2020-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 796, - "date": "2020-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 739, - "date": "2020-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 888, - "date": "2020-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 906, - "date": "2020-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1783, - "date": "2020-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 61, - "date": "2020-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 610, - "date": "2020-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 300, - "date": "2020-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 541, - "date": "2020-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 271, - "date": "2020-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 56, - "date": "2020-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 88, - "date": "2020-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 112, - "date": "2020-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 791, - "date": "2020-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 735, - "date": "2020-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 883, - "date": "2020-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 900, - "date": "2020-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1615, - "date": "2020-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 55, - "date": "2020-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 552, - "date": "2020-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 272, - "date": "2020-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 490, - "date": "2020-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 245, - "date": "2020-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 51, - "date": "2020-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 80, - "date": "2020-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 102, - "date": "2020-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 717, - "date": "2020-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 666, - "date": "2020-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 800, - "date": "2020-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 815, - "date": "2020-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1439, - "date": "2020-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 49, - "date": "2020-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 492, - "date": "2020-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 242, - "date": "2020-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 437, - "date": "2020-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 219, - "date": "2020-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 45, - "date": "2020-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 71, - "date": "2020-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 91, - "date": "2020-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 639, - "date": "2020-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 593, - "date": "2020-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 712, - "date": "2020-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 727, - "date": "2020-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1412, - "date": "2020-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 48, - "date": "2020-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 483, - "date": "2020-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 238, - "date": "2020-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 428, - "date": "2020-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 215, - "date": "2020-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 45, - "date": "2020-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 70, - "date": "2020-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 89, - "date": "2020-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 627, - "date": "2020-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 582, - "date": "2020-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 699, - "date": "2020-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 713, - "date": "2020-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1365, - "date": "2020-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 46, - "date": "2020-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 467, - "date": "2020-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 230, - "date": "2020-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 414, - "date": "2020-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 207, - "date": "2020-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 43, - "date": "2020-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 67, - "date": "2020-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 86, - "date": "2020-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 606, - "date": "2020-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 563, - "date": "2020-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 676, - "date": "2020-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 689, - "date": "2020-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1362, - "date": "2020-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 46, - "date": "2020-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 466, - "date": "2020-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 229, - "date": "2020-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 413, - "date": "2020-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 207, - "date": "2020-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 43, - "date": "2020-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 67, - "date": "2020-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 86, - "date": "2020-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 605, - "date": "2020-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 561, - "date": "2020-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 674, - "date": "2020-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 688, - "date": "2020-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1321, - "date": "2020-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 45, - "date": "2020-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 452, - "date": "2020-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 223, - "date": "2020-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 401, - "date": "2020-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 201, - "date": "2020-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 42, - "date": "2020-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 65, - "date": "2020-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 83, - "date": "2020-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 586, - "date": "2020-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 545, - "date": "2020-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 654, - "date": "2020-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 667, - "date": "2020-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, -] -`; - -exports[`data fetching for metric PrisonRecidivismRateHistorical 1`] = ` -Array [ - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.2344411062279863, - "rateDenominator": 85, - "rateNumerator": 19, - "releaseCohort": 2018, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.4589812319145348, - "rateDenominator": 117, - "rateNumerator": 53, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "35-39", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.52198823245566, - "rateDenominator": 58, - "rateNumerator": 30, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "25-29", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.32489626832663143, - "rateDenominator": 61, - "rateNumerator": 19, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "<25", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.27464620972057485, - "rateDenominator": 77, - "rateNumerator": 21, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.27362751847920186, - "rateDenominator": 64, - "rateNumerator": 17, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.357450165622253, - "rateDenominator": 28, - "rateNumerator": 10, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.5575857681507217, - "rateDenominator": 128, - "rateNumerator": 71, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.4266951987202952, - "rateDenominator": 187, - "rateNumerator": 79, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "35-39", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5672093468482201, - "rateDenominator": 55, - "rateNumerator": 31, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.21147104581076315, - "rateDenominator": 24, - "rateNumerator": 5, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 8, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.33696307902300165, - "rateDenominator": 21, - "rateNumerator": 7, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.29087872181239455, - "rateDenominator": 81, - "rateNumerator": 23, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.5731559016149155, - "rateDenominator": 107, - "rateNumerator": 61, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.23323275706861413, - "rateDenominator": 78, - "rateNumerator": 18, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 9, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.8340453124867694, - "rateDenominator": 161, - "rateNumerator": 134, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "25-29", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.21644253915033027, - "rateDenominator": 53, - "rateNumerator": 11, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.47039436937676626, - "rateDenominator": 148, - "rateNumerator": 69, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.6761908955229591, - "rateDenominator": 444, - "rateNumerator": 300, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.5168155649382132, - "rateDenominator": 283, - "rateNumerator": 146, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.21745120886702662, - "rateDenominator": 283, - "rateNumerator": 61, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.22507999200913387, - "rateDenominator": 67, - "rateNumerator": 15, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.50948172083933, - "rateDenominator": 128, - "rateNumerator": 65, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.2166402424380799, - "rateDenominator": 81, - "rateNumerator": 17, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "25-29", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.17958179385205125, - "rateDenominator": 61, - "rateNumerator": 10, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5982325872860395, - "rateDenominator": 444, - "rateNumerator": 265, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 8, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.3215001534296167, - "rateDenominator": 67, - "rateNumerator": 21, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "25-29", - "followupYears": 8, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.6317906354198282, - "rateDenominator": 96, - "rateNumerator": 60, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "35-39", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.6818157874275662, - "rateDenominator": 55, - "rateNumerator": 37, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "35-39", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.30479963802080284, - "rateDenominator": 69, - "rateNumerator": 21, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "40<", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3829962083027624, - "rateDenominator": 17, - "rateNumerator": 6, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 9, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.48244253510047985, - "rateDenominator": 160, - "rateNumerator": 77, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.32725349625274136, - "rateDenominator": 98, - "rateNumerator": 32, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.4394398263241606, - "rateDenominator": 81, - "rateNumerator": 35, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 8, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.4396605144052146, - "rateDenominator": 122, - "rateNumerator": 53, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.39777861180132135, - "rateDenominator": 98, - "rateNumerator": 38, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.3964960741979738, - "rateDenominator": 23, - "rateNumerator": 9, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 9, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.6377116366597764, - "rateDenominator": 283, - "rateNumerator": 180, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.7473516817072878, - "rateDenominator": 23, - "rateNumerator": 17, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "35-39", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.1984060554949988, - "rateDenominator": 58, - "rateNumerator": 11, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.3348862947670234, - "rateDenominator": 176, - "rateNumerator": 58, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "40<", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3949204100947452, - "rateDenominator": 18, - "rateNumerator": 7, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.3839336630680912, - "rateDenominator": 31, - "rateNumerator": 11, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "30-34", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.45957536536763044, - "rateDenominator": 117, - "rateNumerator": 53, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.4469079604452117, - "rateDenominator": 128, - "rateNumerator": 57, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "30-34", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.26239036698643864, - "rateDenominator": 111, - "rateNumerator": 29, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.25418990463843955, - "rateDenominator": 31, - "rateNumerator": 7, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 10, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.4898789966637696, - "rateDenominator": 160, - "rateNumerator": 78, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.2723016337800556, - "rateDenominator": 180, - "rateNumerator": 49, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "35-39", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.25900242537246765, - "rateDenominator": 55, - "rateNumerator": 14, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.41452789459406847, - "rateDenominator": 148, - "rateNumerator": 61, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "35-39", - "followupYears": 10, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.46148398353866976, - "rateDenominator": 86, - "rateNumerator": 39, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "40<", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.40216534320298586, - "rateDenominator": 15, - "rateNumerator": 6, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5705945384276757, - "rateDenominator": 444, - "rateNumerator": 253, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.5189063069808502, - "rateDenominator": 89, - "rateNumerator": 46, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "25-29", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.27174598364307445, - "rateDenominator": 60, - "rateNumerator": 16, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.51971248789426, - "rateDenominator": 283, - "rateNumerator": 147, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.4690662806909096, - "rateDenominator": 147, - "rateNumerator": 68, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "25-29", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.1904522937993788, - "rateDenominator": 76, - "rateNumerator": 14, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.46453214447511343, - "rateDenominator": 98, - "rateNumerator": 45, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "25-29", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.19997184484505684, - "rateDenominator": 81, - "rateNumerator": 16, - "releaseCohort": 2018, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3193792918425292, - "rateDenominator": 441, - "rateNumerator": 140, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.666258238192844, - "rateDenominator": 444, - "rateNumerator": 295, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.2445419621286052, - "rateDenominator": 64, - "rateNumerator": 15, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "<25", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.44484105840224253, - "rateDenominator": 118, - "rateNumerator": 52, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 8, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.2572143479427143, - "rateDenominator": 20, - "rateNumerator": 5, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.40788685397686825, - "rateDenominator": 128, - "rateNumerator": 52, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "35-39", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.6914356770871348, - "rateDenominator": 55, - "rateNumerator": 38, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.3983710064793252, - "rateDenominator": 176, - "rateNumerator": 70, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "35-39", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3099595501149747, - "rateDenominator": 48, - "rateNumerator": 14, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 8, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.6217165709131224, - "rateDenominator": 283, - "rateNumerator": 175, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 8, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.8220948369520724, - "rateDenominator": 161, - "rateNumerator": 132, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.16885464931952435, - "rateDenominator": 449, - "rateNumerator": 75, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.369943071461763, - "rateDenominator": 122, - "rateNumerator": 45, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.343162119157779, - "rateDenominator": 277, - "rateNumerator": 95, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.22152952582196606, - "rateDenominator": 136, - "rateNumerator": 30, - "releaseCohort": 2018, - }, - Object { - "ageBucket": "<25", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.6523486808493775, - "rateDenominator": 65, - "rateNumerator": 42, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.24568881676118148, - "rateDenominator": 373, - "rateNumerator": 91, - "releaseCohort": 2018, - }, - Object { - "ageBucket": "<25", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.6038010722786906, - "rateDenominator": 73, - "rateNumerator": 44, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.3544461745915588, - "rateDenominator": 103, - "rateNumerator": 36, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.2952311242183955, - "rateDenominator": 160, - "rateNumerator": 47, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "40<", - "followupYears": 9, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.744668503783271, - "rateDenominator": 27, - "rateNumerator": 20, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.4294386473668095, - "rateDenominator": 31, - "rateNumerator": 13, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.41721045690686925, - "rateDenominator": 157, - "rateNumerator": 65, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.306062107789416, - "rateDenominator": 102, - "rateNumerator": 31, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "35-39", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.41605356779689917, - "rateDenominator": 86, - "rateNumerator": 35, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.3618074406179642, - "rateDenominator": 180, - "rateNumerator": 65, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 10, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.40557169931202725, - "rateDenominator": 441, - "rateNumerator": 178, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "30-34", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.583456154510313, - "rateDenominator": 78, - "rateNumerator": 45, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.6540240744845957, - "rateDenominator": 23, - "rateNumerator": 15, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.4075859851020657, - "rateDenominator": 67, - "rateNumerator": 27, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.22346742189120217, - "rateDenominator": 20, - "rateNumerator": 4, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "25-29", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.45186697533406744, - "rateDenominator": 64, - "rateNumerator": 28, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "40<", - "followupYears": 8, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.7291260809592524, - "rateDenominator": 27, - "rateNumerator": 19, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "30-34", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.2997419121789921, - "rateDenominator": 75, - "rateNumerator": 22, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.7082316517408129, - "rateDenominator": 444, - "rateNumerator": 314, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.4998026511464744, - "rateDenominator": 56, - "rateNumerator": 27, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "<25", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5365368162411651, - "rateDenominator": 74, - "rateNumerator": 39, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.4547946873943561, - "rateDenominator": 147, - "rateNumerator": 66, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.2709811407259112, - "rateDenominator": 38, - "rateNumerator": 10, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "40<", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.20849245193230387, - "rateDenominator": 26, - "rateNumerator": 5, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "<25", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.47336528254444127, - "rateDenominator": 117, - "rateNumerator": 55, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.5426490716943321, - "rateDenominator": 81, - "rateNumerator": 43, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 9, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.673114460991018, - "rateDenominator": 121, - "rateNumerator": 81, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.5854704411684923, - "rateDenominator": 107, - "rateNumerator": 62, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.37725889822380276, - "rateDenominator": 34, - "rateNumerator": 12, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.4419449149667738, - "rateDenominator": 147, - "rateNumerator": 64, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "40<", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.2786296045784195, - "rateDenominator": 17, - "rateNumerator": 4, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "35-39", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4896695072293015, - "rateDenominator": 69, - "rateNumerator": 33, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.27671851445811385, - "rateDenominator": 102, - "rateNumerator": 28, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.3830518271141824, - "rateDenominator": 103, - "rateNumerator": 39, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "25-29", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.27996198328411986, - "rateDenominator": 53, - "rateNumerator": 14, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "35-39", - "followupYears": 8, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.44020513072526934, - "rateDenominator": 86, - "rateNumerator": 37, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "40<", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4018397875546988, - "rateDenominator": 27, - "rateNumerator": 10, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.18591688919978389, - "rateDenominator": 277, - "rateNumerator": 51, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "<25", - "followupYears": 8, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5348489467678781, - "rateDenominator": 116, - "rateNumerator": 62, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.518493251846552, - "rateDenominator": 101, - "rateNumerator": 52, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.34490679976430094, - "rateDenominator": 103, - "rateNumerator": 35, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "40<", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.37039467193523745, - "rateDenominator": 26, - "rateNumerator": 9, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.5265209266302529, - "rateDenominator": 80, - "rateNumerator": 42, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "<25", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5017166528178767, - "rateDenominator": 116, - "rateNumerator": 58, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.37438234965936035, - "rateDenominator": 80, - "rateNumerator": 29, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "30-34", - "followupYears": 10, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4790513465574513, - "rateDenominator": 117, - "rateNumerator": 56, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.5198945701732638, - "rateDenominator": 97, - "rateNumerator": 50, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3966145512517424, - "rateDenominator": 294, - "rateNumerator": 116, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 8, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.4364229537023725, - "rateDenominator": 157, - "rateNumerator": 68, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "35-39", - "followupYears": 8, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3626479996725708, - "rateDenominator": 48, - "rateNumerator": 17, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.5148934948635625, - "rateDenominator": 107, - "rateNumerator": 55, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.1647475757518738, - "rateDenominator": 21, - "rateNumerator": 3, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.38453982608585535, - "rateDenominator": 160, - "rateNumerator": 61, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.3611062792702695, - "rateDenominator": 101, - "rateNumerator": 36, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.3322583401283855, - "rateDenominator": 121, - "rateNumerator": 40, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "40<", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.28473022897722605, - "rateDenominator": 15, - "rateNumerator": 4, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "<25", - "followupYears": 10, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5537755684584313, - "rateDenominator": 116, - "rateNumerator": 64, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "<25", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.1754473892856948, - "rateDenominator": 117, - "rateNumerator": 20, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.45023441242344864, - "rateDenominator": 160, - "rateNumerator": 72, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.4463142625259243, - "rateDenominator": 67, - "rateNumerator": 29, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.22098688455329957, - "rateDenominator": 21, - "rateNumerator": 4, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 8, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.6782189685678708, - "rateDenominator": 100, - "rateNumerator": 67, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.3201047208048397, - "rateDenominator": 101, - "rateNumerator": 32, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "30-34", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4453783337960473, - "rateDenominator": 118, - "rateNumerator": 52, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.4796190931499173, - "rateDenominator": 31, - "rateNumerator": 14, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.5331008655183126, - "rateDenominator": 148, - "rateNumerator": 78, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "<25", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.2814855085497988, - "rateDenominator": 65, - "rateNumerator": 18, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "40<", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5123821899692809, - "rateDenominator": 18, - "rateNumerator": 9, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "30-34", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5224831546524794, - "rateDenominator": 65, - "rateNumerator": 33, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.39065895819026225, - "rateDenominator": 122, - "rateNumerator": 47, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.45046609809901517, - "rateDenominator": 121, - "rateNumerator": 54, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "<25", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.40534647028786386, - "rateDenominator": 77, - "rateNumerator": 31, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "35-39", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3626761880218852, - "rateDenominator": 69, - "rateNumerator": 25, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "25-29", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.36382424006480313, - "rateDenominator": 96, - "rateNumerator": 34, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 9, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.5907199734160046, - "rateDenominator": 101, - "rateNumerator": 59, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.3168381080878098, - "rateDenominator": 76, - "rateNumerator": 24, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.2478879945957649, - "rateDenominator": 20, - "rateNumerator": 4, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.6203902398168492, - "rateDenominator": 100, - "rateNumerator": 62, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.38997840956410185, - "rateDenominator": 76, - "rateNumerator": 29, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.6182672487431391, - "rateDenominator": 23, - "rateNumerator": 14, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.23546230193703543, - "rateDenominator": 39, - "rateNumerator": 9, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.19440650315284774, - "rateDenominator": 153, - "rateNumerator": 29, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "35-39", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.489013851445882, - "rateDenominator": 58, - "rateNumerator": 28, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.23067628862648182, - "rateDenominator": 246, - "rateNumerator": 56, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 8, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.7338674573867263, - "rateDenominator": 444, - "rateNumerator": 325, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "35-39", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.43843924684033925, - "rateDenominator": 69, - "rateNumerator": 30, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.5830756445494887, - "rateDenominator": 101, - "rateNumerator": 58, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 9, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.7438531991544154, - "rateDenominator": 444, - "rateNumerator": 330, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.3070949778000569, - "rateDenominator": 21, - "rateNumerator": 6, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.47351066765723426, - "rateDenominator": 225, - "rateNumerator": 106, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "30-34", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.20889895617423765, - "rateDenominator": 75, - "rateNumerator": 15, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "25-29", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.34958843720246047, - "rateDenominator": 64, - "rateNumerator": 22, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.2159373064170029, - "rateDenominator": 36, - "rateNumerator": 7, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "35-39", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.47188506331850644, - "rateDenominator": 87, - "rateNumerator": 41, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.3193691084044764, - "rateDenominator": 67, - "rateNumerator": 21, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "25-29", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.24273890949526772, - "rateDenominator": 53, - "rateNumerator": 12, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.3328137444970147, - "rateDenominator": 161, - "rateNumerator": 53, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "40<", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4473028009820661, - "rateDenominator": 18, - "rateNumerator": 8, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3701610872936188, - "rateDenominator": 441, - "rateNumerator": 163, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.13441855437973446, - "rateDenominator": 35, - "rateNumerator": 4, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.3384422015280911, - "rateDenominator": 103, - "rateNumerator": 34, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.1834922516553881, - "rateDenominator": 163, - "rateNumerator": 29, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "40<", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3790771647009794, - "rateDenominator": 15, - "rateNumerator": 5, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "35-39", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3616385113308875, - "rateDenominator": 86, - "rateNumerator": 31, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.4842804591594073, - "rateDenominator": 101, - "rateNumerator": 48, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.45025738167341484, - "rateDenominator": 82, - "rateNumerator": 36, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "25-29", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3215502535351304, - "rateDenominator": 60, - "rateNumerator": 19, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.2826996614294788, - "rateDenominator": 101, - "rateNumerator": 28, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.26870054799289456, - "rateDenominator": 82, - "rateNumerator": 22, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "30-34", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.1655699763765434, - "rateDenominator": 118, - "rateNumerator": 19, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.1883319862716896, - "rateDenominator": 98, - "rateNumerator": 18, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.2854124093359975, - "rateDenominator": 22, - "rateNumerator": 6, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 8, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.38672108481674616, - "rateDenominator": 441, - "rateNumerator": 170, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "25-29", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.23528428752429068, - "rateDenominator": 76, - "rateNumerator": 17, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "<25", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4451453983902271, - "rateDenominator": 65, - "rateNumerator": 28, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.5756284353001164, - "rateDenominator": 101, - "rateNumerator": 58, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "25-29", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.2618211347889127, - "rateDenominator": 53, - "rateNumerator": 13, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "<25", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5193031386346141, - "rateDenominator": 116, - "rateNumerator": 60, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "30-34", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.21466264783028907, - "rateDenominator": 74, - "rateNumerator": 15, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.4607570761616222, - "rateDenominator": 89, - "rateNumerator": 41, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4261987401506558, - "rateDenominator": 283, - "rateNumerator": 120, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.6787605809206916, - "rateDenominator": 161, - "rateNumerator": 109, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.38790747657753666, - "rateDenominator": 94, - "rateNumerator": 36, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.5091166576211785, - "rateDenominator": 148, - "rateNumerator": 75, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "40<", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.2389449483977079, - "rateDenominator": 17, - "rateNumerator": 4, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "40<", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.33814057841517564, - "rateDenominator": 15, - "rateNumerator": 5, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.49433546394773176, - "rateDenominator": 98, - "rateNumerator": 48, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "30-34", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.421201493411186, - "rateDenominator": 117, - "rateNumerator": 49, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "40<", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.475954238325523, - "rateDenominator": 26, - "rateNumerator": 12, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.43165980259772796, - "rateDenominator": 82, - "rateNumerator": 35, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 7, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.3504590118208814, - "rateDenominator": 281, - "rateNumerator": 98, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "30-34", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.24449302238939108, - "rateDenominator": 65, - "rateNumerator": 15, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "<25", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5001636886397268, - "rateDenominator": 65, - "rateNumerator": 32, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "30-34", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4904623100130624, - "rateDenominator": 65, - "rateNumerator": 31, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.525826140144171, - "rateDenominator": 89, - "rateNumerator": 46, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.49613601348253356, - "rateDenominator": 94, - "rateNumerator": 46, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "30-34", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.6645297678435097, - "rateDenominator": 78, - "rateNumerator": 51, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.38722683657580903, - "rateDenominator": 101, - "rateNumerator": 39, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.22419741926015302, - "rateDenominator": 82, - "rateNumerator": 18, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 8, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.3828764321470271, - "rateDenominator": 38, - "rateNumerator": 14, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.19948982194182627, - "rateDenominator": 28, - "rateNumerator": 5, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.2811543903745677, - "rateDenominator": 24, - "rateNumerator": 6, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.4004864028444184, - "rateDenominator": 81, - "rateNumerator": 32, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.5754214497245465, - "rateDenominator": 23, - "rateNumerator": 13, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.29462853014627594, - "rateDenominator": 23, - "rateNumerator": 6, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 10, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.5061768023816637, - "rateDenominator": 147, - "rateNumerator": 74, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "25-29", - "followupYears": 8, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.28146866101992996, - "rateDenominator": 53, - "rateNumerator": 14, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.6548162550230485, - "rateDenominator": 25, - "rateNumerator": 16, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.22470741907303743, - "rateDenominator": 157, - "rateNumerator": 35, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.1942317434693651, - "rateDenominator": 39, - "rateNumerator": 7, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.3301672668708734, - "rateDenominator": 21, - "rateNumerator": 6, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "25-29", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.27371937983751893, - "rateDenominator": 96, - "rateNumerator": 26, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.24869136439558084, - "rateDenominator": 281, - "rateNumerator": 69, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.21738006933996534, - "rateDenominator": 38, - "rateNumerator": 8, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "40<", - "followupYears": 9, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5633022376608456, - "rateDenominator": 26, - "rateNumerator": 14, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "35-39", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.40164916387916744, - "rateDenominator": 82, - "rateNumerator": 32, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "ALL", - "followupYears": 7, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.509561799964995, - "rateDenominator": 180, - "rateNumerator": 91, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.7838252801849588, - "rateDenominator": 161, - "rateNumerator": 126, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.33309356613108093, - "rateDenominator": 286, - "rateNumerator": 95, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.26766800407273006, - "rateDenominator": 21, - "rateNumerator": 5, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.48332839350464885, - "rateDenominator": 115, - "rateNumerator": 55, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.23480046292399714, - "rateDenominator": 35, - "rateNumerator": 8, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "25-29", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.36849245461479146, - "rateDenominator": 64, - "rateNumerator": 23, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.26150229335653913, - "rateDenominator": 148, - "rateNumerator": 38, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.11655613222503687, - "rateDenominator": 20, - "rateNumerator": 2, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5463439792721764, - "rateDenominator": 283, - "rateNumerator": 154, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.30050333718406214, - "rateDenominator": 56, - "rateNumerator": 16, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.3463811600337129, - "rateDenominator": 163, - "rateNumerator": 56, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "40<", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.2911412370161528, - "rateDenominator": 21, - "rateNumerator": 6, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.42213842642226784, - "rateDenominator": 140, - "rateNumerator": 59, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.29362782831133005, - "rateDenominator": 283, - "rateNumerator": 83, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.3078691384827722, - "rateDenominator": 122, - "rateNumerator": 37, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "40<", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.23860421437773077, - "rateDenominator": 21, - "rateNumerator": 5, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.2139377055100718, - "rateDenominator": 38, - "rateNumerator": 8, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.290178291554239, - "rateDenominator": 281, - "rateNumerator": 81, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "30-34", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3253857412362653, - "rateDenominator": 117, - "rateNumerator": 38, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 7, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.5763387617809272, - "rateDenominator": 89, - "rateNumerator": 51, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "30-34", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.2676357398845093, - "rateDenominator": 99, - "rateNumerator": 26, - "releaseCohort": 2018, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.4517150431938563, - "rateDenominator": 94, - "rateNumerator": 42, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "40<", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.25577378146379975, - "rateDenominator": 27, - "rateNumerator": 6, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "30-34", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.37810603444165475, - "rateDenominator": 117, - "rateNumerator": 44, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.3299173865620453, - "rateDenominator": 24, - "rateNumerator": 7, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "25-29", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.2702730602190739, - "rateDenominator": 96, - "rateNumerator": 25, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.48965496678141524, - "rateDenominator": 187, - "rateNumerator": 91, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "<25", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.7352758755923474, - "rateDenominator": 65, - "rateNumerator": 47, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.305787835760045, - "rateDenominator": 64, - "rateNumerator": 19, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "35-39", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3595017913313149, - "rateDenominator": 58, - "rateNumerator": 20, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "40<", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.33026048060707197, - "rateDenominator": 17, - "rateNumerator": 5, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3192384874828808, - "rateDenominator": 294, - "rateNumerator": 93, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.32853000181042846, - "rateDenominator": 444, - "rateNumerator": 145, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 10, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.6997829443886263, - "rateDenominator": 100, - "rateNumerator": 69, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.25609406210130736, - "rateDenominator": 353, - "rateNumerator": 90, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.4503086141255181, - "rateDenominator": 97, - "rateNumerator": 43, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.21604944467445295, - "rateDenominator": 176, - "rateNumerator": 38, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.21767414187899092, - "rateDenominator": 36, - "rateNumerator": 7, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.30393467040023203, - "rateDenominator": 277, - "rateNumerator": 84, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 8, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.53788153137754, - "rateDenominator": 56, - "rateNumerator": 30, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3865270115208075, - "rateDenominator": 246, - "rateNumerator": 95, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.6092384625296211, - "rateDenominator": 23, - "rateNumerator": 14, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.4193714916766112, - "rateDenominator": 76, - "rateNumerator": 31, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.27962142864209993, - "rateDenominator": 103, - "rateNumerator": 28, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "35-39", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.19055361332708326, - "rateDenominator": 86, - "rateNumerator": 16, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 9, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.49924164757456474, - "rateDenominator": 147, - "rateNumerator": 73, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "30-34", - "followupYears": 8, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4701809788716246, - "rateDenominator": 117, - "rateNumerator": 55, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.20221756415560455, - "rateDenominator": 449, - "rateNumerator": 90, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.28565634090596914, - "rateDenominator": 286, - "rateNumerator": 81, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.46971296647420574, - "rateDenominator": 80, - "rateNumerator": 37, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.44386949525372604, - "rateDenominator": 25, - "rateNumerator": 11, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.4070270934838203, - "rateDenominator": 24, - "rateNumerator": 9, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.34394405567044595, - "rateDenominator": 441, - "rateNumerator": 151, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "35-39", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.2708830191249996, - "rateDenominator": 88, - "rateNumerator": 23, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "<25", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3674417781632826, - "rateDenominator": 118, - "rateNumerator": 43, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.5149481058932498, - "rateDenominator": 81, - "rateNumerator": 41, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "30-34", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3519973419657628, - "rateDenominator": 75, - "rateNumerator": 26, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "30-34", - "followupYears": 9, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4929350529395788, - "rateDenominator": 118, - "rateNumerator": 58, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.33636041822294627, - "rateDenominator": 246, - "rateNumerator": 82, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.2548228510983277, - "rateDenominator": 23, - "rateNumerator": 5, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.17012970587331855, - "rateDenominator": 78, - "rateNumerator": 13, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.3893343086414239, - "rateDenominator": 107, - "rateNumerator": 41, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.6494253077220584, - "rateDenominator": 121, - "rateNumerator": 78, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "40<", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4627547117355523, - "rateDenominator": 17, - "rateNumerator": 7, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "30-34", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.39776608601344554, - "rateDenominator": 118, - "rateNumerator": 46, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.27858106997179166, - "rateDenominator": 149, - "rateNumerator": 41, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.24422176128374704, - "rateDenominator": 225, - "rateNumerator": 54, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 8, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5430831027815324, - "rateDenominator": 246, - "rateNumerator": 133, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.20842508519471006, - "rateDenominator": 78, - "rateNumerator": 16, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "25-29", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4334196137492674, - "rateDenominator": 96, - "rateNumerator": 41, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.1863736804013883, - "rateDenominator": 237, - "rateNumerator": 44, - "releaseCohort": 2018, - }, - Object { - "ageBucket": "30-34", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.458233909326411, - "rateDenominator": 75, - "rateNumerator": 34, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 7, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.5996141670259338, - "rateDenominator": 283, - "rateNumerator": 169, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.3726981616319488, - "rateDenominator": 100, - "rateNumerator": 37, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.2631819574138329, - "rateDenominator": 67, - "rateNumerator": 17, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 8, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.589196795230175, - "rateDenominator": 89, - "rateNumerator": 52, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.4213290399574359, - "rateDenominator": 101, - "rateNumerator": 42, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "40<", - "followupYears": 8, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.412958390612391, - "rateDenominator": 15, - "rateNumerator": 6, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 9, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.4472469461557793, - "rateDenominator": 122, - "rateNumerator": 54, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 7, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.8053312871848378, - "rateDenominator": 161, - "rateNumerator": 129, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.31364211951029053, - "rateDenominator": 115, - "rateNumerator": 36, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "ALL", - "followupYears": 8, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.5797854080502723, - "rateDenominator": 101, - "rateNumerator": 58, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "<25", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3623260995260197, - "rateDenominator": 93, - "rateNumerator": 33, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "<25", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3839409800769034, - "rateDenominator": 110, - "rateNumerator": 42, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.28393304869336045, - "rateDenominator": 107, - "rateNumerator": 30, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "30-34", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3533961654965064, - "rateDenominator": 118, - "rateNumerator": 41, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.2915432796770584, - "rateDenominator": 147, - "rateNumerator": 42, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.2872582191787689, - "rateDenominator": 89, - "rateNumerator": 25, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "25-29", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.29669433849450566, - "rateDenominator": 76, - "rateNumerator": 22, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.6087082672107708, - "rateDenominator": 187, - "rateNumerator": 113, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "35-39", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.2619211100597044, - "rateDenominator": 86, - "rateNumerator": 22, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.4304513163862032, - "rateDenominator": 160, - "rateNumerator": 68, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "30-34", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.25789474463863427, - "rateDenominator": 118, - "rateNumerator": 30, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.26437597888778286, - "rateDenominator": 157, - "rateNumerator": 41, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "40<", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.25271912872715147, - "rateDenominator": 27, - "rateNumerator": 6, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.12605156631173184, - "rateDenominator": 32, - "rateNumerator": 4, - "releaseCohort": 2018, - }, - Object { - "ageBucket": "30-34", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5020914839800488, - "rateDenominator": 78, - "rateNumerator": 39, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "25-29", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3559620121549413, - "rateDenominator": 76, - "rateNumerator": 27, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.46398171568994606, - "rateDenominator": 283, - "rateNumerator": 131, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.18340895067456203, - "rateDenominator": 67, - "rateNumerator": 12, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.23478332283457184, - "rateDenominator": 63, - "rateNumerator": 14, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "<25", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.2690227454432028, - "rateDenominator": 118, - "rateNumerator": 31, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.6243119802433722, - "rateDenominator": 121, - "rateNumerator": 75, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.27481568501675263, - "rateDenominator": 441, - "rateNumerator": 121, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.12018058712525873, - "rateDenominator": 449, - "rateNumerator": 53, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.2402087042057257, - "rateDenominator": 20, - "rateNumerator": 4, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "35-39", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.17992759857246687, - "rateDenominator": 87, - "rateNumerator": 15, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.22196213867495487, - "rateDenominator": 149, - "rateNumerator": 33, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "30-34", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3249089061478363, - "rateDenominator": 74, - "rateNumerator": 24, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.41129634928006986, - "rateDenominator": 225, - "rateNumerator": 92, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "30-34", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.28870527481138153, - "rateDenominator": 94, - "rateNumerator": 27, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.30002178071047747, - "rateDenominator": 67, - "rateNumerator": 20, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "<25", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4763960230260721, - "rateDenominator": 116, - "rateNumerator": 55, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "25-29", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.27115276394462035, - "rateDenominator": 53, - "rateNumerator": 14, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "25-29", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.6166321076754772, - "rateDenominator": 96, - "rateNumerator": 59, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "35-39", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.23660929920882962, - "rateDenominator": 54, - "rateNumerator": 12, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 9, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.36704328113624063, - "rateDenominator": 35, - "rateNumerator": 12, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.4310374831525233, - "rateDenominator": 147, - "rateNumerator": 63, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "40<", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5161401597867837, - "rateDenominator": 26, - "rateNumerator": 13, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.2985876200009473, - "rateDenominator": 63, - "rateNumerator": 18, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "30-34", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3967828806850792, - "rateDenominator": 78, - "rateNumerator": 30, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "30-34", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3670998032729656, - "rateDenominator": 111, - "rateNumerator": 40, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "25-29", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.47275950302254127, - "rateDenominator": 96, - "rateNumerator": 45, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "40<", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.275369180956604, - "rateDenominator": 18, - "rateNumerator": 4, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.5837759054688773, - "rateDenominator": 161, - "rateNumerator": 93, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.3294634564258997, - "rateDenominator": 28, - "rateNumerator": 9, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.3411284699733499, - "rateDenominator": 25, - "rateNumerator": 8, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.30626652228270784, - "rateDenominator": 25, - "rateNumerator": 7, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "<25", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.24919925998583026, - "rateDenominator": 74, - "rateNumerator": 18, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.4348686856807539, - "rateDenominator": 180, - "rateNumerator": 78, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.5075474304549339, - "rateDenominator": 25, - "rateNumerator": 12, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.2936089627795407, - "rateDenominator": 38, - "rateNumerator": 11, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.25414221873190557, - "rateDenominator": 97, - "rateNumerator": 24, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.47860743366966996, - "rateDenominator": 92, - "rateNumerator": 44, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.2750362211462777, - "rateDenominator": 95, - "rateNumerator": 26, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.23428414991227708, - "rateDenominator": 100, - "rateNumerator": 23, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.5202334458433071, - "rateDenominator": 121, - "rateNumerator": 62, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.33396351355118153, - "rateDenominator": 38, - "rateNumerator": 12, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.29240777303417276, - "rateDenominator": 92, - "rateNumerator": 26, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "30-34", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5671195169003167, - "rateDenominator": 94, - "rateNumerator": 53, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.30443647769324317, - "rateDenominator": 80, - "rateNumerator": 24, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "25-29", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.23823221081205115, - "rateDenominator": 64, - "rateNumerator": 15, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "30-34", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.2582165741642914, - "rateDenominator": 78, - "rateNumerator": 20, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "30-34", - "followupYears": 8, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5295018954642204, - "rateDenominator": 65, - "rateNumerator": 34, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.38480597550131257, - "rateDenominator": 147, - "rateNumerator": 56, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.27761953099188136, - "rateDenominator": 267, - "rateNumerator": 74, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "<25", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.28426573172755654, - "rateDenominator": 116, - "rateNumerator": 32, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 9, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.36207161197419524, - "rateDenominator": 38, - "rateNumerator": 13, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "30-34", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.22276505268384506, - "rateDenominator": 119, - "rateNumerator": 26, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.5320640559735748, - "rateDenominator": 56, - "rateNumerator": 29, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "40<", - "followupYears": 8, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.543996992330777, - "rateDenominator": 26, - "rateNumerator": 14, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.2680518637225299, - "rateDenominator": 117, - "rateNumerator": 31, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.5132176911935141, - "rateDenominator": 56, - "rateNumerator": 28, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.3243528109389516, - "rateDenominator": 95, - "rateNumerator": 30, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "35-39", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.1879370058756094, - "rateDenominator": 88, - "rateNumerator": 16, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "25-29", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.26050703801768876, - "rateDenominator": 61, - "rateNumerator": 15, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "25-29", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5488162916734327, - "rateDenominator": 96, - "rateNumerator": 52, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.3670999042883415, - "rateDenominator": 82, - "rateNumerator": 30, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "<25", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.24231746457723546, - "rateDenominator": 98, - "rateNumerator": 23, - "releaseCohort": 2018, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.30284021048220006, - "rateDenominator": 38, - "rateNumerator": 11, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.2457215777766204, - "rateDenominator": 78, - "rateNumerator": 19, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 8, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.4891542603390072, - "rateDenominator": 147, - "rateNumerator": 71, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "40<", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.2670327609927266, - "rateDenominator": 15, - "rateNumerator": 4, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.2714481677671729, - "rateDenominator": 38, - "rateNumerator": 10, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.25725545639526304, - "rateDenominator": 124, - "rateNumerator": 31, - "releaseCohort": 2018, - }, - Object { - "ageBucket": "25-29", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.23654226546764148, - "rateDenominator": 97, - "rateNumerator": 22, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.2922694972867569, - "rateDenominator": 128, - "rateNumerator": 37, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "35-39", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4304802865478109, - "rateDenominator": 87, - "rateNumerator": 37, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.35902381762813385, - "rateDenominator": 28, - "rateNumerator": 10, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.6160194244956311, - "rateDenominator": 25, - "rateNumerator": 15, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "35-39", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.28998688549327795, - "rateDenominator": 48, - "rateNumerator": 13, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.35200463001718774, - "rateDenominator": 38, - "rateNumerator": 13, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "40<", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.33962054968593025, - "rateDenominator": 17, - "rateNumerator": 5, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "35-39", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.23417186488773897, - "rateDenominator": 69, - "rateNumerator": 16, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "40<", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5027581769063455, - "rateDenominator": 26, - "rateNumerator": 13, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "<25", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.2534521780771775, - "rateDenominator": 117, - "rateNumerator": 29, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.28183241952450866, - "rateDenominator": 34, - "rateNumerator": 9, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "ALL", - "followupYears": 8, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.45916119109617687, - "rateDenominator": 82, - "rateNumerator": 37, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.6036352093515812, - "rateDenominator": 121, - "rateNumerator": 73, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.706574495850481, - "rateDenominator": 25, - "rateNumerator": 17, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.475870096112616, - "rateDenominator": 246, - "rateNumerator": 117, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.2826362224488827, - "rateDenominator": 36, - "rateNumerator": 10, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4609087596578495, - "rateDenominator": 246, - "rateNumerator": 113, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.47601493062591504, - "rateDenominator": 107, - "rateNumerator": 50, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "<25", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5047399015877124, - "rateDenominator": 93, - "rateNumerator": 46, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.44386132162712605, - "rateDenominator": 56, - "rateNumerator": 24, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "<25", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3665902040105169, - "rateDenominator": 74, - "rateNumerator": 27, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.29315106105985755, - "rateDenominator": 35, - "rateNumerator": 10, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.3140820281613471, - "rateDenominator": 123, - "rateNumerator": 38, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.31410143263268187, - "rateDenominator": 283, - "rateNumerator": 88, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 9, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.5777848416413399, - "rateDenominator": 148, - "rateNumerator": 85, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "<25", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5815353775076058, - "rateDenominator": 65, - "rateNumerator": 37, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.28361801197253, - "rateDenominator": 78, - "rateNumerator": 22, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.4899439939402799, - "rateDenominator": 25, - "rateNumerator": 12, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.34909648296502954, - "rateDenominator": 35, - "rateNumerator": 12, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.47925974391973125, - "rateDenominator": 117, - "rateNumerator": 56, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5532594782441403, - "rateDenominator": 294, - "rateNumerator": 162, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "30-34", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.41852319995325926, - "rateDenominator": 75, - "rateNumerator": 31, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4361061547980128, - "rateDenominator": 353, - "rateNumerator": 153, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.15472315694153785, - "rateDenominator": 441, - "rateNumerator": 68, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "<25", - "followupYears": 8, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.7484296078652805, - "rateDenominator": 65, - "rateNumerator": 48, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "25-29", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.20424993720743684, - "rateDenominator": 97, - "rateNumerator": 19, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.3737065125769247, - "rateDenominator": 102, - "rateNumerator": 38, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.3239675370767654, - "rateDenominator": 187, - "rateNumerator": 60, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "25-29", - "followupYears": 9, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.500155735997435, - "rateDenominator": 96, - "rateNumerator": 48, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "30-34", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.17780049554508354, - "rateDenominator": 74, - "rateNumerator": 13, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.30857517279195845, - "rateDenominator": 78, - "rateNumerator": 24, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "35-39", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3773064429921029, - "rateDenominator": 54, - "rateNumerator": 20, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.4710782356934105, - "rateDenominator": 56, - "rateNumerator": 26, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.6972200923971328, - "rateDenominator": 23, - "rateNumerator": 16, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 8, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.5650676622581661, - "rateDenominator": 148, - "rateNumerator": 83, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 7, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.46078013263077733, - "rateDenominator": 160, - "rateNumerator": 73, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 9, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.3409969752025482, - "rateDenominator": 35, - "rateNumerator": 11, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.5363604285593335, - "rateDenominator": 101, - "rateNumerator": 54, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "<25", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4848114314171283, - "rateDenominator": 73, - "rateNumerator": 35, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "25-29", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4529500750841841, - "rateDenominator": 96, - "rateNumerator": 43, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "35-39", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.24507261115225915, - "rateDenominator": 88, - "rateNumerator": 21, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "<25", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.7195322381288778, - "rateDenominator": 65, - "rateNumerator": 46, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "35-39", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.33001406636365155, - "rateDenominator": 82, - "rateNumerator": 27, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.1697683917082467, - "rateDenominator": 35, - "rateNumerator": 5, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "40<", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5869640219395534, - "rateDenominator": 27, - "rateNumerator": 15, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.25360460340051105, - "rateDenominator": 35, - "rateNumerator": 8, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "35-39", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4307900141721617, - "rateDenominator": 86, - "rateNumerator": 37, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.38288543842088013, - "rateDenominator": 283, - "rateNumerator": 108, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "25-29", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.18018087934500204, - "rateDenominator": 96, - "rateNumerator": 17, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "35-39", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.22657076150370145, - "rateDenominator": 48, - "rateNumerator": 10, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "35-39", - "followupYears": 9, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.455600161251264, - "rateDenominator": 86, - "rateNumerator": 39, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "40<", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4911333147503417, - "rateDenominator": 18, - "rateNumerator": 8, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "25-29", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.20574159737943576, - "rateDenominator": 61, - "rateNumerator": 12, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "25-29", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.37463817012597433, - "rateDenominator": 96, - "rateNumerator": 35, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.30924574505060826, - "rateDenominator": 67, - "rateNumerator": 20, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "40<", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.44266700865747005, - "rateDenominator": 25, - "rateNumerator": 11, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "35-39", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3080794031560403, - "rateDenominator": 58, - "rateNumerator": 17, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "<25", - "followupYears": 8, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5062743439183599, - "rateDenominator": 117, - "rateNumerator": 59, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.22639630953849982, - "rateDenominator": 94, - "rateNumerator": 21, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "25-29", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.20435983520469908, - "rateDenominator": 91, - "rateNumerator": 18, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.46066132952357136, - "rateDenominator": 100, - "rateNumerator": 46, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 9, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.3918666376443984, - "rateDenominator": 38, - "rateNumerator": 14, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "25-29", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.24022404752750634, - "rateDenominator": 60, - "rateNumerator": 14, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "25-29", - "followupYears": 9, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.6377655650021727, - "rateDenominator": 96, - "rateNumerator": 61, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.49732304633219726, - "rateDenominator": 25, - "rateNumerator": 12, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.4379543200904361, - "rateDenominator": 25, - "rateNumerator": 10, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "<25", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.40359407063528874, - "rateDenominator": 74, - "rateNumerator": 29, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3468225508438444, - "rateDenominator": 441, - "rateNumerator": 152, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "25-29", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4530695537042013, - "rateDenominator": 96, - "rateNumerator": 43, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.4652846994248844, - "rateDenominator": 23, - "rateNumerator": 10, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.32830151544302966, - "rateDenominator": 94, - "rateNumerator": 30, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.2168935769006367, - "rateDenominator": 64, - "rateNumerator": 13, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "40<", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4169563480674632, - "rateDenominator": 17, - "rateNumerator": 7, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "40<", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4379049102297151, - "rateDenominator": 17, - "rateNumerator": 7, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.29901928015636037, - "rateDenominator": 31, - "rateNumerator": 9, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 8, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.3307312863442977, - "rateDenominator": 35, - "rateNumerator": 11, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.43081342966726405, - "rateDenominator": 94, - "rateNumerator": 40, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "35-39", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.18213060413322318, - "rateDenominator": 48, - "rateNumerator": 8, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "<25", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3145287327299575, - "rateDenominator": 116, - "rateNumerator": 36, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.31128389288556546, - "rateDenominator": 21, - "rateNumerator": 6, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.24093034729343787, - "rateDenominator": 38, - "rateNumerator": 9, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "35-39", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.43816166684219454, - "rateDenominator": 58, - "rateNumerator": 25, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "<25", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.2711491364902294, - "rateDenominator": 93, - "rateNumerator": 25, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.24072038118051686, - "rateDenominator": 123, - "rateNumerator": 29, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "<25", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.416476102862123, - "rateDenominator": 117, - "rateNumerator": 48, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 8, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.3572316168926424, - "rateDenominator": 38, - "rateNumerator": 13, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "35-39", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3570579285317196, - "rateDenominator": 48, - "rateNumerator": 17, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "35-39", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3062906781394077, - "rateDenominator": 54, - "rateNumerator": 16, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "<25", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3048399084115511, - "rateDenominator": 110, - "rateNumerator": 33, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "40<", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.6881231577241139, - "rateDenominator": 27, - "rateNumerator": 18, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.1931273982584022, - "rateDenominator": 160, - "rateNumerator": 30, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "30-34", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4074294804002291, - "rateDenominator": 65, - "rateNumerator": 26, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5081203766331148, - "rateDenominator": 246, - "rateNumerator": 124, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.5445459871250241, - "rateDenominator": 89, - "rateNumerator": 48, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.3695946559764942, - "rateDenominator": 38, - "rateNumerator": 14, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "35-39", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.39303269390858775, - "rateDenominator": 87, - "rateNumerator": 34, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.25942847307047256, - "rateDenominator": 153, - "rateNumerator": 39, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "25-29", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.28139277319472766, - "rateDenominator": 61, - "rateNumerator": 17, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.33041111630606557, - "rateDenominator": 82, - "rateNumerator": 27, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "30-34", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3721411153410469, - "rateDenominator": 94, - "rateNumerator": 34, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "30-34", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.29413055653070513, - "rateDenominator": 74, - "rateNumerator": 21, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.2201749250132895, - "rateDenominator": 35, - "rateNumerator": 7, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "40<", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.39760788716475126, - "rateDenominator": 15, - "rateNumerator": 5, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.5383484303518755, - "rateDenominator": 25, - "rateNumerator": 13, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.14508149308998097, - "rateDenominator": 22, - "rateNumerator": 3, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.8125687592704789, - "rateDenominator": 23, - "rateNumerator": 18, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.519319795206675, - "rateDenominator": 294, - "rateNumerator": 152, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.33795677987981004, - "rateDenominator": 281, - "rateNumerator": 94, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.3181170286412642, - "rateDenominator": 160, - "rateNumerator": 50, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3368747785220438, - "rateDenominator": 420, - "rateNumerator": 141, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.2064860129246486, - "rateDenominator": 67, - "rateNumerator": 13, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "25-29", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3045929791910029, - "rateDenominator": 61, - "rateNumerator": 18, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "<25", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3398674537093288, - "rateDenominator": 77, - "rateNumerator": 26, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.2758202172664783, - "rateDenominator": 28, - "rateNumerator": 7, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.13287070199123258, - "rateDenominator": 21, - "rateNumerator": 2, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.5540591630466561, - "rateDenominator": 148, - "rateNumerator": 82, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.3436280912901396, - "rateDenominator": 67, - "rateNumerator": 23, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "35-39", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.46655674830491856, - "rateDenominator": 55, - "rateNumerator": 25, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "30-34", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.44941588189668463, - "rateDenominator": 117, - "rateNumerator": 52, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "30-34", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5265396921055334, - "rateDenominator": 94, - "rateNumerator": 49, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "40<", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.1288720806575912, - "rateDenominator": 21, - "rateNumerator": 2, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.3698435346094334, - "rateDenominator": 157, - "rateNumerator": 58, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "35-39", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.24533156492763689, - "rateDenominator": 48, - "rateNumerator": 11, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "25-29", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.19690585858119236, - "rateDenominator": 53, - "rateNumerator": 10, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.29718468868384407, - "rateDenominator": 35, - "rateNumerator": 10, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "25-29", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.1846750474711578, - "rateDenominator": 60, - "rateNumerator": 11, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "40<", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.7085515481417651, - "rateDenominator": 27, - "rateNumerator": 19, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.3048062458106276, - "rateDenominator": 36, - "rateNumerator": 10, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 7, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.39303450259804007, - "rateDenominator": 103, - "rateNumerator": 40, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.4064911593897479, - "rateDenominator": 25, - "rateNumerator": 10, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "25-29", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.15344533431757498, - "rateDenominator": 91, - "rateNumerator": 13, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "30-34", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.23245545121676725, - "rateDenominator": 75, - "rateNumerator": 17, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.29528717320656517, - "rateDenominator": 176, - "rateNumerator": 51, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.2229969098095685, - "rateDenominator": 121, - "rateNumerator": 26, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.4290862886056522, - "rateDenominator": 122, - "rateNumerator": 52, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "40<", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4379753894586494, - "rateDenominator": 27, - "rateNumerator": 11, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "40<", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3192560274632189, - "rateDenominator": 25, - "rateNumerator": 7, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.3481461994487457, - "rateDenominator": 38, - "rateNumerator": 13, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "<25", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.35171437979989906, - "rateDenominator": 74, - "rateNumerator": 26, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.4473239163869128, - "rateDenominator": 147, - "rateNumerator": 65, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "<25", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.45834914427050916, - "rateDenominator": 74, - "rateNumerator": 33, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.45247305348896283, - "rateDenominator": 180, - "rateNumerator": 81, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "35-39", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.2944076241843945, - "rateDenominator": 86, - "rateNumerator": 25, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4689506965509697, - "rateDenominator": 283, - "rateNumerator": 132, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.6558135626572874, - "rateDenominator": 100, - "rateNumerator": 65, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "<25", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.43670377993106757, - "rateDenominator": 117, - "rateNumerator": 51, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.3117485460499243, - "rateDenominator": 38, - "rateNumerator": 11, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "40<", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.18286132707291677, - "rateDenominator": 21, - "rateNumerator": 3, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.31880896533864345, - "rateDenominator": 35, - "rateNumerator": 11, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "40<", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.47831190109530425, - "rateDenominator": 27, - "rateNumerator": 12, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "25-29", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.39629888351789083, - "rateDenominator": 96, - "rateNumerator": 38, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "40<", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.41270153398843556, - "rateDenominator": 18, - "rateNumerator": 7, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.2796746497413658, - "rateDenominator": 163, - "rateNumerator": 45, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "<25", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.49227093719501175, - "rateDenominator": 117, - "rateNumerator": 57, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.23629892983690073, - "rateDenominator": 22, - "rateNumerator": 5, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.3256225285295831, - "rateDenominator": 35, - "rateNumerator": 11, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.35903743790238474, - "rateDenominator": 149, - "rateNumerator": 53, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "30-34", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.46713572738926795, - "rateDenominator": 118, - "rateNumerator": 55, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 10, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.40009787760878496, - "rateDenominator": 38, - "rateNumerator": 15, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.17686153420330591, - "rateDenominator": 64, - "rateNumerator": 11, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "<25", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.437000066356275, - "rateDenominator": 116, - "rateNumerator": 50, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.16466372712401717, - "rateDenominator": 35, - "rateNumerator": 5, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.37767495725981837, - "rateDenominator": 36, - "rateNumerator": 13, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.48404873112298924, - "rateDenominator": 94, - "rateNumerator": 45, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.29495545310957905, - "rateDenominator": 64, - "rateNumerator": 18, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.5429828053260367, - "rateDenominator": 283, - "rateNumerator": 153, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "35-39", - "followupYears": 8, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.48180654263368083, - "rateDenominator": 87, - "rateNumerator": 41, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "<25", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.6510127425775054, - "rateDenominator": 93, - "rateNumerator": 60, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "30-34", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.26091572422805687, - "rateDenominator": 119, - "rateNumerator": 31, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.45626666427543894, - "rateDenominator": 161, - "rateNumerator": 73, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.7316217016934994, - "rateDenominator": 161, - "rateNumerator": 117, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "35-39", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3992485025134245, - "rateDenominator": 86, - "rateNumerator": 34, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "25-29", - "followupYears": 10, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5014672366478367, - "rateDenominator": 96, - "rateNumerator": 48, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.3570573048673012, - "rateDenominator": 148, - "rateNumerator": 52, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.3895765803300314, - "rateDenominator": 63, - "rateNumerator": 24, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.8744827719341292, - "rateDenominator": 23, - "rateNumerator": 20, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.3172923021032317, - "rateDenominator": 78, - "rateNumerator": 24, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.36710165761834707, - "rateDenominator": 89, - "rateNumerator": 32, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.5551350135094041, - "rateDenominator": 100, - "rateNumerator": 55, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.22286319005574337, - "rateDenominator": 187, - "rateNumerator": 41, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.19130527518702728, - "rateDenominator": 20, - "rateNumerator": 3, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "<25", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5616872020254593, - "rateDenominator": 93, - "rateNumerator": 52, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.2305518548934301, - "rateDenominator": 441, - "rateNumerator": 101, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4811765819001177, - "rateDenominator": 444, - "rateNumerator": 213, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.20796908096295158, - "rateDenominator": 117, - "rateNumerator": 24, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "35-39", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.25316706228277175, - "rateDenominator": 87, - "rateNumerator": 22, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.3466693204554794, - "rateDenominator": 225, - "rateNumerator": 78, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.4626892710544104, - "rateDenominator": 63, - "rateNumerator": 29, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.1907295816980814, - "rateDenominator": 38, - "rateNumerator": 7, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "25-29", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.1723581519000455, - "rateDenominator": 97, - "rateNumerator": 16, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.25894059644135314, - "rateDenominator": 67, - "rateNumerator": 17, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "35-39", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.23277885726233172, - "rateDenominator": 73, - "rateNumerator": 16, - "releaseCohort": 2018, - }, - Object { - "ageBucket": "30-34", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.18538703719185204, - "rateDenominator": 119, - "rateNumerator": 22, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 10, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.6826276889465852, - "rateDenominator": 121, - "rateNumerator": 82, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.17288990124088352, - "rateDenominator": 123, - "rateNumerator": 21, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "35-39", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.6146188831318061, - "rateDenominator": 55, - "rateNumerator": 33, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.21808852251413097, - "rateDenominator": 281, - "rateNumerator": 61, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "<25", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.35398806455471876, - "rateDenominator": 117, - "rateNumerator": 41, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.5955556509995608, - "rateDenominator": 80, - "rateNumerator": 47, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "25-29", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3408736842279373, - "rateDenominator": 61, - "rateNumerator": 20, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.24456560764135524, - "rateDenominator": 76, - "rateNumerator": 18, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5234902915707466, - "rateDenominator": 246, - "rateNumerator": 128, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "<25", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.37458641115838864, - "rateDenominator": 77, - "rateNumerator": 28, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "25-29", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.32246675091679533, - "rateDenominator": 76, - "rateNumerator": 24, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "<25", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5130502080782005, - "rateDenominator": 74, - "rateNumerator": 37, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "<25", - "followupYears": 9, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5094745692057792, - "rateDenominator": 117, - "rateNumerator": 59, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "<25", - "followupYears": 9, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5455753264621639, - "rateDenominator": 116, - "rateNumerator": 63, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3704884876536363, - "rateDenominator": 353, - "rateNumerator": 130, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "30-34", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.34592942626462897, - "rateDenominator": 117, - "rateNumerator": 40, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.32764883021354035, - "rateDenominator": 35, - "rateNumerator": 11, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "30-34", - "followupYears": 9, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.47666524216097234, - "rateDenominator": 117, - "rateNumerator": 55, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.40961501890016133, - "rateDenominator": 82, - "rateNumerator": 33, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4642008589394314, - "rateDenominator": 294, - "rateNumerator": 136, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "40<", - "followupYears": 10, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5670790993674373, - "rateDenominator": 26, - "rateNumerator": 14, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.514834868193504, - "rateDenominator": 225, - "rateNumerator": 115, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "40<", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.22796488826846184, - "rateDenominator": 15, - "rateNumerator": 3, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.14861746590445857, - "rateDenominator": 30, - "rateNumerator": 4, - "releaseCohort": 2018, - }, - Object { - "ageBucket": "35-39", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4655178941044017, - "rateDenominator": 87, - "rateNumerator": 40, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.20094613685211687, - "rateDenominator": 180, - "rateNumerator": 36, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 9, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.3709355314037154, - "rateDenominator": 281, - "rateNumerator": 104, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "<25", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.269655468703289, - "rateDenominator": 73, - "rateNumerator": 19, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "30-34", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.443829881992837, - "rateDenominator": 75, - "rateNumerator": 33, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "30-34", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.2498542775940517, - "rateDenominator": 117, - "rateNumerator": 29, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "<25", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.22650589568333473, - "rateDenominator": 77, - "rateNumerator": 17, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 7, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.2500369618369466, - "rateDenominator": 20, - "rateNumerator": 5, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 9, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.39794127127067225, - "rateDenominator": 441, - "rateNumerator": 175, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "35-39", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.32430245366805804, - "rateDenominator": 87, - "rateNumerator": 28, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.27577650321290686, - "rateDenominator": 294, - "rateNumerator": 81, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "25-29", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.29891194368929436, - "rateDenominator": 64, - "rateNumerator": 19, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 9, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.6892005623654863, - "rateDenominator": 100, - "rateNumerator": 68, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.3585125198682104, - "rateDenominator": 92, - "rateNumerator": 32, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.3860085642332696, - "rateDenominator": 157, - "rateNumerator": 60, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.3428824393172389, - "rateDenominator": 56, - "rateNumerator": 19, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "40<", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.2777554554823479, - "rateDenominator": 21, - "rateNumerator": 5, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.15635696348384504, - "rateDenominator": 122, - "rateNumerator": 19, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "30-34", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.43980239410058247, - "rateDenominator": 94, - "rateNumerator": 41, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "40<", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4340280431051765, - "rateDenominator": 26, - "rateNumerator": 11, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.31582912718779027, - "rateDenominator": 103, - "rateNumerator": 32, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.48990778748286956, - "rateDenominator": 180, - "rateNumerator": 88, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.5098740144908329, - "rateDenominator": 23, - "rateNumerator": 11, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.5705708528694182, - "rateDenominator": 101, - "rateNumerator": 57, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.17053333922773994, - "rateDenominator": 281, - "rateNumerator": 47, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.31355400245648035, - "rateDenominator": 157, - "rateNumerator": 49, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.4043962112906952, - "rateDenominator": 97, - "rateNumerator": 39, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.18514915664875078, - "rateDenominator": 22, - "rateNumerator": 4, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 8, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.3640144274529604, - "rateDenominator": 281, - "rateNumerator": 102, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "35-39", - "followupYears": 9, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4956391553047076, - "rateDenominator": 87, - "rateNumerator": 43, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.15381910099010365, - "rateDenominator": 64, - "rateNumerator": 9, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.28311542810144474, - "rateDenominator": 140, - "rateNumerator": 39, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "ALL", - "followupYears": 8, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.3654828271026633, - "rateDenominator": 35, - "rateNumerator": 12, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.2944840228856708, - "rateDenominator": 25, - "rateNumerator": 7, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.28651215636619476, - "rateDenominator": 67, - "rateNumerator": 19, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "30-34", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.41497588733226937, - "rateDenominator": 118, - "rateNumerator": 48, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.22737141993734322, - "rateDenominator": 122, - "rateNumerator": 27, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.416993160802032, - "rateDenominator": 122, - "rateNumerator": 50, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "<25", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.21101996885695878, - "rateDenominator": 77, - "rateNumerator": 16, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "25-29", - "followupYears": 8, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4852247252689757, - "rateDenominator": 96, - "rateNumerator": 46, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "35-39", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.27769369468275007, - "rateDenominator": 54, - "rateNumerator": 14, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "25-29", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4072862076027819, - "rateDenominator": 64, - "rateNumerator": 26, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "40<", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3746998122813172, - "rateDenominator": 17, - "rateNumerator": 6, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "30-34", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3381762354345907, - "rateDenominator": 65, - "rateNumerator": 21, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.262859208743412, - "rateDenominator": 98, - "rateNumerator": 25, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 8, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.6699540134041494, - "rateDenominator": 121, - "rateNumerator": 81, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "30-34", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.6191049475384869, - "rateDenominator": 78, - "rateNumerator": 48, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 7, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.42069988059675567, - "rateDenominator": 157, - "rateNumerator": 66, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.338422595644025, - "rateDenominator": 283, - "rateNumerator": 95, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "30-34", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3105718606865504, - "rateDenominator": 65, - "rateNumerator": 20, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "40<", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.36266119520959395, - "rateDenominator": 27, - "rateNumerator": 9, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "40<", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.299547355799761, - "rateDenominator": 26, - "rateNumerator": 7, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.2527083349347715, - "rateDenominator": 102, - "rateNumerator": 25, - "releaseCohort": 2018, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.3702755342518667, - "rateDenominator": 117, - "rateNumerator": 43, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.34553665725806915, - "rateDenominator": 97, - "rateNumerator": 33, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4876677382834119, - "rateDenominator": 353, - "rateNumerator": 172, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.31692503167235764, - "rateDenominator": 35, - "rateNumerator": 11, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 6, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.5775382995103627, - "rateDenominator": 283, - "rateNumerator": 163, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.23201745045523087, - "rateDenominator": 420, - "rateNumerator": 97, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "30-34", - "followupYears": 8, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4808651567741764, - "rateDenominator": 118, - "rateNumerator": 56, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "40<", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.19478524285979976, - "rateDenominator": 17, - "rateNumerator": 3, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 10, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.37671984226911576, - "rateDenominator": 281, - "rateNumerator": 105, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.1572896940409308, - "rateDenominator": 38, - "rateNumerator": 5, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.27333761218575586, - "rateDenominator": 35, - "rateNumerator": 9, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "40<", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4527585442243558, - "rateDenominator": 17, - "rateNumerator": 7, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "<25", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.39313878244128553, - "rateDenominator": 116, - "rateNumerator": 45, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "35-39", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.40313690837584903, - "rateDenominator": 55, - "rateNumerator": 22, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "<25", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.37614318479736464, - "rateDenominator": 73, - "rateNumerator": 27, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.5693476387591667, - "rateDenominator": 187, - "rateNumerator": 106, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.3178278332287177, - "rateDenominator": 281, - "rateNumerator": 89, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "25-29", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5045143141023749, - "rateDenominator": 96, - "rateNumerator": 48, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "25-29", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.13413585621689023, - "rateDenominator": 53, - "rateNumerator": 7, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "40<", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.6395550435468462, - "rateDenominator": 27, - "rateNumerator": 17, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.2713364319344973, - "rateDenominator": 277, - "rateNumerator": 75, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.20957911561902412, - "rateDenominator": 286, - "rateNumerator": 59, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.1917396412819206, - "rateDenominator": 39, - "rateNumerator": 7, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.3946022474835968, - "rateDenominator": 267, - "rateNumerator": 105, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "ALL", - "followupYears": 10, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.3684882964507848, - "rateDenominator": 35, - "rateNumerator": 12, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "35-39", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.34559537487301756, - "rateDenominator": 48, - "rateNumerator": 16, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.495215122499581, - "rateDenominator": 100, - "rateNumerator": 49, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "40<", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.21443377694912613, - "rateDenominator": 22, - "rateNumerator": 4, - "releaseCohort": 2018, - }, - Object { - "ageBucket": "ALL", - "followupYears": 4, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.3812410294370944, - "rateDenominator": 67, - "rateNumerator": 25, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "25-29", - "followupYears": 6, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5858320833731945, - "rateDenominator": 96, - "rateNumerator": 56, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "30-34", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.44619487966518184, - "rateDenominator": 65, - "rateNumerator": 29, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.37373532131252074, - "rateDenominator": 92, - "rateNumerator": 34, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.16661918776040704, - "rateDenominator": 20, - "rateNumerator": 3, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 8, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.4703544445706808, - "rateDenominator": 160, - "rateNumerator": 75, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3245749312012245, - "rateDenominator": 353, - "rateNumerator": 114, - "releaseCohort": 2014, - }, -] -`; - -exports[`data fetching for metric PrisonRecidivismRateSingleFollowupHistorical 1`] = ` -Array [ - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.2344411062279863, - "rateDenominator": 85, - "rateNumerator": 19, - "releaseCohort": 2018, - }, - Object { - "ageBucket": "<25", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.27464620972057485, - "rateDenominator": 77, - "rateNumerator": 21, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.27362751847920186, - "rateDenominator": 64, - "rateNumerator": 17, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.5575857681507217, - "rateDenominator": 128, - "rateNumerator": 71, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.4266951987202952, - "rateDenominator": 187, - "rateNumerator": 79, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.21147104581076315, - "rateDenominator": 24, - "rateNumerator": 5, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.5731559016149155, - "rateDenominator": 107, - "rateNumerator": 61, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.23323275706861413, - "rateDenominator": 78, - "rateNumerator": 18, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "25-29", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.21644253915033027, - "rateDenominator": 53, - "rateNumerator": 11, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.21745120886702662, - "rateDenominator": 283, - "rateNumerator": 61, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.22507999200913387, - "rateDenominator": 67, - "rateNumerator": 15, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.2166402424380799, - "rateDenominator": 81, - "rateNumerator": 17, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "25-29", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.17958179385205125, - "rateDenominator": 61, - "rateNumerator": 10, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "40<", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3829962083027624, - "rateDenominator": 17, - "rateNumerator": 6, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.32725349625274136, - "rateDenominator": 98, - "rateNumerator": 32, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "35-39", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.1984060554949988, - "rateDenominator": 58, - "rateNumerator": 11, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.3348862947670234, - "rateDenominator": 176, - "rateNumerator": 58, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.3839336630680912, - "rateDenominator": 31, - "rateNumerator": 11, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.4469079604452117, - "rateDenominator": 128, - "rateNumerator": 57, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "30-34", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.26239036698643864, - "rateDenominator": 111, - "rateNumerator": 29, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.25418990463843955, - "rateDenominator": 31, - "rateNumerator": 7, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "35-39", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.25900242537246765, - "rateDenominator": 55, - "rateNumerator": 14, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.41452789459406847, - "rateDenominator": 148, - "rateNumerator": 61, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5705945384276757, - "rateDenominator": 444, - "rateNumerator": 253, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "25-29", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.27174598364307445, - "rateDenominator": 60, - "rateNumerator": 16, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "25-29", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.1904522937993788, - "rateDenominator": 76, - "rateNumerator": 14, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.46453214447511343, - "rateDenominator": 98, - "rateNumerator": 45, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "25-29", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.19997184484505684, - "rateDenominator": 81, - "rateNumerator": 16, - "releaseCohort": 2018, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.666258238192844, - "rateDenominator": 444, - "rateNumerator": 295, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "<25", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.44484105840224253, - "rateDenominator": 118, - "rateNumerator": 52, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "35-39", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3099595501149747, - "rateDenominator": 48, - "rateNumerator": 14, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.22152952582196606, - "rateDenominator": 136, - "rateNumerator": 30, - "releaseCohort": 2018, - }, - Object { - "ageBucket": "<25", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.6523486808493775, - "rateDenominator": 65, - "rateNumerator": 42, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.24568881676118148, - "rateDenominator": 373, - "rateNumerator": 91, - "releaseCohort": 2018, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.3544461745915588, - "rateDenominator": 103, - "rateNumerator": 36, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.3618074406179642, - "rateDenominator": 180, - "rateNumerator": 65, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.4075859851020657, - "rateDenominator": 67, - "rateNumerator": 27, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "30-34", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.2997419121789921, - "rateDenominator": 75, - "rateNumerator": 22, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.4998026511464744, - "rateDenominator": 56, - "rateNumerator": 27, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "40<", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.20849245193230387, - "rateDenominator": 26, - "rateNumerator": 5, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "35-39", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4896695072293015, - "rateDenominator": 69, - "rateNumerator": 33, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.27671851445811385, - "rateDenominator": 102, - "rateNumerator": 28, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.18591688919978389, - "rateDenominator": 277, - "rateNumerator": 51, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "40<", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.37039467193523745, - "rateDenominator": 26, - "rateNumerator": 9, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.5198945701732638, - "rateDenominator": 97, - "rateNumerator": 50, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3966145512517424, - "rateDenominator": 294, - "rateNumerator": 116, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "40<", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.28473022897722605, - "rateDenominator": 15, - "rateNumerator": 4, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "<25", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.1754473892856948, - "rateDenominator": 117, - "rateNumerator": 20, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.22098688455329957, - "rateDenominator": 21, - "rateNumerator": 4, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.3201047208048397, - "rateDenominator": 101, - "rateNumerator": 32, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.4796190931499173, - "rateDenominator": 31, - "rateNumerator": 14, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "<25", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.2814855085497988, - "rateDenominator": 65, - "rateNumerator": 18, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.39065895819026225, - "rateDenominator": 122, - "rateNumerator": 47, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.45046609809901517, - "rateDenominator": 121, - "rateNumerator": 54, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "35-39", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3626761880218852, - "rateDenominator": 69, - "rateNumerator": 25, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "25-29", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.36382424006480313, - "rateDenominator": 96, - "rateNumerator": 34, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.38997840956410185, - "rateDenominator": 76, - "rateNumerator": 29, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.6182672487431391, - "rateDenominator": 23, - "rateNumerator": 14, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.23546230193703543, - "rateDenominator": 39, - "rateNumerator": 9, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.19440650315284774, - "rateDenominator": 153, - "rateNumerator": 29, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "35-39", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.489013851445882, - "rateDenominator": 58, - "rateNumerator": 28, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.23067628862648182, - "rateDenominator": 246, - "rateNumerator": 56, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.3070949778000569, - "rateDenominator": 21, - "rateNumerator": 6, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "30-34", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.20889895617423765, - "rateDenominator": 75, - "rateNumerator": 15, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "25-29", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.34958843720246047, - "rateDenominator": 64, - "rateNumerator": 22, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.2159373064170029, - "rateDenominator": 36, - "rateNumerator": 7, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.3328137444970147, - "rateDenominator": 161, - "rateNumerator": 53, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.13441855437973446, - "rateDenominator": 35, - "rateNumerator": 4, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.3384422015280911, - "rateDenominator": 103, - "rateNumerator": 34, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.1834922516553881, - "rateDenominator": 163, - "rateNumerator": 29, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "40<", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3790771647009794, - "rateDenominator": 15, - "rateNumerator": 5, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.4842804591594073, - "rateDenominator": 101, - "rateNumerator": 48, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.2826996614294788, - "rateDenominator": 101, - "rateNumerator": 28, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "30-34", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.1655699763765434, - "rateDenominator": 118, - "rateNumerator": 19, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.1883319862716896, - "rateDenominator": 98, - "rateNumerator": 18, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "25-29", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.2618211347889127, - "rateDenominator": 53, - "rateNumerator": 13, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.4607570761616222, - "rateDenominator": 89, - "rateNumerator": 41, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.38790747657753666, - "rateDenominator": 94, - "rateNumerator": 36, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.5091166576211785, - "rateDenominator": 148, - "rateNumerator": 75, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "40<", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.2389449483977079, - "rateDenominator": 17, - "rateNumerator": 4, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "30-34", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.421201493411186, - "rateDenominator": 117, - "rateNumerator": 49, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "40<", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.475954238325523, - "rateDenominator": 26, - "rateNumerator": 12, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "30-34", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.24449302238939108, - "rateDenominator": 65, - "rateNumerator": 15, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "<25", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5001636886397268, - "rateDenominator": 65, - "rateNumerator": 32, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.525826140144171, - "rateDenominator": 89, - "rateNumerator": 46, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.22419741926015302, - "rateDenominator": 82, - "rateNumerator": 18, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.19948982194182627, - "rateDenominator": 28, - "rateNumerator": 5, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.4004864028444184, - "rateDenominator": 81, - "rateNumerator": 32, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.29462853014627594, - "rateDenominator": 23, - "rateNumerator": 6, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.6548162550230485, - "rateDenominator": 25, - "rateNumerator": 16, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.22470741907303743, - "rateDenominator": 157, - "rateNumerator": 35, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.24869136439558084, - "rateDenominator": 281, - "rateNumerator": 69, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.33309356613108093, - "rateDenominator": 286, - "rateNumerator": 95, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.23480046292399714, - "rateDenominator": 35, - "rateNumerator": 8, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.26150229335653913, - "rateDenominator": 148, - "rateNumerator": 38, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.11655613222503687, - "rateDenominator": 20, - "rateNumerator": 2, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.30050333718406214, - "rateDenominator": 56, - "rateNumerator": 16, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.3463811600337129, - "rateDenominator": 163, - "rateNumerator": 56, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "40<", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.2911412370161528, - "rateDenominator": 21, - "rateNumerator": 6, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.29362782831133005, - "rateDenominator": 283, - "rateNumerator": 83, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.3078691384827722, - "rateDenominator": 122, - "rateNumerator": 37, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "40<", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.23860421437773077, - "rateDenominator": 21, - "rateNumerator": 5, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "30-34", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.2676357398845093, - "rateDenominator": 99, - "rateNumerator": 26, - "releaseCohort": 2018, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.4517150431938563, - "rateDenominator": 94, - "rateNumerator": 42, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "40<", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.25577378146379975, - "rateDenominator": 27, - "rateNumerator": 6, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.3299173865620453, - "rateDenominator": 24, - "rateNumerator": 7, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "25-29", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.2702730602190739, - "rateDenominator": 96, - "rateNumerator": 25, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "35-39", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3595017913313149, - "rateDenominator": 58, - "rateNumerator": 20, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "40<", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.33026048060707197, - "rateDenominator": 17, - "rateNumerator": 5, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.32853000181042846, - "rateDenominator": 444, - "rateNumerator": 145, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.25609406210130736, - "rateDenominator": 353, - "rateNumerator": 90, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.21604944467445295, - "rateDenominator": 176, - "rateNumerator": 38, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.21767414187899092, - "rateDenominator": 36, - "rateNumerator": 7, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.30393467040023203, - "rateDenominator": 277, - "rateNumerator": 84, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3865270115208075, - "rateDenominator": 246, - "rateNumerator": 95, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.6092384625296211, - "rateDenominator": 23, - "rateNumerator": 14, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.27962142864209993, - "rateDenominator": 103, - "rateNumerator": 28, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "35-39", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.19055361332708326, - "rateDenominator": 86, - "rateNumerator": 16, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.20221756415560455, - "rateDenominator": 449, - "rateNumerator": 90, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.46971296647420574, - "rateDenominator": 80, - "rateNumerator": 37, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.34394405567044595, - "rateDenominator": 441, - "rateNumerator": 151, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "35-39", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.2708830191249996, - "rateDenominator": 88, - "rateNumerator": 23, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.5149481058932498, - "rateDenominator": 81, - "rateNumerator": 41, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.2548228510983277, - "rateDenominator": 23, - "rateNumerator": 5, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.17012970587331855, - "rateDenominator": 78, - "rateNumerator": 13, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.24422176128374704, - "rateDenominator": 225, - "rateNumerator": 54, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "25-29", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4334196137492674, - "rateDenominator": 96, - "rateNumerator": 41, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.1863736804013883, - "rateDenominator": 237, - "rateNumerator": 44, - "releaseCohort": 2018, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.4213290399574359, - "rateDenominator": 101, - "rateNumerator": 42, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.31364211951029053, - "rateDenominator": 115, - "rateNumerator": 36, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.28393304869336045, - "rateDenominator": 107, - "rateNumerator": 30, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "30-34", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3533961654965064, - "rateDenominator": 118, - "rateNumerator": 41, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.2915432796770584, - "rateDenominator": 147, - "rateNumerator": 42, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.2872582191787689, - "rateDenominator": 89, - "rateNumerator": 25, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "25-29", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.29669433849450566, - "rateDenominator": 76, - "rateNumerator": 22, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.4304513163862032, - "rateDenominator": 160, - "rateNumerator": 68, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "40<", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.25271912872715147, - "rateDenominator": 27, - "rateNumerator": 6, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.12605156631173184, - "rateDenominator": 32, - "rateNumerator": 4, - "releaseCohort": 2018, - }, - Object { - "ageBucket": "30-34", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5020914839800488, - "rateDenominator": 78, - "rateNumerator": 39, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "25-29", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3559620121549413, - "rateDenominator": 76, - "rateNumerator": 27, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.46398171568994606, - "rateDenominator": 283, - "rateNumerator": 131, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.18340895067456203, - "rateDenominator": 67, - "rateNumerator": 12, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.23478332283457184, - "rateDenominator": 63, - "rateNumerator": 14, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "<25", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.2690227454432028, - "rateDenominator": 118, - "rateNumerator": 31, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.27481568501675263, - "rateDenominator": 441, - "rateNumerator": 121, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.12018058712525873, - "rateDenominator": 449, - "rateNumerator": 53, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.2402087042057257, - "rateDenominator": 20, - "rateNumerator": 4, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "35-39", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.17992759857246687, - "rateDenominator": 87, - "rateNumerator": 15, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.22196213867495487, - "rateDenominator": 149, - "rateNumerator": 33, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.41129634928006986, - "rateDenominator": 225, - "rateNumerator": 92, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "30-34", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.28870527481138153, - "rateDenominator": 94, - "rateNumerator": 27, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "<25", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4763960230260721, - "rateDenominator": 116, - "rateNumerator": 55, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "35-39", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.23660929920882962, - "rateDenominator": 54, - "rateNumerator": 12, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.4310374831525233, - "rateDenominator": 147, - "rateNumerator": 63, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "40<", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.275369180956604, - "rateDenominator": 18, - "rateNumerator": 4, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.5837759054688773, - "rateDenominator": 161, - "rateNumerator": 93, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.3294634564258997, - "rateDenominator": 28, - "rateNumerator": 9, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.30626652228270784, - "rateDenominator": 25, - "rateNumerator": 7, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "<25", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.24919925998583026, - "rateDenominator": 74, - "rateNumerator": 18, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.25414221873190557, - "rateDenominator": 97, - "rateNumerator": 24, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.2750362211462777, - "rateDenominator": 95, - "rateNumerator": 26, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.23428414991227708, - "rateDenominator": 100, - "rateNumerator": 23, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.29240777303417276, - "rateDenominator": 92, - "rateNumerator": 26, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "30-34", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5671195169003167, - "rateDenominator": 94, - "rateNumerator": 53, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.30443647769324317, - "rateDenominator": 80, - "rateNumerator": 24, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "25-29", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.23823221081205115, - "rateDenominator": 64, - "rateNumerator": 15, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "30-34", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.2582165741642914, - "rateDenominator": 78, - "rateNumerator": 20, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.27761953099188136, - "rateDenominator": 267, - "rateNumerator": 74, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "<25", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.28426573172755654, - "rateDenominator": 116, - "rateNumerator": 32, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "35-39", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.1879370058756094, - "rateDenominator": 88, - "rateNumerator": 16, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "25-29", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.26050703801768876, - "rateDenominator": 61, - "rateNumerator": 15, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "25-29", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5488162916734327, - "rateDenominator": 96, - "rateNumerator": 52, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "<25", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.24231746457723546, - "rateDenominator": 98, - "rateNumerator": 23, - "releaseCohort": 2018, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.30284021048220006, - "rateDenominator": 38, - "rateNumerator": 11, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.2714481677671729, - "rateDenominator": 38, - "rateNumerator": 10, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.25725545639526304, - "rateDenominator": 124, - "rateNumerator": 31, - "releaseCohort": 2018, - }, - Object { - "ageBucket": "25-29", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.23654226546764148, - "rateDenominator": 97, - "rateNumerator": 22, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.2922694972867569, - "rateDenominator": 128, - "rateNumerator": 37, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "35-39", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4304802865478109, - "rateDenominator": 87, - "rateNumerator": 37, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.35902381762813385, - "rateDenominator": 28, - "rateNumerator": 10, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "35-39", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.23417186488773897, - "rateDenominator": 69, - "rateNumerator": 16, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.28183241952450866, - "rateDenominator": 34, - "rateNumerator": 9, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.6036352093515812, - "rateDenominator": 121, - "rateNumerator": 73, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.475870096112616, - "rateDenominator": 246, - "rateNumerator": 117, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.47601493062591504, - "rateDenominator": 107, - "rateNumerator": 50, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "<25", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5047399015877124, - "rateDenominator": 93, - "rateNumerator": 46, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.44386132162712605, - "rateDenominator": 56, - "rateNumerator": 24, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "<25", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3665902040105169, - "rateDenominator": 74, - "rateNumerator": 27, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.3140820281613471, - "rateDenominator": 123, - "rateNumerator": 38, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.28361801197253, - "rateDenominator": 78, - "rateNumerator": 22, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.4899439939402799, - "rateDenominator": 25, - "rateNumerator": 12, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.47925974391973125, - "rateDenominator": 117, - "rateNumerator": 56, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "30-34", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.41852319995325926, - "rateDenominator": 75, - "rateNumerator": 31, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.15472315694153785, - "rateDenominator": 441, - "rateNumerator": 68, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.3737065125769247, - "rateDenominator": 102, - "rateNumerator": 38, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "30-34", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.17780049554508354, - "rateDenominator": 74, - "rateNumerator": 13, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.5363604285593335, - "rateDenominator": 101, - "rateNumerator": 54, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "<25", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4848114314171283, - "rateDenominator": 73, - "rateNumerator": 35, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "35-39", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.33001406636365155, - "rateDenominator": 82, - "rateNumerator": 27, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.25360460340051105, - "rateDenominator": 35, - "rateNumerator": 8, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.38288543842088013, - "rateDenominator": 283, - "rateNumerator": 108, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "25-29", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.18018087934500204, - "rateDenominator": 96, - "rateNumerator": 17, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "40<", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4911333147503417, - "rateDenominator": 18, - "rateNumerator": 8, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.22639630953849982, - "rateDenominator": 94, - "rateNumerator": 21, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.46066132952357136, - "rateDenominator": 100, - "rateNumerator": 46, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.49732304633219726, - "rateDenominator": 25, - "rateNumerator": 12, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "25-29", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4530695537042013, - "rateDenominator": 96, - "rateNumerator": 43, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.2168935769006367, - "rateDenominator": 64, - "rateNumerator": 13, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "40<", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4169563480674632, - "rateDenominator": 17, - "rateNumerator": 7, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "35-39", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.18213060413322318, - "rateDenominator": 48, - "rateNumerator": 8, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.24093034729343787, - "rateDenominator": 38, - "rateNumerator": 9, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "<25", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.2711491364902294, - "rateDenominator": 93, - "rateNumerator": 25, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "35-39", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3062906781394077, - "rateDenominator": 54, - "rateNumerator": 16, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "<25", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3048399084115511, - "rateDenominator": 110, - "rateNumerator": 33, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.1931273982584022, - "rateDenominator": 160, - "rateNumerator": 30, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.33041111630606557, - "rateDenominator": 82, - "rateNumerator": 27, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "30-34", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.29413055653070513, - "rateDenominator": 74, - "rateNumerator": 21, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.14508149308998097, - "rateDenominator": 22, - "rateNumerator": 3, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.8125687592704789, - "rateDenominator": 23, - "rateNumerator": 18, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.519319795206675, - "rateDenominator": 294, - "rateNumerator": 152, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.3181170286412642, - "rateDenominator": 160, - "rateNumerator": 50, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "25-29", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3045929791910029, - "rateDenominator": 61, - "rateNumerator": 18, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.13287070199123258, - "rateDenominator": 21, - "rateNumerator": 2, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.3436280912901396, - "rateDenominator": 67, - "rateNumerator": 23, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "35-39", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.46655674830491856, - "rateDenominator": 55, - "rateNumerator": 25, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "40<", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.1288720806575912, - "rateDenominator": 21, - "rateNumerator": 2, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "35-39", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.24533156492763689, - "rateDenominator": 48, - "rateNumerator": 11, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.29718468868384407, - "rateDenominator": 35, - "rateNumerator": 10, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "25-29", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.1846750474711578, - "rateDenominator": 60, - "rateNumerator": 11, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.4064911593897479, - "rateDenominator": 25, - "rateNumerator": 10, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "25-29", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.15344533431757498, - "rateDenominator": 91, - "rateNumerator": 13, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.2229969098095685, - "rateDenominator": 121, - "rateNumerator": 26, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "40<", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4379753894586494, - "rateDenominator": 27, - "rateNumerator": 11, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "40<", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3192560274632189, - "rateDenominator": 25, - "rateNumerator": 7, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.4473239163869128, - "rateDenominator": 147, - "rateNumerator": 65, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "<25", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.45834914427050916, - "rateDenominator": 74, - "rateNumerator": 33, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.45247305348896283, - "rateDenominator": 180, - "rateNumerator": 81, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "35-39", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.2944076241843945, - "rateDenominator": 86, - "rateNumerator": 25, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4689506965509697, - "rateDenominator": 283, - "rateNumerator": 132, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "<25", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.43670377993106757, - "rateDenominator": 117, - "rateNumerator": 51, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.3117485460499243, - "rateDenominator": 38, - "rateNumerator": 11, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.31880896533864345, - "rateDenominator": 35, - "rateNumerator": 11, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "40<", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.47831190109530425, - "rateDenominator": 27, - "rateNumerator": 12, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "40<", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.41270153398843556, - "rateDenominator": 18, - "rateNumerator": 7, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.23629892983690073, - "rateDenominator": 22, - "rateNumerator": 5, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.35903743790238474, - "rateDenominator": 149, - "rateNumerator": 53, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.16466372712401717, - "rateDenominator": 35, - "rateNumerator": 5, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.37767495725981837, - "rateDenominator": 36, - "rateNumerator": 13, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.5429828053260367, - "rateDenominator": 283, - "rateNumerator": 153, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "<25", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.6510127425775054, - "rateDenominator": 93, - "rateNumerator": 60, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "30-34", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.26091572422805687, - "rateDenominator": 119, - "rateNumerator": 31, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - "rate": 0.7316217016934994, - "rateDenominator": 161, - "rateNumerator": 117, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "35-39", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3992485025134245, - "rateDenominator": 86, - "rateNumerator": 34, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.3895765803300314, - "rateDenominator": 63, - "rateNumerator": 24, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.5551350135094041, - "rateDenominator": 100, - "rateNumerator": 55, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.22286319005574337, - "rateDenominator": 187, - "rateNumerator": 41, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.19130527518702728, - "rateDenominator": 20, - "rateNumerator": 3, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.20796908096295158, - "rateDenominator": 117, - "rateNumerator": 24, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.1907295816980814, - "rateDenominator": 38, - "rateNumerator": 7, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "25-29", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.1723581519000455, - "rateDenominator": 97, - "rateNumerator": 16, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.25894059644135314, - "rateDenominator": 67, - "rateNumerator": 17, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "35-39", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.23277885726233172, - "rateDenominator": 73, - "rateNumerator": 16, - "releaseCohort": 2018, - }, - Object { - "ageBucket": "30-34", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.18538703719185204, - "rateDenominator": 119, - "rateNumerator": 22, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.17288990124088352, - "rateDenominator": 123, - "rateNumerator": 21, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "35-39", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.6146188831318061, - "rateDenominator": 55, - "rateNumerator": 33, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "<25", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.35398806455471876, - "rateDenominator": 117, - "rateNumerator": 41, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.5955556509995608, - "rateDenominator": 80, - "rateNumerator": 47, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.24456560764135524, - "rateDenominator": 76, - "rateNumerator": 18, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "<25", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.37458641115838864, - "rateDenominator": 77, - "rateNumerator": 28, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3704884876536363, - "rateDenominator": 353, - "rateNumerator": 130, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "30-34", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.34592942626462897, - "rateDenominator": 117, - "rateNumerator": 40, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.40961501890016133, - "rateDenominator": 82, - "rateNumerator": 33, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.514834868193504, - "rateDenominator": 225, - "rateNumerator": 115, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "40<", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.22796488826846184, - "rateDenominator": 15, - "rateNumerator": 3, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.14861746590445857, - "rateDenominator": 30, - "rateNumerator": 4, - "releaseCohort": 2018, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.20094613685211687, - "rateDenominator": 180, - "rateNumerator": 36, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "<25", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.269655468703289, - "rateDenominator": 73, - "rateNumerator": 19, - "releaseCohort": 2015, - }, - Object { - "ageBucket": "30-34", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.2498542775940517, - "rateDenominator": 117, - "rateNumerator": 29, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "35-39", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.32430245366805804, - "rateDenominator": 87, - "rateNumerator": 28, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.27577650321290686, - "rateDenominator": 294, - "rateNumerator": 81, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.3860085642332696, - "rateDenominator": 157, - "rateNumerator": 60, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.15635696348384504, - "rateDenominator": 122, - "rateNumerator": 19, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "30-34", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.43980239410058247, - "rateDenominator": 94, - "rateNumerator": 41, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.5098740144908329, - "rateDenominator": 23, - "rateNumerator": 11, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.17053333922773994, - "rateDenominator": 281, - "rateNumerator": 47, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.31355400245648035, - "rateDenominator": 157, - "rateNumerator": 49, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.4043962112906952, - "rateDenominator": 97, - "rateNumerator": 39, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.15381910099010365, - "rateDenominator": 64, - "rateNumerator": 9, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.28311542810144474, - "rateDenominator": 140, - "rateNumerator": 39, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.2944840228856708, - "rateDenominator": 25, - "rateNumerator": 7, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.28651215636619476, - "rateDenominator": 67, - "rateNumerator": 19, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "30-34", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.41497588733226937, - "rateDenominator": 118, - "rateNumerator": 48, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "<25", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.21101996885695878, - "rateDenominator": 77, - "rateNumerator": 16, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "25-29", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4072862076027819, - "rateDenominator": 64, - "rateNumerator": 26, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "30-34", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.3381762354345907, - "rateDenominator": 65, - "rateNumerator": 21, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "30-34", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.6191049475384869, - "rateDenominator": 78, - "rateNumerator": 48, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.2527083349347715, - "rateDenominator": 102, - "rateNumerator": 25, - "releaseCohort": 2018, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.3702755342518667, - "rateDenominator": 117, - "rateNumerator": 43, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.4876677382834119, - "rateDenominator": 353, - "rateNumerator": 172, - "releaseCohort": 2014, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.23201745045523087, - "rateDenominator": 420, - "rateNumerator": 97, - "releaseCohort": 2017, - }, - Object { - "ageBucket": "40<", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.19478524285979976, - "rateDenominator": 17, - "rateNumerator": 3, - "releaseCohort": 2012, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.1572896940409308, - "rateDenominator": 38, - "rateNumerator": 5, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "<25", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.39313878244128553, - "rateDenominator": 116, - "rateNumerator": 45, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.5693476387591667, - "rateDenominator": 187, - "rateNumerator": 106, - "releaseCohort": 2013, - }, - Object { - "ageBucket": "ALL", - "followupYears": 5, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.3178278332287177, - "rateDenominator": 281, - "rateNumerator": 89, - "releaseCohort": 2009, - }, - Object { - "ageBucket": "25-29", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.13413585621689023, - "rateDenominator": 53, - "rateNumerator": 7, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "40<", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.6395550435468462, - "rateDenominator": 27, - "rateNumerator": 17, - "releaseCohort": 2010, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "MALE", - "raceOrEthnicity": "ALL", - "rate": 0.20957911561902412, - "rateDenominator": 286, - "rateNumerator": 59, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "ALL", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.1917396412819206, - "rateDenominator": 39, - "rateNumerator": 7, - "releaseCohort": 2016, - }, - Object { - "ageBucket": "40<", - "followupYears": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.21443377694912613, - "rateDenominator": 22, - "rateNumerator": 4, - "releaseCohort": 2018, - }, - Object { - "ageBucket": "30-34", - "followupYears": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.44619487966518184, - "rateDenominator": 65, - "rateNumerator": 29, - "releaseCohort": 2011, - }, - Object { - "ageBucket": "ALL", - "followupYears": 3, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.37373532131252074, - "rateDenominator": 92, - "rateNumerator": 34, - "releaseCohort": 2015, - }, -] -`; - -exports[`data fetching for metric PrisonReleaseTypeAggregate 1`] = ` -Array [ - Object { - "ageBucket": "ALL", - "category": "transfer", - "count": 346, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "completion", - "count": 203, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "parole", - "count": 680, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "probation", - "count": 1088, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "death", - "count": 1174, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "category": "transfer", - "count": 170, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "category": "completion", - "count": 50, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "category": "parole", - "count": 98, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "category": "probation", - "count": 29, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "category": "death", - "count": 157, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "category": "transfer", - "count": 160, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "category": "completion", - "count": 93, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "category": "parole", - "count": 47, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "category": "probation", - "count": 28, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "category": "death", - "count": 149, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "category": "transfer", - "count": 49, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "category": "completion", - "count": 163, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "category": "parole", - "count": 260, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "category": "probation", - "count": 83, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "category": "death", - "count": 281, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "category": "transfer", - "count": 104, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "category": "completion", - "count": 326, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "category": "parole", - "count": 352, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "category": "probation", - "count": 204, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "category": "death", - "count": 61, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "category": "transfer", - "count": 123, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "category": "completion", - "count": 62, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "category": "parole", - "count": 212, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "category": "probation", - "count": 196, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "category": "death", - "count": 37, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "transfer", - "count": 104, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "category": "completion", - "count": 352, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "category": "parole", - "count": 326, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "category": "probation", - "count": 61, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "category": "death", - "count": 204, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "category": "transfer", - "count": 344, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "category": "completion", - "count": 200, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "category": "parole", - "count": 319, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "category": "probation", - "count": 60, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "category": "death", - "count": 102, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "category": "transfer", - "count": 22, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "category": "completion", - "count": 37, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "category": "parole", - "count": 125, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "category": "probation", - "count": 116, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "category": "death", - "count": 72, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "category": "transfer", - "count": 203, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "category": "completion", - "count": 188, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "category": "parole", - "count": 35, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "category": "probation", - "count": 118, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "category": "death", - "count": 60, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "category": "transfer", - "count": 44, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "category": "completion", - "count": 139, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "category": "parole", - "count": 87, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "category": "probation", - "count": 150, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "category": "death", - "count": 26, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "category": "transfer", - "count": 594, - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "completion", - "count": 189, - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "parole", - "count": 641, - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "probation", - "count": 371, - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "death", - "count": 111, - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "transfer", - "count": 92, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "completion", - "count": 494, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "parole", - "count": 533, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "probation", - "count": 309, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "death", - "count": 157, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, -] -`; - -exports[`data fetching for metric PrisonStayLengthAggregate 1`] = ` -Array [ - Object { - "ageBucket": "ALL", - "category": "lessThanOne", - "count": 346, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "oneTwo", - "count": 12, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "twoThree", - "count": 404, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "threeFive", - "count": 729, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "fiveTen", - "count": 609, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "tenTwenty", - "count": 31, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "moreThanTwenty", - "count": 210, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "category": "lessThanOne", - "count": 105, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "category": "oneTwo", - "count": 123, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "category": "twoThree", - "count": 185, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "category": "threeFive", - "count": 9, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "category": "fiveTen", - "count": 221, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "category": "tenTwenty", - "count": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "category": "moreThanTwenty", - "count": 64, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "category": "lessThanOne", - "count": 22, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "category": "oneTwo", - "count": 11, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "category": "twoThree", - "count": 33, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "category": "threeFive", - "count": 40, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "category": "fiveTen", - "count": 19, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "category": "tenTwenty", - "count": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "category": "moreThanTwenty", - "count": 1, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "category": "lessThanOne", - "count": 119, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "category": "oneTwo", - "count": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "category": "twoThree", - "count": 99, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "category": "threeFive", - "count": 56, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "category": "fiveTen", - "count": 66, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "category": "tenTwenty", - "count": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "category": "moreThanTwenty", - "count": 34, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "category": "lessThanOne", - "count": 60, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "category": "oneTwo", - "count": 36, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "category": "twoThree", - "count": 126, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "category": "threeFive", - "count": 2, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "category": "fiveTen", - "count": 70, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "category": "tenTwenty", - "count": 5, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "category": "moreThanTwenty", - "count": 105, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "category": "lessThanOne", - "count": 64, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "category": "oneTwo", - "count": 4, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "category": "twoThree", - "count": 10, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "category": "threeFive", - "count": 187, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "category": "fiveTen", - "count": 106, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "category": "tenTwenty", - "count": 124, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "category": "moreThanTwenty", - "count": 224, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "lessThanOne", - "count": 3, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "category": "oneTwo", - "count": 9, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "category": "twoThree", - "count": 99, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "category": "threeFive", - "count": 115, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "category": "fiveTen", - "count": 174, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "category": "tenTwenty", - "count": 208, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "category": "moreThanTwenty", - "count": 60, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "category": "lessThanOne", - "count": 1, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "category": "oneTwo", - "count": 42, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "category": "twoThree", - "count": 49, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "category": "threeFive", - "count": 4, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "category": "fiveTen", - "count": 26, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "category": "tenTwenty", - "count": 89, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "category": "moreThanTwenty", - "count": 74, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "category": "lessThanOne", - "count": 3, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "category": "oneTwo", - "count": 60, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "category": "twoThree", - "count": 174, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "category": "threeFive", - "count": 208, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "category": "fiveTen", - "count": 115, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "category": "tenTwenty", - "count": 9, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "category": "moreThanTwenty", - "count": 99, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "category": "lessThanOne", - "count": 9, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "category": "oneTwo", - "count": 218, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "category": "twoThree", - "count": 4, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "category": "threeFive", - "count": 104, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "category": "fiveTen", - "count": 63, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "category": "tenTwenty", - "count": 121, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "category": "moreThanTwenty", - "count": 182, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "category": "lessThanOne", - "count": 1, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "category": "oneTwo", - "count": 0, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "category": "twoThree", - "count": 2, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "category": "threeFive", - "count": 3, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "category": "fiveTen", - "count": 0, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "category": "tenTwenty", - "count": 4, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "category": "moreThanTwenty", - "count": 5, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "category": "lessThanOne", - "count": 17, - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "oneTwo", - "count": 329, - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "twoThree", - "count": 187, - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "threeFive", - "count": 394, - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "fiveTen", - "count": 218, - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "tenTwenty", - "count": 6, - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "moreThanTwenty", - "count": 114, - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "lessThanOne", - "count": 280, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "oneTwo", - "count": 14, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "twoThree", - "count": 186, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "threeFive", - "count": 96, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "fiveTen", - "count": 159, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "tenTwenty", - "count": 335, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "moreThanTwenty", - "count": 6, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, -] -`; - -exports[`data fetching for metric ProbationPopulationCurrent 1`] = ` -Array [ - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTH_CENTRAL", - "population": 206, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "SOUTH_CENTRAL", - "population": 18, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "SOUTH_CENTRAL", - "population": 56, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "SOUTH_CENTRAL", - "population": 39, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "SOUTH_CENTRAL", - "population": 53, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "SOUTH_CENTRAL", - "population": 40, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTH_CENTRAL", - "population": 68, - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTH_CENTRAL", - "population": 19, - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTH_CENTRAL", - "population": 59, - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTH_CENTRAL", - "population": 25, - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTH_CENTRAL", - "population": 36, - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "SOUTH_CENTRAL", - "population": 112, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "SOUTH_CENTRAL", - "population": 94, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "ALL", - "population": 1762, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "ALL", - "population": 256, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "ALL", - "population": 141, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "ALL", - "population": 475, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "ALL", - "population": 240, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "ALL", - "population": 650, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "ALL", - "population": 506, - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "ALL", - "population": 270, - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "ALL", - "population": 422, - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "ALL", - "population": 155, - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "ALL", - "population": 410, - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "ALL", - "population": 734, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "ALL", - "population": 1028, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTHWEST", - "population": 271, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "SOUTHWEST", - "population": 64, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "SOUTHWEST", - "population": 6, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "SOUTHWEST", - "population": 35, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "SOUTHWEST", - "population": 87, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "SOUTHWEST", - "population": 78, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTHWEST", - "population": 19, - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTHWEST", - "population": 55, - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTHWEST", - "population": 81, - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTHWEST", - "population": 18, - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTHWEST", - "population": 97, - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "SOUTHWEST", - "population": 52, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "SOUTHWEST", - "population": 219, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "OTHER", - "population": 61, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "OTHER", - "population": 17, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "OTHER", - "population": 13, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "OTHER", - "population": 10, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "OTHER", - "population": 0, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "OTHER", - "population": 20, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "OTHER", - "population": 17, - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "OTHER", - "population": 5, - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "OTHER", - "population": 19, - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "OTHER", - "population": 4, - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "OTHER", - "population": 15, - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "OTHER", - "population": 25, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "OTHER", - "population": 36, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "EAST_CENTRAL", - "population": 175, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "EAST_CENTRAL", - "population": 12, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "EAST_CENTRAL", - "population": 49, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "EAST_CENTRAL", - "population": 15, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "EAST_CENTRAL", - "population": 43, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "EAST_CENTRAL", - "population": 56, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "EAST_CENTRAL", - "population": 53, - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "EAST_CENTRAL", - "population": 38, - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "EAST_CENTRAL", - "population": 20, - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "EAST_CENTRAL", - "population": 13, - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "EAST_CENTRAL", - "population": 52, - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "EAST_CENTRAL", - "population": 23, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "EAST_CENTRAL", - "population": 152, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTH_CENTRAL", - "population": 281, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "NORTH_CENTRAL", - "population": 79, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "NORTH_CENTRAL", - "population": 98, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "NORTH_CENTRAL", - "population": 75, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "NORTH_CENTRAL", - "population": 15, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "NORTH_CENTRAL", - "population": 13, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTH_CENTRAL", - "population": 61, - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTH_CENTRAL", - "population": 63, - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTH_CENTRAL", - "population": 70, - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTH_CENTRAL", - "population": 31, - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTH_CENTRAL", - "population": 55, - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "NORTH_CENTRAL", - "population": 131, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "NORTH_CENTRAL", - "population": 150, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTHEAST", - "population": 42, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "SOUTHEAST", - "population": 4, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "SOUTHEAST", - "population": 13, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "SOUTHEAST", - "population": 4, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "SOUTHEAST", - "population": 11, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "SOUTHEAST", - "population": 10, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTHEAST", - "population": 8, - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTHEAST", - "population": 2, - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTHEAST", - "population": 12, - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTHEAST", - "population": 10, - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTHEAST", - "population": 10, - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "SOUTHEAST", - "population": 26, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "SOUTHEAST", - "population": 16, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST", - "population": 189, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "NORTHEAST", - "population": 65, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "NORTHEAST", - "population": 8, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "NORTHEAST", - "population": 31, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "NORTHEAST", - "population": 30, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "NORTHEAST", - "population": 55, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST", - "population": 39, - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST", - "population": 9, - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST", - "population": 70, - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST", - "population": 32, - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST", - "population": 38, - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "NORTHEAST", - "population": 107, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "NORTHEAST", - "population": 82, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST_CENTRAL", - "population": 173, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "NORTHEAST_CENTRAL", - "population": 72, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "NORTHEAST_CENTRAL", - "population": 15, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "NORTHEAST_CENTRAL", - "population": 13, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "NORTHEAST_CENTRAL", - "population": 57, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "NORTHEAST_CENTRAL", - "population": 15, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST_CENTRAL", - "population": 50, - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST_CENTRAL", - "population": 51, - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST_CENTRAL", - "population": 35, - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST_CENTRAL", - "population": 20, - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST_CENTRAL", - "population": 17, - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "NORTHEAST_CENTRAL", - "population": 41, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "NORTHEAST_CENTRAL", - "population": 132, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHWEST", - "population": 101, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "NORTHWEST", - "population": 24, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "NORTHWEST", - "population": 21, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "NORTHWEST", - "population": 28, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "NORTHWEST", - "population": 19, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "NORTHWEST", - "population": 9, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHWEST", - "population": 21, - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHWEST", - "population": 1, - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHWEST", - "population": 27, - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHWEST", - "population": 15, - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHWEST", - "population": 36, - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "NORTHWEST", - "population": 14, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "NORTHWEST", - "population": 87, - "raceOrEthnicity": "ALL", - }, -] -`; - -exports[`data fetching for metric ProbationPopulationHistorical 1`] = ` -Array [ - Object { - "ageBucket": "ALL", - "count": 3194, - "date": "2000-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 695, - "date": "2000-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 889, - "date": "2000-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 385, - "date": "2000-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 292, - "date": "2000-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 934, - "date": "2000-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 956, - "date": "2000-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 535, - "date": "2000-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 975, - "date": "2000-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 294, - "date": "2000-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 434, - "date": "2000-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2096, - "date": "2000-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1098, - "date": "2000-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3099, - "date": "2000-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 674, - "date": "2000-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 862, - "date": "2000-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 373, - "date": "2000-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 283, - "date": "2000-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 906, - "date": "2000-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 927, - "date": "2000-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 519, - "date": "2000-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 946, - "date": "2000-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 286, - "date": "2000-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 421, - "date": "2000-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2034, - "date": "2000-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1065, - "date": "2000-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3119, - "date": "2000-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 679, - "date": "2000-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 868, - "date": "2000-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 376, - "date": "2000-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 285, - "date": "2000-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 912, - "date": "2000-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 933, - "date": "2000-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 522, - "date": "2000-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 952, - "date": "2000-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 287, - "date": "2000-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 424, - "date": "2000-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2047, - "date": "2000-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1072, - "date": "2000-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3047, - "date": "2000-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 663, - "date": "2000-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 848, - "date": "2000-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 367, - "date": "2000-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 279, - "date": "2000-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 891, - "date": "2000-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 912, - "date": "2000-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 510, - "date": "2000-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 930, - "date": "2000-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 281, - "date": "2000-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 414, - "date": "2000-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2000, - "date": "2000-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1047, - "date": "2000-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3058, - "date": "2000-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 665, - "date": "2000-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 851, - "date": "2000-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 368, - "date": "2000-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 280, - "date": "2000-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 894, - "date": "2000-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 915, - "date": "2000-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 512, - "date": "2000-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 934, - "date": "2000-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 282, - "date": "2000-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 416, - "date": "2000-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2007, - "date": "2000-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1051, - "date": "2000-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3236, - "date": "2000-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 704, - "date": "2000-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 900, - "date": "2000-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 390, - "date": "2000-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 296, - "date": "2000-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 946, - "date": "2000-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 968, - "date": "2000-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 542, - "date": "2000-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 988, - "date": "2000-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 298, - "date": "2000-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 440, - "date": "2000-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2124, - "date": "2000-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1112, - "date": "2000-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3101, - "date": "2000-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 675, - "date": "2000-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 863, - "date": "2000-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 374, - "date": "2000-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 284, - "date": "2000-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 906, - "date": "2000-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 928, - "date": "2000-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 519, - "date": "2000-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 947, - "date": "2000-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 286, - "date": "2000-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 422, - "date": "2000-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2035, - "date": "2000-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1066, - "date": "2000-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3137, - "date": "2000-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 683, - "date": "2000-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 873, - "date": "2000-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 378, - "date": "2000-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 287, - "date": "2000-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 917, - "date": "2000-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 939, - "date": "2000-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 525, - "date": "2000-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 958, - "date": "2000-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 289, - "date": "2000-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 426, - "date": "2000-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2059, - "date": "2000-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1078, - "date": "2000-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3259, - "date": "2000-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 709, - "date": "2000-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 907, - "date": "2000-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 393, - "date": "2000-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 298, - "date": "2000-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 953, - "date": "2000-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 975, - "date": "2000-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 546, - "date": "2000-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 995, - "date": "2000-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 300, - "date": "2000-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 443, - "date": "2000-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2139, - "date": "2000-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1120, - "date": "2000-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3203, - "date": "2000-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 697, - "date": "2000-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 891, - "date": "2000-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 386, - "date": "2000-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 293, - "date": "2000-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 936, - "date": "2000-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 958, - "date": "2000-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 536, - "date": "2000-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 978, - "date": "2000-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 295, - "date": "2000-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 435, - "date": "2000-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2102, - "date": "2000-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1101, - "date": "2000-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3257, - "date": "2000-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 709, - "date": "2000-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 906, - "date": "2000-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 392, - "date": "2000-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 298, - "date": "2000-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 952, - "date": "2000-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 975, - "date": "2000-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 545, - "date": "2000-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 994, - "date": "2000-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 300, - "date": "2000-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 443, - "date": "2000-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2137, - "date": "2000-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1120, - "date": "2000-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3255, - "date": "2000-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 708, - "date": "2000-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 906, - "date": "2000-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 392, - "date": "2000-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 298, - "date": "2000-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 951, - "date": "2000-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 974, - "date": "2000-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 545, - "date": "2000-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 994, - "date": "2000-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 300, - "date": "2000-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 442, - "date": "2000-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2136, - "date": "2000-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1119, - "date": "2000-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3317, - "date": "2001-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 722, - "date": "2001-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 923, - "date": "2001-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 400, - "date": "2001-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 303, - "date": "2001-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 970, - "date": "2001-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 993, - "date": "2001-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 555, - "date": "2001-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1013, - "date": "2001-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 306, - "date": "2001-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 451, - "date": "2001-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2177, - "date": "2001-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1140, - "date": "2001-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3226, - "date": "2001-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 702, - "date": "2001-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 898, - "date": "2001-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 389, - "date": "2001-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 295, - "date": "2001-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 943, - "date": "2001-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 965, - "date": "2001-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 540, - "date": "2001-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 985, - "date": "2001-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 297, - "date": "2001-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 439, - "date": "2001-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2117, - "date": "2001-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1109, - "date": "2001-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3242, - "date": "2001-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 705, - "date": "2001-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 902, - "date": "2001-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 391, - "date": "2001-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 296, - "date": "2001-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 948, - "date": "2001-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 970, - "date": "2001-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 543, - "date": "2001-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 990, - "date": "2001-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 299, - "date": "2001-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 441, - "date": "2001-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2128, - "date": "2001-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1114, - "date": "2001-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3315, - "date": "2001-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 721, - "date": "2001-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 922, - "date": "2001-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 399, - "date": "2001-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 303, - "date": "2001-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 969, - "date": "2001-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 992, - "date": "2001-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 555, - "date": "2001-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1012, - "date": "2001-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 305, - "date": "2001-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 451, - "date": "2001-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2175, - "date": "2001-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1140, - "date": "2001-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3319, - "date": "2001-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 722, - "date": "2001-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 923, - "date": "2001-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 400, - "date": "2001-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 303, - "date": "2001-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 970, - "date": "2001-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 993, - "date": "2001-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 556, - "date": "2001-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1013, - "date": "2001-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 306, - "date": "2001-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 451, - "date": "2001-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2178, - "date": "2001-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1141, - "date": "2001-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3321, - "date": "2001-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 723, - "date": "2001-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 924, - "date": "2001-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 400, - "date": "2001-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 304, - "date": "2001-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 971, - "date": "2001-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 994, - "date": "2001-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 556, - "date": "2001-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1014, - "date": "2001-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 306, - "date": "2001-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 451, - "date": "2001-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2179, - "date": "2001-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1142, - "date": "2001-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3299, - "date": "2001-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 718, - "date": "2001-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 918, - "date": "2001-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 397, - "date": "2001-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 302, - "date": "2001-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 964, - "date": "2001-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 987, - "date": "2001-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 552, - "date": "2001-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1007, - "date": "2001-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 304, - "date": "2001-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 448, - "date": "2001-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2165, - "date": "2001-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1134, - "date": "2001-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3316, - "date": "2001-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 721, - "date": "2001-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 923, - "date": "2001-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 399, - "date": "2001-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 303, - "date": "2001-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 969, - "date": "2001-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 992, - "date": "2001-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 555, - "date": "2001-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1012, - "date": "2001-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 305, - "date": "2001-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 451, - "date": "2001-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2176, - "date": "2001-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1140, - "date": "2001-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3406, - "date": "2001-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 741, - "date": "2001-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 948, - "date": "2001-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 410, - "date": "2001-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 311, - "date": "2001-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 996, - "date": "2001-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1019, - "date": "2001-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 570, - "date": "2001-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1040, - "date": "2001-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 314, - "date": "2001-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 463, - "date": "2001-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2235, - "date": "2001-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1171, - "date": "2001-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3282, - "date": "2001-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 714, - "date": "2001-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 913, - "date": "2001-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 395, - "date": "2001-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 300, - "date": "2001-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 959, - "date": "2001-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 982, - "date": "2001-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 549, - "date": "2001-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1002, - "date": "2001-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 302, - "date": "2001-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 446, - "date": "2001-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2154, - "date": "2001-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1128, - "date": "2001-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3403, - "date": "2001-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 740, - "date": "2001-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 947, - "date": "2001-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 410, - "date": "2001-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 311, - "date": "2001-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 995, - "date": "2001-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1018, - "date": "2001-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 570, - "date": "2001-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1039, - "date": "2001-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 314, - "date": "2001-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 463, - "date": "2001-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2233, - "date": "2001-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1170, - "date": "2001-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3490, - "date": "2001-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 759, - "date": "2001-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 971, - "date": "2001-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 420, - "date": "2001-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 319, - "date": "2001-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1020, - "date": "2001-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1044, - "date": "2001-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 584, - "date": "2001-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1066, - "date": "2001-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 322, - "date": "2001-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 474, - "date": "2001-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2290, - "date": "2001-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1200, - "date": "2001-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3377, - "date": "2002-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 735, - "date": "2002-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 940, - "date": "2002-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 407, - "date": "2002-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 309, - "date": "2002-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 987, - "date": "2002-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1010, - "date": "2002-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 565, - "date": "2002-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1031, - "date": "2002-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 311, - "date": "2002-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 459, - "date": "2002-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2216, - "date": "2002-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1161, - "date": "2002-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3503, - "date": "2002-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 762, - "date": "2002-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 975, - "date": "2002-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 422, - "date": "2002-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 320, - "date": "2002-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1024, - "date": "2002-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1048, - "date": "2002-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 586, - "date": "2002-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1070, - "date": "2002-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 323, - "date": "2002-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 476, - "date": "2002-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2299, - "date": "2002-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1204, - "date": "2002-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3482, - "date": "2002-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 758, - "date": "2002-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 969, - "date": "2002-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 419, - "date": "2002-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 318, - "date": "2002-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1018, - "date": "2002-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1042, - "date": "2002-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 583, - "date": "2002-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1063, - "date": "2002-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 321, - "date": "2002-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 473, - "date": "2002-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2285, - "date": "2002-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1197, - "date": "2002-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3523, - "date": "2002-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 766, - "date": "2002-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 980, - "date": "2002-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 424, - "date": "2002-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 322, - "date": "2002-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1030, - "date": "2002-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1054, - "date": "2002-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 590, - "date": "2002-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1076, - "date": "2002-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 325, - "date": "2002-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 479, - "date": "2002-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2312, - "date": "2002-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1211, - "date": "2002-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3597, - "date": "2002-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 783, - "date": "2002-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1001, - "date": "2002-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 433, - "date": "2002-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 329, - "date": "2002-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1051, - "date": "2002-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1076, - "date": "2002-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 602, - "date": "2002-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1098, - "date": "2002-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 331, - "date": "2002-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 489, - "date": "2002-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2361, - "date": "2002-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1236, - "date": "2002-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3615, - "date": "2002-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 786, - "date": "2002-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1006, - "date": "2002-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 436, - "date": "2002-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 331, - "date": "2002-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1057, - "date": "2002-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1082, - "date": "2002-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 605, - "date": "2002-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1104, - "date": "2002-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 333, - "date": "2002-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 491, - "date": "2002-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2372, - "date": "2002-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1243, - "date": "2002-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3719, - "date": "2002-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 809, - "date": "2002-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1035, - "date": "2002-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 448, - "date": "2002-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 340, - "date": "2002-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1087, - "date": "2002-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1113, - "date": "2002-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 623, - "date": "2002-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1135, - "date": "2002-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 343, - "date": "2002-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 506, - "date": "2002-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2441, - "date": "2002-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1278, - "date": "2002-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3645, - "date": "2002-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 793, - "date": "2002-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1014, - "date": "2002-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 439, - "date": "2002-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 333, - "date": "2002-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1065, - "date": "2002-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1091, - "date": "2002-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 610, - "date": "2002-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1113, - "date": "2002-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 336, - "date": "2002-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 495, - "date": "2002-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2392, - "date": "2002-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1253, - "date": "2002-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3709, - "date": "2002-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 807, - "date": "2002-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1032, - "date": "2002-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 447, - "date": "2002-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 339, - "date": "2002-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1084, - "date": "2002-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1110, - "date": "2002-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 621, - "date": "2002-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1132, - "date": "2002-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 342, - "date": "2002-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 504, - "date": "2002-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2434, - "date": "2002-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1275, - "date": "2002-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3587, - "date": "2002-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 780, - "date": "2002-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 998, - "date": "2002-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 432, - "date": "2002-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 328, - "date": "2002-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1049, - "date": "2002-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1073, - "date": "2002-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 600, - "date": "2002-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1095, - "date": "2002-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 330, - "date": "2002-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 488, - "date": "2002-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2354, - "date": "2002-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1233, - "date": "2002-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3612, - "date": "2002-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 786, - "date": "2002-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1005, - "date": "2002-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 435, - "date": "2002-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 330, - "date": "2002-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1056, - "date": "2002-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1081, - "date": "2002-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 605, - "date": "2002-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1103, - "date": "2002-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 333, - "date": "2002-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 491, - "date": "2002-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2370, - "date": "2002-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1242, - "date": "2002-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3576, - "date": "2002-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 778, - "date": "2002-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 995, - "date": "2002-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 431, - "date": "2002-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 327, - "date": "2002-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1045, - "date": "2002-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1070, - "date": "2002-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 599, - "date": "2002-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1092, - "date": "2002-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 329, - "date": "2002-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 486, - "date": "2002-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2347, - "date": "2002-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1229, - "date": "2002-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3655, - "date": "2003-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 795, - "date": "2003-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1017, - "date": "2003-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 440, - "date": "2003-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 334, - "date": "2003-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1068, - "date": "2003-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1094, - "date": "2003-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 612, - "date": "2003-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1116, - "date": "2003-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 337, - "date": "2003-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 497, - "date": "2003-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2399, - "date": "2003-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1256, - "date": "2003-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3773, - "date": "2003-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 821, - "date": "2003-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1050, - "date": "2003-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 455, - "date": "2003-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 345, - "date": "2003-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1103, - "date": "2003-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1129, - "date": "2003-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 632, - "date": "2003-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1152, - "date": "2003-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 348, - "date": "2003-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 513, - "date": "2003-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2476, - "date": "2003-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1297, - "date": "2003-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3631, - "date": "2003-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 790, - "date": "2003-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1010, - "date": "2003-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 437, - "date": "2003-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 332, - "date": "2003-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1061, - "date": "2003-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1086, - "date": "2003-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 608, - "date": "2003-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1109, - "date": "2003-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 335, - "date": "2003-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 494, - "date": "2003-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2383, - "date": "2003-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1248, - "date": "2003-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3843, - "date": "2003-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 836, - "date": "2003-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1069, - "date": "2003-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 463, - "date": "2003-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 351, - "date": "2003-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1123, - "date": "2003-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1150, - "date": "2003-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 643, - "date": "2003-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1173, - "date": "2003-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 354, - "date": "2003-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 522, - "date": "2003-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2522, - "date": "2003-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1321, - "date": "2003-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3791, - "date": "2003-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 825, - "date": "2003-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1055, - "date": "2003-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 457, - "date": "2003-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 347, - "date": "2003-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1108, - "date": "2003-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1134, - "date": "2003-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 635, - "date": "2003-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1157, - "date": "2003-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 349, - "date": "2003-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 515, - "date": "2003-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2488, - "date": "2003-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1303, - "date": "2003-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3778, - "date": "2003-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 822, - "date": "2003-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1051, - "date": "2003-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 455, - "date": "2003-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 345, - "date": "2003-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1104, - "date": "2003-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1130, - "date": "2003-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 632, - "date": "2003-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1153, - "date": "2003-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 348, - "date": "2003-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 514, - "date": "2003-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2479, - "date": "2003-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1299, - "date": "2003-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3964, - "date": "2003-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 862, - "date": "2003-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1103, - "date": "2003-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 478, - "date": "2003-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 362, - "date": "2003-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1159, - "date": "2003-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1186, - "date": "2003-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 664, - "date": "2003-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1210, - "date": "2003-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 365, - "date": "2003-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 539, - "date": "2003-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2601, - "date": "2003-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1363, - "date": "2003-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4004, - "date": "2003-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 871, - "date": "2003-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1114, - "date": "2003-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 482, - "date": "2003-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 366, - "date": "2003-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1170, - "date": "2003-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1198, - "date": "2003-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 670, - "date": "2003-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1222, - "date": "2003-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 369, - "date": "2003-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 544, - "date": "2003-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2628, - "date": "2003-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1376, - "date": "2003-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3801, - "date": "2003-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 827, - "date": "2003-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1057, - "date": "2003-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 458, - "date": "2003-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 348, - "date": "2003-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1111, - "date": "2003-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1137, - "date": "2003-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 636, - "date": "2003-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1161, - "date": "2003-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 350, - "date": "2003-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 517, - "date": "2003-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2494, - "date": "2003-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1307, - "date": "2003-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3939, - "date": "2003-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 857, - "date": "2003-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1096, - "date": "2003-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 475, - "date": "2003-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 360, - "date": "2003-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1151, - "date": "2003-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1179, - "date": "2003-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 659, - "date": "2003-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1203, - "date": "2003-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 363, - "date": "2003-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 535, - "date": "2003-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2585, - "date": "2003-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1354, - "date": "2003-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3835, - "date": "2003-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 834, - "date": "2003-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1067, - "date": "2003-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 462, - "date": "2003-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 351, - "date": "2003-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1121, - "date": "2003-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1148, - "date": "2003-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 642, - "date": "2003-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1171, - "date": "2003-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 353, - "date": "2003-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 521, - "date": "2003-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2517, - "date": "2003-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1318, - "date": "2003-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3981, - "date": "2003-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 866, - "date": "2003-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1108, - "date": "2003-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 480, - "date": "2003-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 364, - "date": "2003-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1164, - "date": "2003-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1191, - "date": "2003-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 666, - "date": "2003-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1215, - "date": "2003-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 367, - "date": "2003-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 541, - "date": "2003-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2613, - "date": "2003-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1368, - "date": "2003-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3946, - "date": "2004-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 859, - "date": "2004-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1098, - "date": "2004-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 475, - "date": "2004-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 361, - "date": "2004-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1153, - "date": "2004-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1181, - "date": "2004-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 661, - "date": "2004-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1205, - "date": "2004-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 364, - "date": "2004-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 536, - "date": "2004-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2590, - "date": "2004-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1356, - "date": "2004-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3979, - "date": "2004-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 866, - "date": "2004-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1107, - "date": "2004-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 479, - "date": "2004-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 364, - "date": "2004-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1163, - "date": "2004-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1191, - "date": "2004-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 666, - "date": "2004-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1215, - "date": "2004-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 367, - "date": "2004-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 541, - "date": "2004-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2611, - "date": "2004-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1368, - "date": "2004-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3956, - "date": "2004-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 861, - "date": "2004-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1101, - "date": "2004-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 477, - "date": "2004-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 362, - "date": "2004-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1156, - "date": "2004-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1184, - "date": "2004-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 662, - "date": "2004-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1208, - "date": "2004-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 364, - "date": "2004-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 538, - "date": "2004-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2596, - "date": "2004-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1360, - "date": "2004-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 3951, - "date": "2004-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 860, - "date": "2004-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1099, - "date": "2004-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 476, - "date": "2004-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 361, - "date": "2004-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1155, - "date": "2004-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1182, - "date": "2004-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 661, - "date": "2004-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1206, - "date": "2004-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 364, - "date": "2004-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 537, - "date": "2004-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2593, - "date": "2004-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1358, - "date": "2004-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4090, - "date": "2004-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 890, - "date": "2004-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1138, - "date": "2004-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 493, - "date": "2004-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 374, - "date": "2004-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1196, - "date": "2004-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1224, - "date": "2004-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 685, - "date": "2004-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1249, - "date": "2004-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 377, - "date": "2004-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 556, - "date": "2004-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2684, - "date": "2004-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1406, - "date": "2004-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4135, - "date": "2004-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 900, - "date": "2004-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1150, - "date": "2004-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 498, - "date": "2004-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 378, - "date": "2004-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1209, - "date": "2004-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1237, - "date": "2004-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 692, - "date": "2004-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1262, - "date": "2004-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 381, - "date": "2004-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 562, - "date": "2004-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2714, - "date": "2004-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1421, - "date": "2004-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4075, - "date": "2004-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 887, - "date": "2004-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1134, - "date": "2004-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 491, - "date": "2004-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 373, - "date": "2004-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1191, - "date": "2004-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1219, - "date": "2004-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 682, - "date": "2004-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1244, - "date": "2004-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 375, - "date": "2004-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 554, - "date": "2004-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2674, - "date": "2004-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1401, - "date": "2004-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4111, - "date": "2004-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 894, - "date": "2004-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1144, - "date": "2004-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 495, - "date": "2004-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 376, - "date": "2004-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1202, - "date": "2004-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1230, - "date": "2004-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 688, - "date": "2004-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1255, - "date": "2004-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 379, - "date": "2004-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 559, - "date": "2004-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2698, - "date": "2004-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1413, - "date": "2004-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4058, - "date": "2004-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 883, - "date": "2004-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1129, - "date": "2004-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 489, - "date": "2004-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 371, - "date": "2004-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1186, - "date": "2004-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1214, - "date": "2004-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 679, - "date": "2004-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1239, - "date": "2004-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 374, - "date": "2004-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 552, - "date": "2004-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2663, - "date": "2004-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1395, - "date": "2004-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4078, - "date": "2004-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 887, - "date": "2004-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1135, - "date": "2004-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 491, - "date": "2004-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 373, - "date": "2004-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1192, - "date": "2004-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1220, - "date": "2004-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 683, - "date": "2004-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1245, - "date": "2004-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 376, - "date": "2004-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 554, - "date": "2004-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2676, - "date": "2004-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1402, - "date": "2004-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4118, - "date": "2004-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 896, - "date": "2004-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1146, - "date": "2004-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 496, - "date": "2004-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 377, - "date": "2004-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1204, - "date": "2004-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1232, - "date": "2004-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 689, - "date": "2004-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1257, - "date": "2004-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 379, - "date": "2004-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 560, - "date": "2004-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2702, - "date": "2004-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1416, - "date": "2004-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4178, - "date": "2004-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 909, - "date": "2004-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1162, - "date": "2004-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 503, - "date": "2004-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 382, - "date": "2004-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1221, - "date": "2004-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1250, - "date": "2004-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 699, - "date": "2004-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1276, - "date": "2004-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 385, - "date": "2004-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 568, - "date": "2004-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2742, - "date": "2004-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1436, - "date": "2004-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4197, - "date": "2005-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 913, - "date": "2005-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1168, - "date": "2005-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 506, - "date": "2005-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 384, - "date": "2005-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1227, - "date": "2005-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1256, - "date": "2005-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 703, - "date": "2005-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1281, - "date": "2005-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 387, - "date": "2005-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 571, - "date": "2005-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2754, - "date": "2005-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1443, - "date": "2005-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4167, - "date": "2005-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 907, - "date": "2005-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1159, - "date": "2005-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 502, - "date": "2005-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 381, - "date": "2005-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1218, - "date": "2005-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1247, - "date": "2005-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 698, - "date": "2005-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1272, - "date": "2005-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 384, - "date": "2005-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 566, - "date": "2005-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2735, - "date": "2005-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1432, - "date": "2005-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4313, - "date": "2005-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 938, - "date": "2005-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1200, - "date": "2005-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 520, - "date": "2005-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 394, - "date": "2005-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1261, - "date": "2005-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1291, - "date": "2005-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 722, - "date": "2005-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1317, - "date": "2005-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 397, - "date": "2005-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 586, - "date": "2005-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2830, - "date": "2005-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1483, - "date": "2005-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4279, - "date": "2005-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 931, - "date": "2005-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1190, - "date": "2005-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 516, - "date": "2005-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 391, - "date": "2005-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1251, - "date": "2005-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1280, - "date": "2005-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 716, - "date": "2005-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1306, - "date": "2005-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 394, - "date": "2005-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 582, - "date": "2005-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2808, - "date": "2005-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1471, - "date": "2005-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4345, - "date": "2005-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 945, - "date": "2005-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1209, - "date": "2005-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 523, - "date": "2005-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 397, - "date": "2005-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1270, - "date": "2005-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1300, - "date": "2005-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 727, - "date": "2005-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1327, - "date": "2005-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 400, - "date": "2005-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 591, - "date": "2005-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2851, - "date": "2005-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1494, - "date": "2005-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4380, - "date": "2005-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 953, - "date": "2005-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1219, - "date": "2005-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 528, - "date": "2005-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 400, - "date": "2005-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1280, - "date": "2005-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1311, - "date": "2005-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 733, - "date": "2005-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1337, - "date": "2005-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 404, - "date": "2005-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 595, - "date": "2005-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2874, - "date": "2005-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1506, - "date": "2005-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4357, - "date": "2005-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 948, - "date": "2005-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1212, - "date": "2005-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 525, - "date": "2005-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 398, - "date": "2005-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1274, - "date": "2005-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1304, - "date": "2005-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 729, - "date": "2005-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1330, - "date": "2005-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 401, - "date": "2005-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 592, - "date": "2005-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2859, - "date": "2005-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1498, - "date": "2005-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4310, - "date": "2005-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 938, - "date": "2005-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1199, - "date": "2005-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 519, - "date": "2005-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 394, - "date": "2005-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1260, - "date": "2005-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1290, - "date": "2005-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 721, - "date": "2005-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1316, - "date": "2005-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 397, - "date": "2005-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 586, - "date": "2005-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2828, - "date": "2005-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1482, - "date": "2005-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4299, - "date": "2005-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 935, - "date": "2005-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1196, - "date": "2005-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 518, - "date": "2005-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 393, - "date": "2005-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1257, - "date": "2005-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1286, - "date": "2005-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 720, - "date": "2005-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1313, - "date": "2005-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 396, - "date": "2005-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 584, - "date": "2005-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2821, - "date": "2005-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1478, - "date": "2005-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4440, - "date": "2005-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 966, - "date": "2005-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1235, - "date": "2005-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 535, - "date": "2005-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 406, - "date": "2005-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1298, - "date": "2005-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1329, - "date": "2005-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 743, - "date": "2005-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1356, - "date": "2005-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 409, - "date": "2005-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 604, - "date": "2005-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2914, - "date": "2005-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1526, - "date": "2005-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4391, - "date": "2005-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 955, - "date": "2005-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1222, - "date": "2005-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 529, - "date": "2005-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 401, - "date": "2005-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1284, - "date": "2005-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1314, - "date": "2005-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 735, - "date": "2005-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1341, - "date": "2005-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 405, - "date": "2005-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 597, - "date": "2005-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2882, - "date": "2005-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1509, - "date": "2005-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4540, - "date": "2005-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 988, - "date": "2005-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1263, - "date": "2005-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 547, - "date": "2005-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 415, - "date": "2005-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1327, - "date": "2005-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1358, - "date": "2005-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 760, - "date": "2005-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1386, - "date": "2005-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 418, - "date": "2005-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 617, - "date": "2005-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2979, - "date": "2005-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1561, - "date": "2005-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4606, - "date": "2006-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1002, - "date": "2006-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1281, - "date": "2006-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 555, - "date": "2006-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 421, - "date": "2006-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1346, - "date": "2006-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1378, - "date": "2006-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 771, - "date": "2006-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1406, - "date": "2006-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 424, - "date": "2006-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 626, - "date": "2006-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3023, - "date": "2006-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1583, - "date": "2006-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4470, - "date": "2006-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 973, - "date": "2006-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1244, - "date": "2006-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 539, - "date": "2006-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 409, - "date": "2006-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1307, - "date": "2006-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1338, - "date": "2006-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 748, - "date": "2006-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1365, - "date": "2006-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 412, - "date": "2006-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 608, - "date": "2006-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2933, - "date": "2006-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1537, - "date": "2006-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4540, - "date": "2006-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 988, - "date": "2006-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1263, - "date": "2006-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 547, - "date": "2006-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 415, - "date": "2006-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1327, - "date": "2006-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1358, - "date": "2006-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 760, - "date": "2006-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1386, - "date": "2006-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 418, - "date": "2006-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 617, - "date": "2006-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2979, - "date": "2006-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1561, - "date": "2006-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4606, - "date": "2006-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1002, - "date": "2006-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1281, - "date": "2006-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 555, - "date": "2006-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 421, - "date": "2006-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1346, - "date": "2006-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1378, - "date": "2006-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 771, - "date": "2006-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1406, - "date": "2006-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 424, - "date": "2006-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 626, - "date": "2006-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3023, - "date": "2006-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1583, - "date": "2006-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4639, - "date": "2006-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1009, - "date": "2006-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1291, - "date": "2006-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 559, - "date": "2006-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 424, - "date": "2006-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1356, - "date": "2006-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1388, - "date": "2006-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 777, - "date": "2006-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1416, - "date": "2006-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 427, - "date": "2006-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 631, - "date": "2006-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3044, - "date": "2006-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1595, - "date": "2006-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4518, - "date": "2006-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 983, - "date": "2006-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1257, - "date": "2006-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 544, - "date": "2006-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 413, - "date": "2006-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1321, - "date": "2006-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1352, - "date": "2006-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 756, - "date": "2006-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1379, - "date": "2006-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 416, - "date": "2006-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 614, - "date": "2006-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 2965, - "date": "2006-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1553, - "date": "2006-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4605, - "date": "2006-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1002, - "date": "2006-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1281, - "date": "2006-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 555, - "date": "2006-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 421, - "date": "2006-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1346, - "date": "2006-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1378, - "date": "2006-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 771, - "date": "2006-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1406, - "date": "2006-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 424, - "date": "2006-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 626, - "date": "2006-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3022, - "date": "2006-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1583, - "date": "2006-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4696, - "date": "2006-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1022, - "date": "2006-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1306, - "date": "2006-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 566, - "date": "2006-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 429, - "date": "2006-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1373, - "date": "2006-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1405, - "date": "2006-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 786, - "date": "2006-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1434, - "date": "2006-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 433, - "date": "2006-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 638, - "date": "2006-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3082, - "date": "2006-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1614, - "date": "2006-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4598, - "date": "2006-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1000, - "date": "2006-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1279, - "date": "2006-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 554, - "date": "2006-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 420, - "date": "2006-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1344, - "date": "2006-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1376, - "date": "2006-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 770, - "date": "2006-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1404, - "date": "2006-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 424, - "date": "2006-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 625, - "date": "2006-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3017, - "date": "2006-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1581, - "date": "2006-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4740, - "date": "2006-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1031, - "date": "2006-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1319, - "date": "2006-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 571, - "date": "2006-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 433, - "date": "2006-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1386, - "date": "2006-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1418, - "date": "2006-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 793, - "date": "2006-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1447, - "date": "2006-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 437, - "date": "2006-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 644, - "date": "2006-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3111, - "date": "2006-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1629, - "date": "2006-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4846, - "date": "2006-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1054, - "date": "2006-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1348, - "date": "2006-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 584, - "date": "2006-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 443, - "date": "2006-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1417, - "date": "2006-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1450, - "date": "2006-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 811, - "date": "2006-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1480, - "date": "2006-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 446, - "date": "2006-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 659, - "date": "2006-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3180, - "date": "2006-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1666, - "date": "2006-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4736, - "date": "2006-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1030, - "date": "2006-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1318, - "date": "2006-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 571, - "date": "2006-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 433, - "date": "2006-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1384, - "date": "2006-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1417, - "date": "2006-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 793, - "date": "2006-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1446, - "date": "2006-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 436, - "date": "2006-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 644, - "date": "2006-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3108, - "date": "2006-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1628, - "date": "2006-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4805, - "date": "2007-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1045, - "date": "2007-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1337, - "date": "2007-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 579, - "date": "2007-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 439, - "date": "2007-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1405, - "date": "2007-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1438, - "date": "2007-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 804, - "date": "2007-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1467, - "date": "2007-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 443, - "date": "2007-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 653, - "date": "2007-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3153, - "date": "2007-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1652, - "date": "2007-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4937, - "date": "2007-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1074, - "date": "2007-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1374, - "date": "2007-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 595, - "date": "2007-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 451, - "date": "2007-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1443, - "date": "2007-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1477, - "date": "2007-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 826, - "date": "2007-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1507, - "date": "2007-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 455, - "date": "2007-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 671, - "date": "2007-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3240, - "date": "2007-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1697, - "date": "2007-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4872, - "date": "2007-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1060, - "date": "2007-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1355, - "date": "2007-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 587, - "date": "2007-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 445, - "date": "2007-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1424, - "date": "2007-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1458, - "date": "2007-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 816, - "date": "2007-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1488, - "date": "2007-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 449, - "date": "2007-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 662, - "date": "2007-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3197, - "date": "2007-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1675, - "date": "2007-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5026, - "date": "2007-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1093, - "date": "2007-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1398, - "date": "2007-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 605, - "date": "2007-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 460, - "date": "2007-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1469, - "date": "2007-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1504, - "date": "2007-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 841, - "date": "2007-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1535, - "date": "2007-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 463, - "date": "2007-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 683, - "date": "2007-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3298, - "date": "2007-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1728, - "date": "2007-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5091, - "date": "2007-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1108, - "date": "2007-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1416, - "date": "2007-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 613, - "date": "2007-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 465, - "date": "2007-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1488, - "date": "2007-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1523, - "date": "2007-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 852, - "date": "2007-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1554, - "date": "2007-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 469, - "date": "2007-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 692, - "date": "2007-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3341, - "date": "2007-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1750, - "date": "2007-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4869, - "date": "2007-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1059, - "date": "2007-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1355, - "date": "2007-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 587, - "date": "2007-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 445, - "date": "2007-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1423, - "date": "2007-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1457, - "date": "2007-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 815, - "date": "2007-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1487, - "date": "2007-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 449, - "date": "2007-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 662, - "date": "2007-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3195, - "date": "2007-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1674, - "date": "2007-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5009, - "date": "2007-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1090, - "date": "2007-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1394, - "date": "2007-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 603, - "date": "2007-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 458, - "date": "2007-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1464, - "date": "2007-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1499, - "date": "2007-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 838, - "date": "2007-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1529, - "date": "2007-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 461, - "date": "2007-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 681, - "date": "2007-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3287, - "date": "2007-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1722, - "date": "2007-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4935, - "date": "2007-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1074, - "date": "2007-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1373, - "date": "2007-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 595, - "date": "2007-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 451, - "date": "2007-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1443, - "date": "2007-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1477, - "date": "2007-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 826, - "date": "2007-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1507, - "date": "2007-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 455, - "date": "2007-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 671, - "date": "2007-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3239, - "date": "2007-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1696, - "date": "2007-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5030, - "date": "2007-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1094, - "date": "2007-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1399, - "date": "2007-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 606, - "date": "2007-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 460, - "date": "2007-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1470, - "date": "2007-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1505, - "date": "2007-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 842, - "date": "2007-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1536, - "date": "2007-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 463, - "date": "2007-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 684, - "date": "2007-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3301, - "date": "2007-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1729, - "date": "2007-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4965, - "date": "2007-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1080, - "date": "2007-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1381, - "date": "2007-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 598, - "date": "2007-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 454, - "date": "2007-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1451, - "date": "2007-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1486, - "date": "2007-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 831, - "date": "2007-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1516, - "date": "2007-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 457, - "date": "2007-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 675, - "date": "2007-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3258, - "date": "2007-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1707, - "date": "2007-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5144, - "date": "2007-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1119, - "date": "2007-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1431, - "date": "2007-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 620, - "date": "2007-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 470, - "date": "2007-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1504, - "date": "2007-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1539, - "date": "2007-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 861, - "date": "2007-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1571, - "date": "2007-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 474, - "date": "2007-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 699, - "date": "2007-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3376, - "date": "2007-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1768, - "date": "2007-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4934, - "date": "2007-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1073, - "date": "2007-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1373, - "date": "2007-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 594, - "date": "2007-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 451, - "date": "2007-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1442, - "date": "2007-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1476, - "date": "2007-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 826, - "date": "2007-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1506, - "date": "2007-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 455, - "date": "2007-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 671, - "date": "2007-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3238, - "date": "2007-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1696, - "date": "2007-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5140, - "date": "2008-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1118, - "date": "2008-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1430, - "date": "2008-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 619, - "date": "2008-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 470, - "date": "2008-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1503, - "date": "2008-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1538, - "date": "2008-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 860, - "date": "2008-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1569, - "date": "2008-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 474, - "date": "2008-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 699, - "date": "2008-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3373, - "date": "2008-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1767, - "date": "2008-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4967, - "date": "2008-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1081, - "date": "2008-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1382, - "date": "2008-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 598, - "date": "2008-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 454, - "date": "2008-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1452, - "date": "2008-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1486, - "date": "2008-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 831, - "date": "2008-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1517, - "date": "2008-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 458, - "date": "2008-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 675, - "date": "2008-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3260, - "date": "2008-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1707, - "date": "2008-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4969, - "date": "2008-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1081, - "date": "2008-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1382, - "date": "2008-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 599, - "date": "2008-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 454, - "date": "2008-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1453, - "date": "2008-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1487, - "date": "2008-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 832, - "date": "2008-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1517, - "date": "2008-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 458, - "date": "2008-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 675, - "date": "2008-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3261, - "date": "2008-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1708, - "date": "2008-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5060, - "date": "2008-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1101, - "date": "2008-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1408, - "date": "2008-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 610, - "date": "2008-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 463, - "date": "2008-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1479, - "date": "2008-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1514, - "date": "2008-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 847, - "date": "2008-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1545, - "date": "2008-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 466, - "date": "2008-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 688, - "date": "2008-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3321, - "date": "2008-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1739, - "date": "2008-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5133, - "date": "2008-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1117, - "date": "2008-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1428, - "date": "2008-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 618, - "date": "2008-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 469, - "date": "2008-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1500, - "date": "2008-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1536, - "date": "2008-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 859, - "date": "2008-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1567, - "date": "2008-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 473, - "date": "2008-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 698, - "date": "2008-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3369, - "date": "2008-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1764, - "date": "2008-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5048, - "date": "2008-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1098, - "date": "2008-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1404, - "date": "2008-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 608, - "date": "2008-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 462, - "date": "2008-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1476, - "date": "2008-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1510, - "date": "2008-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 845, - "date": "2008-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1541, - "date": "2008-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 465, - "date": "2008-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 686, - "date": "2008-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3313, - "date": "2008-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1735, - "date": "2008-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5039, - "date": "2008-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1096, - "date": "2008-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1402, - "date": "2008-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 607, - "date": "2008-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 461, - "date": "2008-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1473, - "date": "2008-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1508, - "date": "2008-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 844, - "date": "2008-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1539, - "date": "2008-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 464, - "date": "2008-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 685, - "date": "2008-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3307, - "date": "2008-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1732, - "date": "2008-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4793, - "date": "2008-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1043, - "date": "2008-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1333, - "date": "2008-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 577, - "date": "2008-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 438, - "date": "2008-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1401, - "date": "2008-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1434, - "date": "2008-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 802, - "date": "2008-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1463, - "date": "2008-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 442, - "date": "2008-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 652, - "date": "2008-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3145, - "date": "2008-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1648, - "date": "2008-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4849, - "date": "2008-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1055, - "date": "2008-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1349, - "date": "2008-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 584, - "date": "2008-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 443, - "date": "2008-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1417, - "date": "2008-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1451, - "date": "2008-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 812, - "date": "2008-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1480, - "date": "2008-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 447, - "date": "2008-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 659, - "date": "2008-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3182, - "date": "2008-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1667, - "date": "2008-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5028, - "date": "2008-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1094, - "date": "2008-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1399, - "date": "2008-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 606, - "date": "2008-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 460, - "date": "2008-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1470, - "date": "2008-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1505, - "date": "2008-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 842, - "date": "2008-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1535, - "date": "2008-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 463, - "date": "2008-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 683, - "date": "2008-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3300, - "date": "2008-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1728, - "date": "2008-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5019, - "date": "2008-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1092, - "date": "2008-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1396, - "date": "2008-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 605, - "date": "2008-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 459, - "date": "2008-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1467, - "date": "2008-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1502, - "date": "2008-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 840, - "date": "2008-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1532, - "date": "2008-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 462, - "date": "2008-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 682, - "date": "2008-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3294, - "date": "2008-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1725, - "date": "2008-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4995, - "date": "2008-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1087, - "date": "2008-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1390, - "date": "2008-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 602, - "date": "2008-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 457, - "date": "2008-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1460, - "date": "2008-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1495, - "date": "2008-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 836, - "date": "2008-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1525, - "date": "2008-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 460, - "date": "2008-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 679, - "date": "2008-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3278, - "date": "2008-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1717, - "date": "2008-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4955, - "date": "2009-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1078, - "date": "2009-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1379, - "date": "2009-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 597, - "date": "2009-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 453, - "date": "2009-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1448, - "date": "2009-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1483, - "date": "2009-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 829, - "date": "2009-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1513, - "date": "2009-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 456, - "date": "2009-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 674, - "date": "2009-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3252, - "date": "2009-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1703, - "date": "2009-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4923, - "date": "2009-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1071, - "date": "2009-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1370, - "date": "2009-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 593, - "date": "2009-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 450, - "date": "2009-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1439, - "date": "2009-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1473, - "date": "2009-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 824, - "date": "2009-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1503, - "date": "2009-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 454, - "date": "2009-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 669, - "date": "2009-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3231, - "date": "2009-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1692, - "date": "2009-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4968, - "date": "2009-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1081, - "date": "2009-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1382, - "date": "2009-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 599, - "date": "2009-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 454, - "date": "2009-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1452, - "date": "2009-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1487, - "date": "2009-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 832, - "date": "2009-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1517, - "date": "2009-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 458, - "date": "2009-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 675, - "date": "2009-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3260, - "date": "2009-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1708, - "date": "2009-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4810, - "date": "2009-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1046, - "date": "2009-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1338, - "date": "2009-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 579, - "date": "2009-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 440, - "date": "2009-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1406, - "date": "2009-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1439, - "date": "2009-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 805, - "date": "2009-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1469, - "date": "2009-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 443, - "date": "2009-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 654, - "date": "2009-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3157, - "date": "2009-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1653, - "date": "2009-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4770, - "date": "2009-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1038, - "date": "2009-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1327, - "date": "2009-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 575, - "date": "2009-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 436, - "date": "2009-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1394, - "date": "2009-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1427, - "date": "2009-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 798, - "date": "2009-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1456, - "date": "2009-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 439, - "date": "2009-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 648, - "date": "2009-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3130, - "date": "2009-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1640, - "date": "2009-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4769, - "date": "2009-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1038, - "date": "2009-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1327, - "date": "2009-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 575, - "date": "2009-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 436, - "date": "2009-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1394, - "date": "2009-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1427, - "date": "2009-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 798, - "date": "2009-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1456, - "date": "2009-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 439, - "date": "2009-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 648, - "date": "2009-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3130, - "date": "2009-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1639, - "date": "2009-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4745, - "date": "2009-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1032, - "date": "2009-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1320, - "date": "2009-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 572, - "date": "2009-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 434, - "date": "2009-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1387, - "date": "2009-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1420, - "date": "2009-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 794, - "date": "2009-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1449, - "date": "2009-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 437, - "date": "2009-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 645, - "date": "2009-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3114, - "date": "2009-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1631, - "date": "2009-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4851, - "date": "2009-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1055, - "date": "2009-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1350, - "date": "2009-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 584, - "date": "2009-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 444, - "date": "2009-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1418, - "date": "2009-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1452, - "date": "2009-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 812, - "date": "2009-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1481, - "date": "2009-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 447, - "date": "2009-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 659, - "date": "2009-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3183, - "date": "2009-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1668, - "date": "2009-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4885, - "date": "2009-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1063, - "date": "2009-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1359, - "date": "2009-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 589, - "date": "2009-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 447, - "date": "2009-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1428, - "date": "2009-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1462, - "date": "2009-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 818, - "date": "2009-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1491, - "date": "2009-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 450, - "date": "2009-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 664, - "date": "2009-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3206, - "date": "2009-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1679, - "date": "2009-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4897, - "date": "2009-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1065, - "date": "2009-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1362, - "date": "2009-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 590, - "date": "2009-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 448, - "date": "2009-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1431, - "date": "2009-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1465, - "date": "2009-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 820, - "date": "2009-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1495, - "date": "2009-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 451, - "date": "2009-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 666, - "date": "2009-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3214, - "date": "2009-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1683, - "date": "2009-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4847, - "date": "2009-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1055, - "date": "2009-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1348, - "date": "2009-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 584, - "date": "2009-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 443, - "date": "2009-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1417, - "date": "2009-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1450, - "date": "2009-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 811, - "date": "2009-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1480, - "date": "2009-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 447, - "date": "2009-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 659, - "date": "2009-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3181, - "date": "2009-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1666, - "date": "2009-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4914, - "date": "2009-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1069, - "date": "2009-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1367, - "date": "2009-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 592, - "date": "2009-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 449, - "date": "2009-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1436, - "date": "2009-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1470, - "date": "2009-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 823, - "date": "2009-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1500, - "date": "2009-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 453, - "date": "2009-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 668, - "date": "2009-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3225, - "date": "2009-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1689, - "date": "2009-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4704, - "date": "2010-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1023, - "date": "2010-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1309, - "date": "2010-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 567, - "date": "2010-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 430, - "date": "2010-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1375, - "date": "2010-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1408, - "date": "2010-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 787, - "date": "2010-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1436, - "date": "2010-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 433, - "date": "2010-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 639, - "date": "2010-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3087, - "date": "2010-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1617, - "date": "2010-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4936, - "date": "2010-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1074, - "date": "2010-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1373, - "date": "2010-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 595, - "date": "2010-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 451, - "date": "2010-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1443, - "date": "2010-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1477, - "date": "2010-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 826, - "date": "2010-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1507, - "date": "2010-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 455, - "date": "2010-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 671, - "date": "2010-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3239, - "date": "2010-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1697, - "date": "2010-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4840, - "date": "2010-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1053, - "date": "2010-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1347, - "date": "2010-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 583, - "date": "2010-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 443, - "date": "2010-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1415, - "date": "2010-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1448, - "date": "2010-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 810, - "date": "2010-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1478, - "date": "2010-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 446, - "date": "2010-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 658, - "date": "2010-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3176, - "date": "2010-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1664, - "date": "2010-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4793, - "date": "2010-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1043, - "date": "2010-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1333, - "date": "2010-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 577, - "date": "2010-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 438, - "date": "2010-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1401, - "date": "2010-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1434, - "date": "2010-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 802, - "date": "2010-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1463, - "date": "2010-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 442, - "date": "2010-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 652, - "date": "2010-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3145, - "date": "2010-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1648, - "date": "2010-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4754, - "date": "2010-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1034, - "date": "2010-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1323, - "date": "2010-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 573, - "date": "2010-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 435, - "date": "2010-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1390, - "date": "2010-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1423, - "date": "2010-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 796, - "date": "2010-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1451, - "date": "2010-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 438, - "date": "2010-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 646, - "date": "2010-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3120, - "date": "2010-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1634, - "date": "2010-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4885, - "date": "2010-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1063, - "date": "2010-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1359, - "date": "2010-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 589, - "date": "2010-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 447, - "date": "2010-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1428, - "date": "2010-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1462, - "date": "2010-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 818, - "date": "2010-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1491, - "date": "2010-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 450, - "date": "2010-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 664, - "date": "2010-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3206, - "date": "2010-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1679, - "date": "2010-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4846, - "date": "2010-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1054, - "date": "2010-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1348, - "date": "2010-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 584, - "date": "2010-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 443, - "date": "2010-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1417, - "date": "2010-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1450, - "date": "2010-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 811, - "date": "2010-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1480, - "date": "2010-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 446, - "date": "2010-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 659, - "date": "2010-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3180, - "date": "2010-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1666, - "date": "2010-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4884, - "date": "2010-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1063, - "date": "2010-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1359, - "date": "2010-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 588, - "date": "2010-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 447, - "date": "2010-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1428, - "date": "2010-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1461, - "date": "2010-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 818, - "date": "2010-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1491, - "date": "2010-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 450, - "date": "2010-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 664, - "date": "2010-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3205, - "date": "2010-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1679, - "date": "2010-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4863, - "date": "2010-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1058, - "date": "2010-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1353, - "date": "2010-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 586, - "date": "2010-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 445, - "date": "2010-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1422, - "date": "2010-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1455, - "date": "2010-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 814, - "date": "2010-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1485, - "date": "2010-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 448, - "date": "2010-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 661, - "date": "2010-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3191, - "date": "2010-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1672, - "date": "2010-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4794, - "date": "2010-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1043, - "date": "2010-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1334, - "date": "2010-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 578, - "date": "2010-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 438, - "date": "2010-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1401, - "date": "2010-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1434, - "date": "2010-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 803, - "date": "2010-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1464, - "date": "2010-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 442, - "date": "2010-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 652, - "date": "2010-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3146, - "date": "2010-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1648, - "date": "2010-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 4889, - "date": "2010-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1064, - "date": "2010-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1360, - "date": "2010-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 589, - "date": "2010-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 447, - "date": "2010-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1429, - "date": "2010-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1463, - "date": "2010-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 818, - "date": "2010-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1493, - "date": "2010-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 450, - "date": "2010-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 665, - "date": "2010-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3208, - "date": "2010-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1681, - "date": "2010-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5063, - "date": "2010-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1102, - "date": "2010-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1409, - "date": "2010-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 610, - "date": "2010-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 463, - "date": "2010-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1480, - "date": "2010-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1515, - "date": "2010-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 848, - "date": "2010-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1546, - "date": "2010-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 466, - "date": "2010-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 688, - "date": "2010-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3323, - "date": "2010-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1740, - "date": "2010-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5050, - "date": "2011-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1099, - "date": "2011-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1405, - "date": "2011-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 608, - "date": "2011-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 462, - "date": "2011-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1476, - "date": "2011-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1511, - "date": "2011-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 845, - "date": "2011-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1542, - "date": "2011-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 465, - "date": "2011-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 686, - "date": "2011-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3314, - "date": "2011-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1736, - "date": "2011-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5182, - "date": "2011-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1127, - "date": "2011-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1442, - "date": "2011-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 624, - "date": "2011-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 474, - "date": "2011-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1515, - "date": "2011-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1551, - "date": "2011-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 867, - "date": "2011-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1582, - "date": "2011-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 477, - "date": "2011-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 704, - "date": "2011-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3401, - "date": "2011-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1781, - "date": "2011-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5205, - "date": "2011-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1132, - "date": "2011-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1448, - "date": "2011-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 627, - "date": "2011-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 476, - "date": "2011-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1522, - "date": "2011-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1557, - "date": "2011-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 871, - "date": "2011-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1589, - "date": "2011-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 480, - "date": "2011-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 708, - "date": "2011-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3416, - "date": "2011-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1789, - "date": "2011-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5115, - "date": "2011-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1113, - "date": "2011-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1423, - "date": "2011-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 616, - "date": "2011-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 468, - "date": "2011-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1495, - "date": "2011-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1531, - "date": "2011-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 856, - "date": "2011-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1562, - "date": "2011-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 471, - "date": "2011-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 695, - "date": "2011-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3357, - "date": "2011-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1758, - "date": "2011-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5206, - "date": "2011-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1133, - "date": "2011-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1448, - "date": "2011-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 627, - "date": "2011-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 476, - "date": "2011-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1522, - "date": "2011-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1558, - "date": "2011-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 871, - "date": "2011-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1589, - "date": "2011-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 480, - "date": "2011-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 708, - "date": "2011-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3416, - "date": "2011-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1790, - "date": "2011-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5200, - "date": "2011-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1131, - "date": "2011-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1447, - "date": "2011-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 626, - "date": "2011-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 475, - "date": "2011-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1520, - "date": "2011-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1556, - "date": "2011-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 870, - "date": "2011-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1588, - "date": "2011-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 479, - "date": "2011-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 707, - "date": "2011-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3412, - "date": "2011-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1788, - "date": "2011-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5088, - "date": "2011-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1107, - "date": "2011-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1416, - "date": "2011-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 613, - "date": "2011-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 465, - "date": "2011-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1487, - "date": "2011-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1522, - "date": "2011-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 852, - "date": "2011-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1553, - "date": "2011-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 469, - "date": "2011-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 692, - "date": "2011-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3339, - "date": "2011-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1749, - "date": "2011-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5163, - "date": "2011-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1123, - "date": "2011-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1436, - "date": "2011-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 622, - "date": "2011-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 472, - "date": "2011-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1509, - "date": "2011-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1545, - "date": "2011-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 864, - "date": "2011-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1576, - "date": "2011-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 476, - "date": "2011-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 702, - "date": "2011-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3388, - "date": "2011-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1775, - "date": "2011-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5190, - "date": "2011-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1129, - "date": "2011-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1444, - "date": "2011-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 625, - "date": "2011-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 475, - "date": "2011-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1517, - "date": "2011-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1553, - "date": "2011-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 869, - "date": "2011-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1585, - "date": "2011-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 478, - "date": "2011-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 705, - "date": "2011-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3406, - "date": "2011-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1784, - "date": "2011-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5120, - "date": "2011-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1114, - "date": "2011-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1424, - "date": "2011-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 617, - "date": "2011-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 468, - "date": "2011-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1497, - "date": "2011-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1532, - "date": "2011-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 857, - "date": "2011-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1563, - "date": "2011-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 472, - "date": "2011-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 696, - "date": "2011-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3360, - "date": "2011-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1760, - "date": "2011-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5161, - "date": "2011-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1123, - "date": "2011-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1436, - "date": "2011-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 622, - "date": "2011-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 472, - "date": "2011-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1509, - "date": "2011-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1544, - "date": "2011-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 864, - "date": "2011-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1576, - "date": "2011-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 475, - "date": "2011-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 702, - "date": "2011-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3387, - "date": "2011-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1774, - "date": "2011-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5113, - "date": "2011-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1112, - "date": "2011-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1422, - "date": "2011-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 616, - "date": "2011-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 467, - "date": "2011-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1495, - "date": "2011-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1530, - "date": "2011-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 856, - "date": "2011-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1561, - "date": "2011-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 471, - "date": "2011-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 695, - "date": "2011-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3355, - "date": "2011-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1758, - "date": "2011-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5249, - "date": "2012-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1142, - "date": "2012-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1460, - "date": "2012-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 632, - "date": "2012-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 480, - "date": "2012-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1534, - "date": "2012-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1571, - "date": "2012-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 879, - "date": "2012-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1603, - "date": "2012-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 484, - "date": "2012-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 714, - "date": "2012-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3445, - "date": "2012-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1804, - "date": "2012-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5266, - "date": "2012-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1146, - "date": "2012-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1465, - "date": "2012-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 634, - "date": "2012-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 481, - "date": "2012-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1539, - "date": "2012-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1576, - "date": "2012-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 882, - "date": "2012-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1608, - "date": "2012-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 485, - "date": "2012-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 716, - "date": "2012-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3456, - "date": "2012-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1810, - "date": "2012-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5166, - "date": "2012-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1124, - "date": "2012-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1437, - "date": "2012-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 622, - "date": "2012-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 472, - "date": "2012-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1510, - "date": "2012-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1546, - "date": "2012-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 865, - "date": "2012-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1577, - "date": "2012-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 476, - "date": "2012-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 702, - "date": "2012-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3390, - "date": "2012-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1776, - "date": "2012-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5284, - "date": "2012-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1150, - "date": "2012-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1470, - "date": "2012-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 637, - "date": "2012-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 483, - "date": "2012-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1545, - "date": "2012-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1581, - "date": "2012-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 885, - "date": "2012-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1613, - "date": "2012-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 487, - "date": "2012-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 718, - "date": "2012-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3468, - "date": "2012-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1816, - "date": "2012-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5172, - "date": "2012-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1125, - "date": "2012-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1439, - "date": "2012-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 623, - "date": "2012-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 473, - "date": "2012-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1512, - "date": "2012-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1548, - "date": "2012-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 866, - "date": "2012-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1579, - "date": "2012-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 476, - "date": "2012-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 703, - "date": "2012-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3394, - "date": "2012-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1778, - "date": "2012-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5177, - "date": "2012-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1126, - "date": "2012-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1440, - "date": "2012-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 624, - "date": "2012-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 473, - "date": "2012-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1513, - "date": "2012-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1549, - "date": "2012-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 867, - "date": "2012-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1581, - "date": "2012-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 477, - "date": "2012-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 704, - "date": "2012-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3397, - "date": "2012-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1780, - "date": "2012-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5325, - "date": "2012-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1159, - "date": "2012-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1481, - "date": "2012-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 642, - "date": "2012-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 487, - "date": "2012-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1557, - "date": "2012-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1593, - "date": "2012-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 891, - "date": "2012-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1626, - "date": "2012-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 491, - "date": "2012-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 724, - "date": "2012-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3495, - "date": "2012-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1830, - "date": "2012-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5335, - "date": "2012-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1161, - "date": "2012-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1484, - "date": "2012-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 643, - "date": "2012-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 488, - "date": "2012-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1560, - "date": "2012-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1596, - "date": "2012-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 893, - "date": "2012-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1629, - "date": "2012-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 491, - "date": "2012-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 725, - "date": "2012-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3501, - "date": "2012-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1834, - "date": "2012-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5302, - "date": "2012-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1154, - "date": "2012-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1475, - "date": "2012-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 639, - "date": "2012-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 485, - "date": "2012-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1550, - "date": "2012-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1586, - "date": "2012-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 888, - "date": "2012-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1619, - "date": "2012-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 488, - "date": "2012-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 721, - "date": "2012-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3479, - "date": "2012-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1823, - "date": "2012-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5374, - "date": "2012-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1169, - "date": "2012-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1495, - "date": "2012-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 647, - "date": "2012-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 491, - "date": "2012-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1571, - "date": "2012-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1608, - "date": "2012-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 900, - "date": "2012-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1641, - "date": "2012-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 495, - "date": "2012-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 730, - "date": "2012-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3527, - "date": "2012-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1847, - "date": "2012-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5440, - "date": "2012-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1184, - "date": "2012-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1513, - "date": "2012-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 655, - "date": "2012-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 497, - "date": "2012-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1590, - "date": "2012-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1628, - "date": "2012-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 911, - "date": "2012-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1661, - "date": "2012-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 501, - "date": "2012-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 739, - "date": "2012-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3570, - "date": "2012-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1870, - "date": "2012-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5541, - "date": "2012-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1206, - "date": "2012-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1542, - "date": "2012-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 668, - "date": "2012-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 507, - "date": "2012-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1620, - "date": "2012-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1658, - "date": "2012-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 928, - "date": "2012-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1692, - "date": "2012-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 510, - "date": "2012-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 753, - "date": "2012-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3636, - "date": "2012-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1905, - "date": "2012-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5342, - "date": "2013-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1162, - "date": "2013-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1486, - "date": "2013-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 644, - "date": "2013-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 488, - "date": "2013-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1562, - "date": "2013-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1598, - "date": "2013-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 894, - "date": "2013-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1631, - "date": "2013-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 492, - "date": "2013-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 726, - "date": "2013-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3506, - "date": "2013-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1836, - "date": "2013-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5604, - "date": "2013-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1219, - "date": "2013-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1559, - "date": "2013-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 675, - "date": "2013-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 512, - "date": "2013-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1638, - "date": "2013-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1677, - "date": "2013-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 938, - "date": "2013-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1711, - "date": "2013-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 516, - "date": "2013-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 762, - "date": "2013-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3678, - "date": "2013-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1926, - "date": "2013-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5427, - "date": "2013-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1181, - "date": "2013-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1510, - "date": "2013-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 654, - "date": "2013-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 496, - "date": "2013-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1586, - "date": "2013-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1624, - "date": "2013-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 908, - "date": "2013-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1657, - "date": "2013-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 500, - "date": "2013-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 738, - "date": "2013-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3561, - "date": "2013-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1866, - "date": "2013-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5568, - "date": "2013-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1211, - "date": "2013-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1549, - "date": "2013-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 671, - "date": "2013-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 509, - "date": "2013-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1628, - "date": "2013-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1666, - "date": "2013-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 932, - "date": "2013-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1700, - "date": "2013-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 513, - "date": "2013-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 757, - "date": "2013-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3654, - "date": "2013-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1914, - "date": "2013-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5514, - "date": "2013-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1200, - "date": "2013-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1534, - "date": "2013-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 664, - "date": "2013-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 504, - "date": "2013-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1612, - "date": "2013-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1650, - "date": "2013-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 923, - "date": "2013-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1684, - "date": "2013-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 508, - "date": "2013-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 750, - "date": "2013-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3619, - "date": "2013-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1895, - "date": "2013-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5387, - "date": "2013-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1172, - "date": "2013-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1499, - "date": "2013-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 649, - "date": "2013-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 493, - "date": "2013-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1575, - "date": "2013-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1612, - "date": "2013-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 902, - "date": "2013-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1645, - "date": "2013-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 496, - "date": "2013-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 732, - "date": "2013-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3535, - "date": "2013-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1852, - "date": "2013-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5646, - "date": "2013-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1228, - "date": "2013-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1571, - "date": "2013-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 680, - "date": "2013-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 516, - "date": "2013-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1650, - "date": "2013-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1689, - "date": "2013-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 945, - "date": "2013-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1724, - "date": "2013-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 520, - "date": "2013-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 767, - "date": "2013-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3705, - "date": "2013-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1941, - "date": "2013-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5620, - "date": "2013-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1223, - "date": "2013-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1564, - "date": "2013-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 677, - "date": "2013-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 514, - "date": "2013-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1643, - "date": "2013-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1682, - "date": "2013-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 941, - "date": "2013-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1716, - "date": "2013-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 518, - "date": "2013-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 764, - "date": "2013-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3688, - "date": "2013-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1932, - "date": "2013-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5480, - "date": "2013-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1192, - "date": "2013-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1525, - "date": "2013-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 660, - "date": "2013-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 501, - "date": "2013-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1602, - "date": "2013-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1640, - "date": "2013-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 917, - "date": "2013-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1673, - "date": "2013-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 505, - "date": "2013-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 745, - "date": "2013-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3596, - "date": "2013-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1884, - "date": "2013-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5462, - "date": "2013-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1188, - "date": "2013-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1520, - "date": "2013-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 658, - "date": "2013-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 499, - "date": "2013-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1597, - "date": "2013-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1634, - "date": "2013-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 914, - "date": "2013-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1668, - "date": "2013-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 503, - "date": "2013-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 742, - "date": "2013-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3584, - "date": "2013-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1878, - "date": "2013-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5667, - "date": "2013-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1233, - "date": "2013-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1577, - "date": "2013-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 683, - "date": "2013-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 518, - "date": "2013-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1657, - "date": "2013-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1696, - "date": "2013-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 949, - "date": "2013-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1730, - "date": "2013-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 522, - "date": "2013-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 770, - "date": "2013-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3719, - "date": "2013-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1948, - "date": "2013-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5696, - "date": "2013-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1239, - "date": "2013-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1585, - "date": "2013-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 686, - "date": "2013-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 521, - "date": "2013-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1665, - "date": "2013-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1704, - "date": "2013-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 953, - "date": "2013-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1739, - "date": "2013-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 525, - "date": "2013-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 774, - "date": "2013-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3738, - "date": "2013-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1958, - "date": "2013-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5856, - "date": "2014-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1274, - "date": "2014-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1629, - "date": "2014-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 705, - "date": "2014-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 535, - "date": "2014-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1712, - "date": "2014-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1752, - "date": "2014-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 980, - "date": "2014-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1788, - "date": "2014-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 539, - "date": "2014-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 796, - "date": "2014-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3843, - "date": "2014-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2013, - "date": "2014-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5762, - "date": "2014-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1254, - "date": "2014-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1603, - "date": "2014-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 694, - "date": "2014-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 527, - "date": "2014-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1684, - "date": "2014-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1724, - "date": "2014-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 965, - "date": "2014-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1759, - "date": "2014-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 531, - "date": "2014-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 783, - "date": "2014-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3781, - "date": "2014-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1981, - "date": "2014-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5900, - "date": "2014-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1284, - "date": "2014-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1641, - "date": "2014-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 711, - "date": "2014-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 539, - "date": "2014-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1725, - "date": "2014-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1765, - "date": "2014-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 988, - "date": "2014-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1801, - "date": "2014-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 544, - "date": "2014-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 802, - "date": "2014-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3872, - "date": "2014-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2028, - "date": "2014-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5689, - "date": "2014-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1238, - "date": "2014-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1583, - "date": "2014-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 685, - "date": "2014-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 520, - "date": "2014-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1663, - "date": "2014-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1702, - "date": "2014-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 952, - "date": "2014-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1737, - "date": "2014-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 524, - "date": "2014-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 773, - "date": "2014-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3733, - "date": "2014-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1956, - "date": "2014-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5954, - "date": "2014-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1295, - "date": "2014-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1656, - "date": "2014-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 717, - "date": "2014-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 544, - "date": "2014-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1740, - "date": "2014-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1782, - "date": "2014-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 997, - "date": "2014-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1818, - "date": "2014-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 549, - "date": "2014-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 809, - "date": "2014-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3907, - "date": "2014-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2047, - "date": "2014-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5717, - "date": "2014-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1244, - "date": "2014-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1591, - "date": "2014-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 689, - "date": "2014-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 523, - "date": "2014-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1671, - "date": "2014-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1711, - "date": "2014-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 957, - "date": "2014-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1746, - "date": "2014-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 527, - "date": "2014-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 777, - "date": "2014-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3752, - "date": "2014-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1965, - "date": "2014-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5828, - "date": "2014-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1268, - "date": "2014-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1621, - "date": "2014-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 702, - "date": "2014-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 533, - "date": "2014-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1704, - "date": "2014-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1744, - "date": "2014-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 976, - "date": "2014-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1779, - "date": "2014-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 537, - "date": "2014-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 792, - "date": "2014-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3825, - "date": "2014-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2003, - "date": "2014-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6164, - "date": "2014-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1341, - "date": "2014-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1715, - "date": "2014-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 743, - "date": "2014-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 564, - "date": "2014-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1802, - "date": "2014-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1844, - "date": "2014-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1032, - "date": "2014-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1882, - "date": "2014-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 568, - "date": "2014-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 838, - "date": "2014-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4045, - "date": "2014-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2119, - "date": "2014-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6098, - "date": "2014-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1327, - "date": "2014-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1697, - "date": "2014-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 735, - "date": "2014-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 558, - "date": "2014-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1783, - "date": "2014-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1825, - "date": "2014-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1021, - "date": "2014-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1862, - "date": "2014-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 562, - "date": "2014-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 829, - "date": "2014-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4002, - "date": "2014-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2096, - "date": "2014-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6241, - "date": "2014-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1358, - "date": "2014-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1736, - "date": "2014-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 752, - "date": "2014-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 571, - "date": "2014-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1824, - "date": "2014-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1867, - "date": "2014-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1045, - "date": "2014-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1905, - "date": "2014-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 575, - "date": "2014-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 848, - "date": "2014-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4096, - "date": "2014-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2145, - "date": "2014-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6149, - "date": "2014-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1338, - "date": "2014-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1711, - "date": "2014-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 741, - "date": "2014-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 562, - "date": "2014-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1797, - "date": "2014-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1840, - "date": "2014-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1029, - "date": "2014-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1877, - "date": "2014-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 566, - "date": "2014-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 836, - "date": "2014-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4035, - "date": "2014-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2114, - "date": "2014-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6195, - "date": "2014-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1348, - "date": "2014-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1724, - "date": "2014-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 746, - "date": "2014-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 566, - "date": "2014-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1811, - "date": "2014-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1854, - "date": "2014-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1037, - "date": "2014-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1891, - "date": "2014-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 571, - "date": "2014-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 842, - "date": "2014-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4065, - "date": "2014-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2130, - "date": "2014-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6260, - "date": "2015-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1362, - "date": "2015-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1742, - "date": "2015-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 754, - "date": "2015-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 572, - "date": "2015-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1830, - "date": "2015-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1873, - "date": "2015-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1048, - "date": "2015-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1911, - "date": "2015-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 577, - "date": "2015-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 851, - "date": "2015-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4108, - "date": "2015-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2152, - "date": "2015-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6408, - "date": "2015-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1394, - "date": "2015-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1783, - "date": "2015-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 772, - "date": "2015-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 586, - "date": "2015-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1873, - "date": "2015-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1917, - "date": "2015-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1073, - "date": "2015-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1956, - "date": "2015-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 590, - "date": "2015-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 871, - "date": "2015-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4205, - "date": "2015-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2203, - "date": "2015-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6686, - "date": "2015-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1455, - "date": "2015-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1860, - "date": "2015-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 805, - "date": "2015-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 611, - "date": "2015-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1954, - "date": "2015-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2001, - "date": "2015-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1119, - "date": "2015-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2041, - "date": "2015-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 616, - "date": "2015-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 909, - "date": "2015-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4388, - "date": "2015-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2298, - "date": "2015-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6409, - "date": "2015-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1394, - "date": "2015-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1783, - "date": "2015-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 772, - "date": "2015-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 586, - "date": "2015-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1873, - "date": "2015-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1918, - "date": "2015-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1073, - "date": "2015-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1957, - "date": "2015-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 590, - "date": "2015-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 871, - "date": "2015-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4206, - "date": "2015-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2203, - "date": "2015-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6782, - "date": "2015-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1476, - "date": "2015-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1887, - "date": "2015-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 817, - "date": "2015-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 620, - "date": "2015-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1982, - "date": "2015-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2029, - "date": "2015-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1135, - "date": "2015-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2071, - "date": "2015-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 625, - "date": "2015-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 922, - "date": "2015-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4451, - "date": "2015-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2331, - "date": "2015-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6794, - "date": "2015-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1478, - "date": "2015-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1890, - "date": "2015-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 818, - "date": "2015-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 621, - "date": "2015-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1986, - "date": "2015-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2033, - "date": "2015-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1137, - "date": "2015-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2074, - "date": "2015-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 626, - "date": "2015-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 924, - "date": "2015-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4459, - "date": "2015-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2335, - "date": "2015-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6693, - "date": "2015-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1456, - "date": "2015-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1862, - "date": "2015-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 806, - "date": "2015-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 612, - "date": "2015-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1956, - "date": "2015-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2003, - "date": "2015-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1120, - "date": "2015-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2044, - "date": "2015-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 617, - "date": "2015-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 910, - "date": "2015-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4392, - "date": "2015-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2301, - "date": "2015-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6648, - "date": "2015-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1446, - "date": "2015-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1850, - "date": "2015-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 801, - "date": "2015-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 608, - "date": "2015-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1943, - "date": "2015-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1989, - "date": "2015-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1113, - "date": "2015-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2030, - "date": "2015-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 612, - "date": "2015-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 904, - "date": "2015-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4363, - "date": "2015-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2285, - "date": "2015-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6799, - "date": "2015-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1479, - "date": "2015-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1892, - "date": "2015-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 819, - "date": "2015-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 622, - "date": "2015-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1987, - "date": "2015-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2034, - "date": "2015-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1138, - "date": "2015-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2076, - "date": "2015-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 626, - "date": "2015-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 924, - "date": "2015-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4462, - "date": "2015-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2337, - "date": "2015-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6665, - "date": "2015-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1450, - "date": "2015-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1854, - "date": "2015-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 803, - "date": "2015-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 609, - "date": "2015-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1948, - "date": "2015-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1994, - "date": "2015-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1116, - "date": "2015-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2035, - "date": "2015-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 614, - "date": "2015-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 906, - "date": "2015-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4374, - "date": "2015-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2291, - "date": "2015-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6750, - "date": "2015-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1469, - "date": "2015-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1878, - "date": "2015-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 813, - "date": "2015-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 617, - "date": "2015-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1973, - "date": "2015-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2020, - "date": "2015-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1130, - "date": "2015-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2061, - "date": "2015-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 622, - "date": "2015-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 918, - "date": "2015-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4430, - "date": "2015-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2320, - "date": "2015-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6820, - "date": "2015-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1484, - "date": "2015-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1897, - "date": "2015-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 822, - "date": "2015-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 624, - "date": "2015-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1994, - "date": "2015-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2041, - "date": "2015-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1142, - "date": "2015-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2082, - "date": "2015-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 628, - "date": "2015-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 927, - "date": "2015-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4476, - "date": "2015-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2344, - "date": "2015-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 7082, - "date": "2016-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1541, - "date": "2016-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1970, - "date": "2016-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 853, - "date": "2016-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 648, - "date": "2016-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 2070, - "date": "2016-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2119, - "date": "2016-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1186, - "date": "2016-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2162, - "date": "2016-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 652, - "date": "2016-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 963, - "date": "2016-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4648, - "date": "2016-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2434, - "date": "2016-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6964, - "date": "2016-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1515, - "date": "2016-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1937, - "date": "2016-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 839, - "date": "2016-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 637, - "date": "2016-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 2036, - "date": "2016-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2084, - "date": "2016-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1166, - "date": "2016-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2126, - "date": "2016-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 642, - "date": "2016-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 947, - "date": "2016-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4570, - "date": "2016-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2394, - "date": "2016-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6785, - "date": "2016-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1476, - "date": "2016-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1888, - "date": "2016-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 817, - "date": "2016-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 620, - "date": "2016-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1983, - "date": "2016-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2030, - "date": "2016-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1136, - "date": "2016-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2072, - "date": "2016-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 625, - "date": "2016-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 922, - "date": "2016-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4453, - "date": "2016-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2332, - "date": "2016-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6699, - "date": "2016-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1457, - "date": "2016-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1864, - "date": "2016-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 807, - "date": "2016-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 613, - "date": "2016-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1958, - "date": "2016-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2005, - "date": "2016-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1121, - "date": "2016-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2045, - "date": "2016-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 617, - "date": "2016-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 911, - "date": "2016-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4396, - "date": "2016-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2303, - "date": "2016-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6854, - "date": "2016-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1491, - "date": "2016-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1907, - "date": "2016-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 826, - "date": "2016-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 627, - "date": "2016-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 2004, - "date": "2016-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2051, - "date": "2016-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1147, - "date": "2016-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2093, - "date": "2016-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 631, - "date": "2016-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 932, - "date": "2016-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4498, - "date": "2016-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2356, - "date": "2016-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 7076, - "date": "2016-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1539, - "date": "2016-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1969, - "date": "2016-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 852, - "date": "2016-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 647, - "date": "2016-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 2068, - "date": "2016-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2117, - "date": "2016-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1185, - "date": "2016-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2160, - "date": "2016-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 652, - "date": "2016-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 962, - "date": "2016-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4644, - "date": "2016-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2432, - "date": "2016-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6878, - "date": "2016-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1496, - "date": "2016-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1914, - "date": "2016-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 829, - "date": "2016-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 629, - "date": "2016-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 2011, - "date": "2016-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2058, - "date": "2016-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1151, - "date": "2016-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2100, - "date": "2016-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 634, - "date": "2016-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 935, - "date": "2016-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4514, - "date": "2016-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2364, - "date": "2016-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6901, - "date": "2016-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1501, - "date": "2016-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1920, - "date": "2016-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 831, - "date": "2016-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 631, - "date": "2016-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 2017, - "date": "2016-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2065, - "date": "2016-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1155, - "date": "2016-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2107, - "date": "2016-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 636, - "date": "2016-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 938, - "date": "2016-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4529, - "date": "2016-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2372, - "date": "2016-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 7097, - "date": "2016-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1544, - "date": "2016-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1974, - "date": "2016-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 855, - "date": "2016-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 649, - "date": "2016-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 2075, - "date": "2016-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2124, - "date": "2016-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1188, - "date": "2016-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2167, - "date": "2016-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 654, - "date": "2016-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 965, - "date": "2016-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4657, - "date": "2016-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2440, - "date": "2016-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6943, - "date": "2016-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1511, - "date": "2016-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1932, - "date": "2016-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 836, - "date": "2016-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 635, - "date": "2016-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 2030, - "date": "2016-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2078, - "date": "2016-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1162, - "date": "2016-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2120, - "date": "2016-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 640, - "date": "2016-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 944, - "date": "2016-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4556, - "date": "2016-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2387, - "date": "2016-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6759, - "date": "2016-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1471, - "date": "2016-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1880, - "date": "2016-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 814, - "date": "2016-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 618, - "date": "2016-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1976, - "date": "2016-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2022, - "date": "2016-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1131, - "date": "2016-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2064, - "date": "2016-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 623, - "date": "2016-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 919, - "date": "2016-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4436, - "date": "2016-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2323, - "date": "2016-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6738, - "date": "2016-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1466, - "date": "2016-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1875, - "date": "2016-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 812, - "date": "2016-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 616, - "date": "2016-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1970, - "date": "2016-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2016, - "date": "2016-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1128, - "date": "2016-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2057, - "date": "2016-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 621, - "date": "2016-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 916, - "date": "2016-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4422, - "date": "2016-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2316, - "date": "2016-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6919, - "date": "2017-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1505, - "date": "2017-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1925, - "date": "2017-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 834, - "date": "2017-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 633, - "date": "2017-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 2023, - "date": "2017-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2070, - "date": "2017-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1158, - "date": "2017-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2113, - "date": "2017-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 637, - "date": "2017-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 941, - "date": "2017-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4541, - "date": "2017-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2378, - "date": "2017-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 7012, - "date": "2017-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1526, - "date": "2017-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1951, - "date": "2017-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 845, - "date": "2017-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 641, - "date": "2017-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 2050, - "date": "2017-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2098, - "date": "2017-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1174, - "date": "2017-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2141, - "date": "2017-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 646, - "date": "2017-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 953, - "date": "2017-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4602, - "date": "2017-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2410, - "date": "2017-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6632, - "date": "2017-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1443, - "date": "2017-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1845, - "date": "2017-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 799, - "date": "2017-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 606, - "date": "2017-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1939, - "date": "2017-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1984, - "date": "2017-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1110, - "date": "2017-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2025, - "date": "2017-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 611, - "date": "2017-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 901, - "date": "2017-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4352, - "date": "2017-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2280, - "date": "2017-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6871, - "date": "2017-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1495, - "date": "2017-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1912, - "date": "2017-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 828, - "date": "2017-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 628, - "date": "2017-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 2009, - "date": "2017-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2056, - "date": "2017-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1150, - "date": "2017-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2098, - "date": "2017-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 633, - "date": "2017-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 934, - "date": "2017-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4509, - "date": "2017-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2362, - "date": "2017-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6782, - "date": "2017-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1476, - "date": "2017-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1887, - "date": "2017-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 817, - "date": "2017-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 620, - "date": "2017-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1982, - "date": "2017-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2029, - "date": "2017-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1135, - "date": "2017-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2071, - "date": "2017-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 625, - "date": "2017-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 922, - "date": "2017-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4451, - "date": "2017-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2331, - "date": "2017-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6822, - "date": "2017-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1484, - "date": "2017-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1898, - "date": "2017-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 822, - "date": "2017-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 624, - "date": "2017-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1994, - "date": "2017-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2041, - "date": "2017-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1142, - "date": "2017-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2083, - "date": "2017-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 628, - "date": "2017-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 927, - "date": "2017-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4477, - "date": "2017-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2345, - "date": "2017-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6760, - "date": "2017-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1471, - "date": "2017-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1881, - "date": "2017-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 814, - "date": "2017-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 618, - "date": "2017-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1976, - "date": "2017-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2023, - "date": "2017-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1132, - "date": "2017-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2064, - "date": "2017-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 623, - "date": "2017-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 919, - "date": "2017-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4436, - "date": "2017-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2324, - "date": "2017-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6805, - "date": "2017-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1481, - "date": "2017-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1893, - "date": "2017-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 820, - "date": "2017-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 622, - "date": "2017-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1989, - "date": "2017-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2036, - "date": "2017-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1139, - "date": "2017-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2078, - "date": "2017-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 627, - "date": "2017-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 925, - "date": "2017-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4466, - "date": "2017-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2339, - "date": "2017-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6878, - "date": "2017-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1496, - "date": "2017-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1914, - "date": "2017-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 829, - "date": "2017-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 629, - "date": "2017-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 2011, - "date": "2017-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2058, - "date": "2017-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1151, - "date": "2017-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2100, - "date": "2017-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 634, - "date": "2017-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 935, - "date": "2017-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4514, - "date": "2017-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2364, - "date": "2017-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6649, - "date": "2017-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1447, - "date": "2017-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1850, - "date": "2017-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 801, - "date": "2017-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 608, - "date": "2017-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1944, - "date": "2017-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1990, - "date": "2017-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1113, - "date": "2017-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2030, - "date": "2017-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 613, - "date": "2017-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 904, - "date": "2017-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4363, - "date": "2017-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2286, - "date": "2017-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6580, - "date": "2017-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1432, - "date": "2017-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1831, - "date": "2017-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 793, - "date": "2017-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 602, - "date": "2017-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1923, - "date": "2017-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1969, - "date": "2017-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1101, - "date": "2017-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2009, - "date": "2017-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 606, - "date": "2017-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 894, - "date": "2017-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4318, - "date": "2017-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2262, - "date": "2017-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6549, - "date": "2017-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1425, - "date": "2017-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1822, - "date": "2017-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 789, - "date": "2017-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 599, - "date": "2017-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1914, - "date": "2017-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1960, - "date": "2017-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1096, - "date": "2017-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2000, - "date": "2017-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 603, - "date": "2017-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 890, - "date": "2017-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4298, - "date": "2017-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2251, - "date": "2017-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6691, - "date": "2018-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1456, - "date": "2018-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1862, - "date": "2018-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 806, - "date": "2018-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 612, - "date": "2018-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1956, - "date": "2018-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2002, - "date": "2018-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1120, - "date": "2018-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2043, - "date": "2018-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 616, - "date": "2018-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 910, - "date": "2018-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4391, - "date": "2018-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2300, - "date": "2018-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6802, - "date": "2018-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1480, - "date": "2018-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1892, - "date": "2018-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 819, - "date": "2018-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 622, - "date": "2018-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1988, - "date": "2018-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2035, - "date": "2018-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1139, - "date": "2018-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2077, - "date": "2018-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 627, - "date": "2018-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 925, - "date": "2018-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4464, - "date": "2018-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2338, - "date": "2018-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6759, - "date": "2018-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1471, - "date": "2018-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1880, - "date": "2018-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 814, - "date": "2018-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 618, - "date": "2018-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1976, - "date": "2018-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2022, - "date": "2018-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1131, - "date": "2018-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2064, - "date": "2018-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 623, - "date": "2018-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 919, - "date": "2018-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4436, - "date": "2018-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2323, - "date": "2018-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6490, - "date": "2018-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1412, - "date": "2018-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1806, - "date": "2018-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 782, - "date": "2018-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 593, - "date": "2018-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1897, - "date": "2018-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1942, - "date": "2018-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1086, - "date": "2018-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1982, - "date": "2018-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 598, - "date": "2018-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 882, - "date": "2018-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4259, - "date": "2018-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2231, - "date": "2018-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6722, - "date": "2018-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1462, - "date": "2018-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1870, - "date": "2018-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 810, - "date": "2018-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 615, - "date": "2018-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1965, - "date": "2018-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2011, - "date": "2018-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1125, - "date": "2018-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2052, - "date": "2018-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 619, - "date": "2018-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 914, - "date": "2018-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4411, - "date": "2018-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2311, - "date": "2018-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6785, - "date": "2018-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1476, - "date": "2018-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1888, - "date": "2018-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 817, - "date": "2018-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 620, - "date": "2018-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1983, - "date": "2018-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2030, - "date": "2018-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1136, - "date": "2018-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2072, - "date": "2018-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 625, - "date": "2018-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 922, - "date": "2018-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4453, - "date": "2018-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2332, - "date": "2018-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6834, - "date": "2018-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1487, - "date": "2018-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1901, - "date": "2018-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 823, - "date": "2018-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 625, - "date": "2018-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1998, - "date": "2018-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2045, - "date": "2018-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1144, - "date": "2018-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2087, - "date": "2018-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 630, - "date": "2018-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 929, - "date": "2018-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4485, - "date": "2018-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2349, - "date": "2018-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6490, - "date": "2018-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1412, - "date": "2018-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1806, - "date": "2018-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 782, - "date": "2018-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 593, - "date": "2018-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1897, - "date": "2018-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1942, - "date": "2018-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1086, - "date": "2018-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1982, - "date": "2018-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 598, - "date": "2018-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 882, - "date": "2018-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4259, - "date": "2018-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2231, - "date": "2018-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6598, - "date": "2018-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1435, - "date": "2018-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1836, - "date": "2018-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 795, - "date": "2018-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 603, - "date": "2018-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1929, - "date": "2018-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1974, - "date": "2018-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1104, - "date": "2018-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2014, - "date": "2018-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 608, - "date": "2018-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 897, - "date": "2018-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4330, - "date": "2018-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2268, - "date": "2018-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6513, - "date": "2018-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1417, - "date": "2018-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1812, - "date": "2018-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 785, - "date": "2018-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 596, - "date": "2018-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1904, - "date": "2018-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1949, - "date": "2018-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1090, - "date": "2018-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1989, - "date": "2018-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 600, - "date": "2018-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 885, - "date": "2018-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4274, - "date": "2018-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2239, - "date": "2018-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6615, - "date": "2018-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1439, - "date": "2018-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1840, - "date": "2018-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 797, - "date": "2018-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 605, - "date": "2018-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1934, - "date": "2018-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1979, - "date": "2018-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1107, - "date": "2018-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2020, - "date": "2018-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 609, - "date": "2018-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 899, - "date": "2018-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4341, - "date": "2018-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2274, - "date": "2018-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6688, - "date": "2018-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1455, - "date": "2018-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1861, - "date": "2018-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 806, - "date": "2018-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 612, - "date": "2018-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1955, - "date": "2018-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2001, - "date": "2018-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1120, - "date": "2018-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2042, - "date": "2018-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 616, - "date": "2018-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 909, - "date": "2018-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4389, - "date": "2018-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2299, - "date": "2018-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6559, - "date": "2019-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1427, - "date": "2019-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1825, - "date": "2019-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 790, - "date": "2019-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 600, - "date": "2019-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1917, - "date": "2019-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1963, - "date": "2019-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1098, - "date": "2019-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2003, - "date": "2019-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 604, - "date": "2019-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 892, - "date": "2019-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4304, - "date": "2019-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2255, - "date": "2019-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6625, - "date": "2019-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1441, - "date": "2019-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1843, - "date": "2019-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 798, - "date": "2019-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 606, - "date": "2019-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1937, - "date": "2019-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1982, - "date": "2019-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1109, - "date": "2019-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2023, - "date": "2019-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 610, - "date": "2019-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 901, - "date": "2019-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4348, - "date": "2019-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2277, - "date": "2019-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6286, - "date": "2019-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1368, - "date": "2019-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1749, - "date": "2019-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 757, - "date": "2019-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 575, - "date": "2019-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1838, - "date": "2019-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1881, - "date": "2019-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1052, - "date": "2019-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1919, - "date": "2019-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 579, - "date": "2019-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 854, - "date": "2019-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4125, - "date": "2019-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2161, - "date": "2019-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6486, - "date": "2019-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1411, - "date": "2019-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1804, - "date": "2019-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 781, - "date": "2019-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 593, - "date": "2019-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1896, - "date": "2019-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1941, - "date": "2019-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1086, - "date": "2019-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1980, - "date": "2019-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 598, - "date": "2019-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 882, - "date": "2019-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4256, - "date": "2019-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2230, - "date": "2019-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6229, - "date": "2019-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1355, - "date": "2019-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1733, - "date": "2019-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 750, - "date": "2019-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 570, - "date": "2019-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1821, - "date": "2019-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1864, - "date": "2019-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1043, - "date": "2019-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1902, - "date": "2019-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 574, - "date": "2019-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 847, - "date": "2019-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4088, - "date": "2019-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2141, - "date": "2019-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6559, - "date": "2019-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1427, - "date": "2019-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1825, - "date": "2019-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 790, - "date": "2019-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 600, - "date": "2019-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1917, - "date": "2019-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1963, - "date": "2019-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1098, - "date": "2019-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2003, - "date": "2019-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 604, - "date": "2019-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 892, - "date": "2019-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4304, - "date": "2019-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2255, - "date": "2019-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6485, - "date": "2019-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1411, - "date": "2019-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1804, - "date": "2019-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 781, - "date": "2019-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 593, - "date": "2019-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1896, - "date": "2019-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1940, - "date": "2019-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1086, - "date": "2019-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1980, - "date": "2019-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 597, - "date": "2019-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 882, - "date": "2019-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4256, - "date": "2019-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2229, - "date": "2019-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6439, - "date": "2019-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1401, - "date": "2019-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1791, - "date": "2019-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 776, - "date": "2019-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 589, - "date": "2019-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1882, - "date": "2019-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1927, - "date": "2019-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1078, - "date": "2019-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1966, - "date": "2019-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 593, - "date": "2019-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 875, - "date": "2019-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4226, - "date": "2019-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2213, - "date": "2019-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6636, - "date": "2019-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1444, - "date": "2019-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1846, - "date": "2019-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 799, - "date": "2019-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 607, - "date": "2019-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1940, - "date": "2019-09-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1986, - "date": "2019-09-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1111, - "date": "2019-09-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2026, - "date": "2019-09-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 611, - "date": "2019-09-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 902, - "date": "2019-09-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4355, - "date": "2019-09-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2281, - "date": "2019-09-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6614, - "date": "2019-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1439, - "date": "2019-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1840, - "date": "2019-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 797, - "date": "2019-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 605, - "date": "2019-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1933, - "date": "2019-10-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1979, - "date": "2019-10-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1107, - "date": "2019-10-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2019, - "date": "2019-10-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 609, - "date": "2019-10-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 899, - "date": "2019-10-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4340, - "date": "2019-10-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2274, - "date": "2019-10-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6457, - "date": "2019-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1405, - "date": "2019-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1796, - "date": "2019-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 778, - "date": "2019-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 590, - "date": "2019-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1887, - "date": "2019-11-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1932, - "date": "2019-11-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1081, - "date": "2019-11-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1971, - "date": "2019-11-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 595, - "date": "2019-11-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 878, - "date": "2019-11-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4237, - "date": "2019-11-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2220, - "date": "2019-11-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6503, - "date": "2019-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1415, - "date": "2019-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1809, - "date": "2019-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 783, - "date": "2019-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 595, - "date": "2019-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1901, - "date": "2019-12-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1946, - "date": "2019-12-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1089, - "date": "2019-12-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1985, - "date": "2019-12-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 599, - "date": "2019-12-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 884, - "date": "2019-12-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4268, - "date": "2019-12-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2235, - "date": "2019-12-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6331, - "date": "2020-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1377, - "date": "2020-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1761, - "date": "2020-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 763, - "date": "2020-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 579, - "date": "2020-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1851, - "date": "2020-01-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1894, - "date": "2020-01-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1060, - "date": "2020-01-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1933, - "date": "2020-01-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 583, - "date": "2020-01-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 861, - "date": "2020-01-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4155, - "date": "2020-01-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2176, - "date": "2020-01-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6640, - "date": "2020-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1445, - "date": "2020-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1847, - "date": "2020-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 800, - "date": "2020-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 607, - "date": "2020-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1941, - "date": "2020-02-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1987, - "date": "2020-02-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1112, - "date": "2020-02-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2027, - "date": "2020-02-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 612, - "date": "2020-02-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 903, - "date": "2020-02-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4357, - "date": "2020-02-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2283, - "date": "2020-02-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6393, - "date": "2020-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1391, - "date": "2020-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1779, - "date": "2020-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 770, - "date": "2020-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 585, - "date": "2020-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1869, - "date": "2020-03-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1913, - "date": "2020-03-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1070, - "date": "2020-03-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1952, - "date": "2020-03-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 589, - "date": "2020-03-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 869, - "date": "2020-03-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4195, - "date": "2020-03-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2198, - "date": "2020-03-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6553, - "date": "2020-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1426, - "date": "2020-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1823, - "date": "2020-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 789, - "date": "2020-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 599, - "date": "2020-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1916, - "date": "2020-04-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1961, - "date": "2020-04-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1097, - "date": "2020-04-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 2001, - "date": "2020-04-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 604, - "date": "2020-04-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 891, - "date": "2020-04-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4300, - "date": "2020-04-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2253, - "date": "2020-04-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6239, - "date": "2020-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1357, - "date": "2020-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1736, - "date": "2020-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 752, - "date": "2020-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 570, - "date": "2020-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1824, - "date": "2020-05-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1867, - "date": "2020-05-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1044, - "date": "2020-05-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1905, - "date": "2020-05-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 575, - "date": "2020-05-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 848, - "date": "2020-05-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4094, - "date": "2020-05-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2145, - "date": "2020-05-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 6176, - "date": "2020-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1344, - "date": "2020-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1718, - "date": "2020-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 744, - "date": "2020-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 565, - "date": "2020-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1805, - "date": "2020-06-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1848, - "date": "2020-06-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 1034, - "date": "2020-06-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1886, - "date": "2020-06-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 569, - "date": "2020-06-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 840, - "date": "2020-06-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 4053, - "date": "2020-06-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2123, - "date": "2020-06-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5900, - "date": "2020-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1284, - "date": "2020-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1641, - "date": "2020-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 711, - "date": "2020-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 539, - "date": "2020-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1725, - "date": "2020-07-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1765, - "date": "2020-07-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 988, - "date": "2020-07-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1801, - "date": "2020-07-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 544, - "date": "2020-07-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 802, - "date": "2020-07-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3872, - "date": "2020-07-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2028, - "date": "2020-07-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 5924, - "date": "2020-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "count": 1289, - "date": "2020-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "count": 1648, - "date": "2020-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "count": 714, - "date": "2020-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "count": 542, - "date": "2020-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "count": 1732, - "date": "2020-08-01", - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 1773, - "date": "2020-08-01", - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "count": 992, - "date": "2020-08-01", - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "count": 1809, - "date": "2020-08-01", - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "count": 546, - "date": "2020-08-01", - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "count": 805, - "date": "2020-08-01", - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "count": 3888, - "date": "2020-08-01", - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "count": 2036, - "date": "2020-08-01", - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, -] -`; - -exports[`data fetching for metric ProbationProgrammingCurrent 1`] = ` -Array [ - Object { - "count": 153, - "locality": "7", - }, - Object { - "count": 34, - "locality": "4", - }, - Object { - "count": 359, - "locality": "5", - }, - Object { - "count": 84, - "locality": "6", - }, - Object { - "count": 68, - "locality": "2", - }, - Object { - "count": 38, - "locality": "8", - }, - Object { - "count": 91, - "locality": "3", - }, - Object { - "count": 102, - "locality": "1", - }, -] -`; - -exports[`data fetching for metric ProbationRevocationsAggregate 1`] = ` -Array [ - Object { - "ageBucket": "ALL", - "category": "abscond", - "count": 135, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "offend", - "count": 86, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "technical", - "count": 277, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "unknown", - "count": 45, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "abscond", - "count": 252, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "category": "offend", - "count": 252, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "category": "technical", - "count": 252, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "category": "unknown", - "count": 72, - "gender": "ALL", - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "category": "abscond", - "count": 135, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "category": "offend", - "count": 45, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "category": "technical", - "count": 135, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "category": "unknown", - "count": 108, - "gender": "ALL", - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "category": "abscond", - "count": 403, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "category": "offend", - "count": 45, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "category": "technical", - "count": 252, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "category": "unknown", - "count": 72, - "gender": "ALL", - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "category": "abscond", - "count": 135, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "category": "offend", - "count": 277, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "category": "technical", - "count": 252, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "category": "unknown", - "count": 72, - "gender": "ALL", - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "category": "abscond", - "count": 282, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "category": "offend", - "count": 82, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "category": "technical", - "count": 482, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "category": "unknown", - "count": 72, - "gender": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "category": "abscond", - "count": 86, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "offend", - "count": 282, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "technical", - "count": 277, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "unknown", - "count": 72, - "gender": "FEMALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "abscond", - "count": 282, - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "offend", - "count": 86, - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "technical", - "count": 72, - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "category": "unknown", - "count": 108, - "gender": "MALE", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "category": "abscond", - "count": 45, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "category": "offend", - "count": 282, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "category": "technical", - "count": 282, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "category": "unknown", - "count": 108, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "category": "abscond", - "count": 282, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "category": "offend", - "count": 108, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "category": "technical", - "count": 282, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "category": "unknown", - "count": 108, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "category": "abscond", - "count": 0, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "category": "offend", - "count": 0, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "category": "technical", - "count": 282, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "category": "unknown", - "count": 108, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "category": "abscond", - "count": 277, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "category": "offend", - "count": 277, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "category": "technical", - "count": 277, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "category": "unknown", - "count": 0, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "category": "abscond", - "count": 86, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "category": "offend", - "count": 108, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "category": "technical", - "count": 108, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "category": "unknown", - "count": 45, - "gender": "ALL", - "raceOrEthnicity": "ALL", - }, -] -`; - -exports[`data fetching for metric ProbationSuccessAggregate 1`] = ` -Array [ - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "EAST_CENTRAL", - "raceOrEthnicity": "ALL", - "rate": 0.5415384615384615, - "rateDenominator": 650, - "rateNumerator": 352, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST", - "raceOrEthnicity": "ALL", - "rate": 0.44340505144995324, - "rateDenominator": 1069, - "rateNumerator": 474, - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "NORTHEAST_CENTRAL", - "raceOrEthnicity": "ALL", - "rate": 0.5572519083969466, - "rateDenominator": 655, - "rateNumerator": 365, - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "SOUTHWEST", - "raceOrEthnicity": "ALL", - "rate": 0.6032171581769437, - "rateDenominator": 373, - "rateNumerator": 225, - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "NORTH_CENTRAL", - "raceOrEthnicity": "ALL", - "rate": 0.5963636363636363, - "rateDenominator": 275, - "rateNumerator": 164, - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "SOUTHEAST", - "raceOrEthnicity": "ALL", - "rate": 0.4872881355932203, - "rateDenominator": 236, - "rateNumerator": 115, - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "SOUTHWEST", - "raceOrEthnicity": "ALL", - "rate": 0.5, - "rateDenominator": 44, - "rateNumerator": 22, - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "NORTHEAST_CENTRAL", - "raceOrEthnicity": "ALL", - "rate": 0.5426356589147286, - "rateDenominator": 129, - "rateNumerator": 70, - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "OTHER", - "raceOrEthnicity": "ALL", - "rate": 0.9661016949152542, - "rateDenominator": 177, - "rateNumerator": 171, - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "SOUTHWEST", - "raceOrEthnicity": "ALL", - "rate": 0.584, - "rateDenominator": 125, - "rateNumerator": 73, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "OTHER", - "raceOrEthnicity": "OTHER", - "rate": 1, - "rateDenominator": 4, - "rateNumerator": 4, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTHEAST", - "raceOrEthnicity": "BLACK", - "rate": 0.6857142857142857, - "rateDenominator": 35, - "rateNumerator": 24, - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "NORTHWEST", - "raceOrEthnicity": "ALL", - "rate": 0.5267175572519084, - "rateDenominator": 262, - "rateNumerator": 138, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTH_CENTRAL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.2613195342820181, - "rateDenominator": 773, - "rateNumerator": 202, - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.6179775280898876, - "rateDenominator": 2225, - "rateNumerator": 1375, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "ALL", - "raceOrEthnicity": "WHITE", - "rate": 0.5991040318566451, - "rateDenominator": 10045, - "rateNumerator": 6018, - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "NORTHEAST", - "raceOrEthnicity": "ALL", - "rate": 0.4394904458598726, - "rateDenominator": 157, - "rateNumerator": 69, - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "NORTHEAST", - "raceOrEthnicity": "ALL", - "rate": 0.5573248407643312, - "rateDenominator": 314, - "rateNumerator": 175, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST", - "raceOrEthnicity": "OTHER", - "rate": 0.8, - "rateDenominator": 5, - "rateNumerator": 4, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "EAST_CENTRAL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.4636363636363636, - "rateDenominator": 110, - "rateNumerator": 51, - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "NORTHEAST", - "raceOrEthnicity": "ALL", - "rate": 0.3953488372093023, - "rateDenominator": 86, - "rateNumerator": 34, - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "NORTHEAST", - "raceOrEthnicity": "ALL", - "rate": 0.25, - "rateDenominator": 52, - "rateNumerator": 13, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST", - "raceOrEthnicity": "WHITE", - "rate": 0.542907180385289, - "rateDenominator": 571, - "rateNumerator": 310, - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "SOUTHEAST", - "raceOrEthnicity": "ALL", - "rate": 0.6304347826086957, - "rateDenominator": 46, - "rateNumerator": 29, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTHWEST", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.5555555555555556, - "rateDenominator": 27, - "rateNumerator": 15, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "EAST_CENTRAL", - "raceOrEthnicity": "BLACK", - "rate": 0.47770700636942676, - "rateDenominator": 157, - "rateNumerator": 75, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST", - "raceOrEthnicity": "BLACK", - "rate": 0.45, - "rateDenominator": 20, - "rateNumerator": 9, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "OTHER", - "raceOrEthnicity": "BLACK", - "rate": 0.9659090909090909, - "rateDenominator": 88, - "rateNumerator": 85, - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "NORTHWEST", - "raceOrEthnicity": "ALL", - "rate": 0.5610859728506787, - "rateDenominator": 221, - "rateNumerator": 124, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTH_CENTRAL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.3939393939393939, - "rateDenominator": 231, - "rateNumerator": 91, - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "OTHER", - "raceOrEthnicity": "ALL", - "rate": 0.9851851851851852, - "rateDenominator": 135, - "rateNumerator": 133, - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "SOUTHEAST", - "raceOrEthnicity": "ALL", - "rate": 0.6325581395348837, - "rateDenominator": 215, - "rateNumerator": 136, - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "EAST_CENTRAL", - "raceOrEthnicity": "ALL", - "rate": 0.48517940717628705, - "rateDenominator": 1282, - "rateNumerator": 622, - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "NORTHEAST_CENTRAL", - "raceOrEthnicity": "ALL", - "rate": 0.5069444444444444, - "rateDenominator": 288, - "rateNumerator": 146, - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "NORTHWEST", - "raceOrEthnicity": "ALL", - "rate": 0.5222772277227723, - "rateDenominator": 404, - "rateNumerator": 211, - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "OTHER", - "raceOrEthnicity": "ALL", - "rate": 0.9933110367892977, - "rateDenominator": 299, - "rateNumerator": 297, - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "SOUTH_CENTRAL", - "raceOrEthnicity": "ALL", - "rate": 0.36403508771929827, - "rateDenominator": 456, - "rateNumerator": 166, - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "SOUTH_CENTRAL", - "raceOrEthnicity": "ALL", - "rate": 0.4405218726016884, - "rateDenominator": 1303, - "rateNumerator": 574, - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "SOUTHEAST", - "raceOrEthnicity": "ALL", - "rate": 0.6814814814814815, - "rateDenominator": 135, - "rateNumerator": 92, - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "SOUTH_CENTRAL", - "raceOrEthnicity": "ALL", - "rate": 0.40514469453376206, - "rateDenominator": 311, - "rateNumerator": 126, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTH_CENTRAL", - "raceOrEthnicity": "OTHER", - "rate": 0.375, - "rateDenominator": 16, - "rateNumerator": 6, - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "EAST_CENTRAL", - "raceOrEthnicity": "ALL", - "rate": 0.4676113360323887, - "rateDenominator": 494, - "rateNumerator": 231, - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "OTHER", - "raceOrEthnicity": "ALL", - "rate": 0.993421052631579, - "rateDenominator": 152, - "rateNumerator": 151, - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "SOUTHWEST", - "raceOrEthnicity": "ALL", - "rate": 0.5531914893617021, - "rateDenominator": 94, - "rateNumerator": 52, - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "SOUTH_CENTRAL", - "raceOrEthnicity": "ALL", - "rate": 0.4551645856980704, - "rateDenominator": 881, - "rateNumerator": 401, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTH_CENTRAL", - "raceOrEthnicity": "WHITE", - "rate": 0.5188933873144399, - "rateDenominator": 1482, - "rateNumerator": 769, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "ALL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.5048732943469786, - "rateDenominator": 513, - "rateNumerator": 259, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTHWEST", - "raceOrEthnicity": "BLACK", - "rate": 0.5675675675675675, - "rateDenominator": 37, - "rateNumerator": 21, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.549307774227902, - "rateDenominator": 9390, - "rateNumerator": 5158, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST_CENTRAL", - "raceOrEthnicity": "WHITE", - "rate": 0.5900900900900901, - "rateDenominator": 444, - "rateNumerator": 262, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "EAST_CENTRAL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.2964426877470356, - "rateDenominator": 253, - "rateNumerator": 75, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHWEST", - "raceOrEthnicity": "WHITE", - "rate": 0.5469613259668509, - "rateDenominator": 543, - "rateNumerator": 297, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTHEAST", - "raceOrEthnicity": "ALL", - "rate": 0.6195069667738478, - "rateDenominator": 933, - "rateNumerator": 578, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST_CENTRAL", - "raceOrEthnicity": "ALL", - "rate": 0.5442729488220959, - "rateDenominator": 1231, - "rateNumerator": 670, - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "NORTHWEST", - "raceOrEthnicity": "ALL", - "rate": 0.5210084033613446, - "rateDenominator": 119, - "rateNumerator": 62, - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "NORTHWEST", - "raceOrEthnicity": "ALL", - "rate": 0.5634920634920635, - "rateDenominator": 126, - "rateNumerator": 71, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHWEST", - "raceOrEthnicity": "ALL", - "rate": 0.5369774919614148, - "rateDenominator": 622, - "rateNumerator": 334, - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "NORTH_CENTRAL", - "raceOrEthnicity": "ALL", - "rate": 0.5338645418326693, - "rateDenominator": 251, - "rateNumerator": 134, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTH_CENTRAL", - "raceOrEthnicity": "WHITE", - "rate": 0.5642857142857143, - "rateDenominator": 560, - "rateNumerator": 316, - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "SOUTHEAST", - "raceOrEthnicity": "ALL", - "rate": 0.6155717761557178, - "rateDenominator": 411, - "rateNumerator": 253, - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5458256787099408, - "rateDenominator": 4899, - "rateNumerator": 2674, - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "NORTH_CENTRAL", - "raceOrEthnicity": "ALL", - "rate": 0.4767932489451477, - "rateDenominator": 237, - "rateNumerator": 113, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTH_CENTRAL", - "raceOrEthnicity": "ALL", - "rate": 0.5377677564825254, - "rateDenominator": 887, - "rateNumerator": 477, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "OTHER", - "raceOrEthnicity": "ALL", - "rate": 0.981301421091997, - "rateDenominator": 1337, - "rateNumerator": 1312, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTH_CENTRAL", - "raceOrEthnicity": "OTHER", - "rate": 0.3333333333333333, - "rateDenominator": 9, - "rateNumerator": 3, - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "NORTHWEST", - "raceOrEthnicity": "ALL", - "rate": 0.5301837270341208, - "rateDenominator": 762, - "rateNumerator": 404, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTH_CENTRAL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.4642857142857143, - "rateDenominator": 28, - "rateNumerator": 13, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "ALL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.3431667670078266, - "rateDenominator": 1661, - "rateNumerator": 570, - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "NORTHEAST_CENTRAL", - "raceOrEthnicity": "ALL", - "rate": 0.5084175084175084, - "rateDenominator": 297, - "rateNumerator": 151, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST_CENTRAL", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.4217391304347826, - "rateDenominator": 230, - "rateNumerator": 97, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHWEST", - "raceOrEthnicity": "BLACK", - "rate": 0.5119047619047619, - "rateDenominator": 84, - "rateNumerator": 43, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "OTHER", - "raceOrEthnicity": "WHITE", - "rate": 0.9806678383128296, - "rateDenominator": 569, - "rateNumerator": 558, - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.49851455733808675, - "rateDenominator": 1683, - "rateNumerator": 839, - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "NORTHEAST", - "raceOrEthnicity": "ALL", - "rate": 0.3967391304347826, - "rateDenominator": 184, - "rateNumerator": 73, - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "NORTHEAST_CENTRAL", - "raceOrEthnicity": "ALL", - "rate": 0.5173913043478261, - "rateDenominator": 230, - "rateNumerator": 119, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTHEAST", - "raceOrEthnicity": "WHITE", - "rate": 0.6420581655480985, - "rateDenominator": 447, - "rateNumerator": 287, - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "NORTHEAST", - "raceOrEthnicity": "ALL", - "rate": 0.43654114365411434, - "rateDenominator": 717, - "rateNumerator": 313, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST", - "raceOrEthnicity": "HISPANIC", - "rate": 0.4032258064516129, - "rateDenominator": 62, - "rateNumerator": 25, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "OTHER", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.9861111111111112, - "rateDenominator": 72, - "rateNumerator": 71, - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "SOUTHWEST", - "raceOrEthnicity": "ALL", - "rate": 0.5063291139240507, - "rateDenominator": 79, - "rateNumerator": 40, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "EAST_CENTRAL", - "raceOrEthnicity": "WHITE", - "rate": 0.5369458128078818, - "rateDenominator": 1624, - "rateNumerator": 872, - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "OTHER", - "raceOrEthnicity": "ALL", - "rate": 0.9774535809018567, - "rateDenominator": 754, - "rateNumerator": 737, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "EAST_CENTRAL", - "raceOrEthnicity": "ALL", - "rate": 0.4983309489747258, - "rateDenominator": 2097, - "rateNumerator": 1045, - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5337026777469991, - "rateDenominator": 1083, - "rateNumerator": 578, - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "EAST_CENTRAL", - "raceOrEthnicity": "ALL", - "rate": 0.541371158392435, - "rateDenominator": 423, - "rateNumerator": 229, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.28212290502793297, - "rateDenominator": 358, - "rateNumerator": 101, - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "NORTH_CENTRAL", - "raceOrEthnicity": "ALL", - "rate": 0.5464684014869888, - "rateDenominator": 269, - "rateNumerator": 147, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTHEAST", - "raceOrEthnicity": "HISPANIC", - "rate": 0.5238095238095238, - "rateDenominator": 21, - "rateNumerator": 11, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST_CENTRAL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.4473684210526316, - "rateDenominator": 76, - "rateNumerator": 34, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTHWEST", - "raceOrEthnicity": "ALL", - "rate": 0.5816554809843401, - "rateDenominator": 447, - "rateNumerator": 260, - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "OTHER", - "raceOrEthnicity": "ALL", - "rate": 0.9809976247030879, - "rateDenominator": 421, - "rateNumerator": 413, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTHWEST", - "raceOrEthnicity": "OTHER", - "rate": 0.5, - "rateDenominator": 2, - "rateNumerator": 1, - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "SOUTH_CENTRAL", - "raceOrEthnicity": "ALL", - "rate": 0.4234592445328032, - "rateDenominator": 503, - "rateNumerator": 213, - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "EAST_CENTRAL", - "raceOrEthnicity": "ALL", - "rate": 0.4889380530973451, - "rateDenominator": 452, - "rateNumerator": 221, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST_CENTRAL", - "raceOrEthnicity": "OTHER", - "rate": 0.75, - "rateDenominator": 4, - "rateNumerator": 3, - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "SOUTHWEST", - "raceOrEthnicity": "ALL", - "rate": 0.6610169491525424, - "rateDenominator": 177, - "rateNumerator": 117, - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "SOUTH_CENTRAL", - "raceOrEthnicity": "ALL", - "rate": 0.533625730994152, - "rateDenominator": 684, - "rateNumerator": 365, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "EAST_CENTRAL", - "raceOrEthnicity": "OTHER", - "rate": 0.5909090909090909, - "rateDenominator": 22, - "rateNumerator": 13, - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "NORTHEAST", - "raceOrEthnicity": "ALL", - "rate": 0.4625, - "rateDenominator": 240, - "rateNumerator": 111, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTH_CENTRAL", - "raceOrEthnicity": "BLACK", - "rate": 0.5298507462686567, - "rateDenominator": 134, - "rateNumerator": 71, - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "SOUTHEAST", - "raceOrEthnicity": "ALL", - "rate": 0.7225433526011561, - "rateDenominator": 173, - "rateNumerator": 125, - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "EAST_CENTRAL", - "raceOrEthnicity": "ALL", - "rate": 0.5093333333333333, - "rateDenominator": 375, - "rateNumerator": 191, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHWEST", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.4157303370786517, - "rateDenominator": 89, - "rateNumerator": 37, - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "NORTH_CENTRAL", - "raceOrEthnicity": "ALL", - "rate": 0.5740740740740741, - "rateDenominator": 270, - "rateNumerator": 155, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "ALL", - "raceOrEthnicity": "OTHER", - "rate": 0.5443037974683544, - "rateDenominator": 79, - "rateNumerator": 43, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTH_CENTRAL", - "raceOrEthnicity": "HISPANIC", - "rate": 0.32653061224489793, - "rateDenominator": 98, - "rateNumerator": 32, - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "NORTHEAST_CENTRAL", - "raceOrEthnicity": "ALL", - "rate": 0.5294117647058824, - "rateDenominator": 136, - "rateNumerator": 72, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTHWEST", - "raceOrEthnicity": "HISPANIC", - "rate": 0.5384615384615384, - "rateDenominator": 26, - "rateNumerator": 14, - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "SOUTH_CENTRAL", - "raceOrEthnicity": "ALL", - "rate": 0.4229390681003584, - "rateDenominator": 279, - "rateNumerator": 118, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTH_CENTRAL", - "raceOrEthnicity": "ALL", - "rate": 0.4451063829787234, - "rateDenominator": 1175, - "rateNumerator": 523, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST_CENTRAL", - "raceOrEthnicity": "BLACK", - "rate": 0.46788990825688076, - "rateDenominator": 109, - "rateNumerator": 51, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHWEST", - "raceOrEthnicity": "HISPANIC", - "rate": 0.5588235294117647, - "rateDenominator": 68, - "rateNumerator": 38, - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "NORTH_CENTRAL", - "raceOrEthnicity": "ALL", - "rate": 0.46808510638297873, - "rateDenominator": 94, - "rateNumerator": 44, - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "NORTH_CENTRAL", - "raceOrEthnicity": "ALL", - "rate": 0.5347288296860133, - "rateDenominator": 1051, - "rateNumerator": 562, - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5593275137407048, - "rateDenominator": 3093, - "rateNumerator": 1730, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "OTHER", - "raceOrEthnicity": "HISPANIC", - "rate": 0.9883720930232558, - "rateDenominator": 86, - "rateNumerator": 85, - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "NORTHWEST", - "raceOrEthnicity": "ALL", - "rate": 0.583732057416268, - "rateDenominator": 209, - "rateNumerator": 122, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTHEAST", - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - "rate": 0.36065573770491804, - "rateDenominator": 61, - "rateNumerator": 22, - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "OTHER", - "raceOrEthnicity": "ALL", - "rate": 0.9626168224299065, - "rateDenominator": 107, - "rateNumerator": 103, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "ALL", - "raceOrEthnicity": "BLACK", - "rate": 0.5180180180180181, - "rateDenominator": 666, - "rateNumerator": 345, - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "NORTHEAST_CENTRAL", - "raceOrEthnicity": "ALL", - "rate": 0.6186186186186187, - "rateDenominator": 333, - "rateNumerator": 206, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTH_CENTRAL", - "raceOrEthnicity": "BLACK", - "rate": 0.3974358974358974, - "rateDenominator": 78, - "rateNumerator": 31, - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5110088728228722, - "rateDenominator": 3043, - "rateNumerator": 1555, - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "SOUTHWEST", - "raceOrEthnicity": "ALL", - "rate": 0.5616438356164384, - "rateDenominator": 73, - "rateNumerator": 41, - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "ALL", - "raceOrEthnicity": "ALL", - "rate": 0.5302879841112215, - "rateDenominator": 1007, - "rateNumerator": 534, - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "EAST_CENTRAL", - "raceOrEthnicity": "ALL", - "rate": 0.4371069182389937, - "rateDenominator": 318, - "rateNumerator": 139, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHWEST", - "raceOrEthnicity": "OTHER", - "rate": 0.5714285714285714, - "rateDenominator": 7, - "rateNumerator": 4, - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "SOUTHEAST", - "raceOrEthnicity": "ALL", - "rate": 0.5591397849462365, - "rateDenominator": 186, - "rateNumerator": 104, - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTHWEST", - "raceOrEthnicity": "WHITE", - "rate": 0.5865921787709497, - "rateDenominator": 358, - "rateNumerator": 210, - }, -] -`; - -exports[`data fetching for metric ProbationSuccessHistorical 1`] = ` -Array [ - Object { - "locality": "NORTHWEST", - "month": 3, - "rate": 0.5789473684210527, - "rateDenominator": 38, - "rateNumerator": 22, - "year": 2018, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 10, - "rate": 0.6091954022988506, - "rateDenominator": 87, - "rateNumerator": 53, - "year": 2019, - }, - Object { - "locality": "ALL", - "month": 5, - "rate": 0.537864077669903, - "rateDenominator": 515, - "rateNumerator": 277, - "year": 2020, - }, - Object { - "locality": "ALL", - "month": 1, - "rate": 0.5348837209302325, - "rateDenominator": 559, - "rateNumerator": 299, - "year": 2018, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 3, - "rate": 0.4888888888888889, - "rateDenominator": 90, - "rateNumerator": 44, - "year": 2018, - }, - Object { - "locality": "SOUTHEAST", - "month": 3, - "rate": 0.6944444444444444, - "rateDenominator": 36, - "rateNumerator": 25, - "year": 2019, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 10, - "rate": 0.5375, - "rateDenominator": 80, - "rateNumerator": 43, - "year": 2019, - }, - Object { - "locality": "SOUTHWEST", - "month": 10, - "rate": 0.6923076923076923, - "rateDenominator": 13, - "rateNumerator": 9, - "year": 2019, - }, - Object { - "locality": "OTHER", - "month": 12, - "rate": 1, - "rateDenominator": 24, - "rateNumerator": 24, - "year": 2019, - }, - Object { - "locality": "ALL", - "month": 4, - "rate": 0.523121387283237, - "rateDenominator": 346, - "rateNumerator": 181, - "year": 2020, - }, - Object { - "locality": "SOUTHEAST", - "month": 9, - "rate": 0.5263157894736842, - "rateDenominator": 19, - "rateNumerator": 10, - "year": 2017, - }, - Object { - "locality": "SOUTHWEST", - "month": 4, - "rate": 0.5, - "rateDenominator": 10, - "rateNumerator": 5, - "year": 2018, - }, - Object { - "locality": "SOUTHWEST", - "month": 6, - "rate": 0.5714285714285714, - "rateDenominator": 21, - "rateNumerator": 12, - "year": 2018, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 8, - "rate": 0.45263157894736844, - "rateDenominator": 95, - "rateNumerator": 43, - "year": 2019, - }, - Object { - "locality": "ALL", - "month": 11, - "rate": 0.5731225296442688, - "rateDenominator": 506, - "rateNumerator": 290, - "year": 2019, - }, - Object { - "locality": "NORTHWEST", - "month": 11, - "rate": 0.6216216216216216, - "rateDenominator": 37, - "rateNumerator": 23, - "year": 2019, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 1, - "rate": 0.6222222222222222, - "rateDenominator": 45, - "rateNumerator": 28, - "year": 2020, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 2, - "rate": 0.4, - "rateDenominator": 45, - "rateNumerator": 18, - "year": 2020, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 4, - "rate": 0.4523809523809524, - "rateDenominator": 42, - "rateNumerator": 19, - "year": 2020, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 8, - "rate": 0.4074074074074074, - "rateDenominator": 81, - "rateNumerator": 33, - "year": 2017, - }, - Object { - "locality": "OTHER", - "month": 6, - "rate": 0.9259259259259259, - "rateDenominator": 27, - "rateNumerator": 25, - "year": 2018, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 8, - "rate": 0.6, - "rateDenominator": 20, - "rateNumerator": 12, - "year": 2018, - }, - Object { - "locality": "SOUTHEAST", - "month": 8, - "rate": 0.5238095238095238, - "rateDenominator": 21, - "rateNumerator": 11, - "year": 2019, - }, - Object { - "locality": "NORTHEAST", - "month": 9, - "rate": 0.38461538461538464, - "rateDenominator": 26, - "rateNumerator": 10, - "year": 2019, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 11, - "rate": 0.5294117647058824, - "rateDenominator": 34, - "rateNumerator": 18, - "year": 2017, - }, - Object { - "locality": "SOUTHWEST", - "month": 5, - "rate": 0.5, - "rateDenominator": 22, - "rateNumerator": 11, - "year": 2018, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 12, - "rate": 0.44545454545454544, - "rateDenominator": 110, - "rateNumerator": 49, - "year": 2018, - }, - Object { - "locality": "SOUTHEAST", - "month": 9, - "rate": 0.7428571428571429, - "rateDenominator": 35, - "rateNumerator": 26, - "year": 2019, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 9, - "rate": 0.43283582089552236, - "rateDenominator": 67, - "rateNumerator": 29, - "year": 2019, - }, - Object { - "locality": "OTHER", - "month": 2, - "rate": 1, - "rateDenominator": 22, - "rateNumerator": 22, - "year": 2020, - }, - Object { - "locality": "NORTHEAST", - "month": 8, - "rate": 0.3448275862068966, - "rateDenominator": 29, - "rateNumerator": 10, - "year": 2017, - }, - Object { - "locality": "NORTHWEST", - "month": 2, - "rate": 0.5238095238095238, - "rateDenominator": 21, - "rateNumerator": 11, - "year": 2018, - }, - Object { - "locality": "SOUTHEAST", - "month": 7, - "rate": 0.6363636363636364, - "rateDenominator": 22, - "rateNumerator": 14, - "year": 2018, - }, - Object { - "locality": "OTHER", - "month": 6, - "rate": 1, - "rateDenominator": 46, - "rateNumerator": 46, - "year": 2019, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 8, - "rate": 0.6417910447761194, - "rateDenominator": 67, - "rateNumerator": 43, - "year": 2019, - }, - Object { - "locality": "OTHER", - "month": 8, - "rate": 1, - "rateDenominator": 34, - "rateNumerator": 34, - "year": 2019, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 10, - "rate": 0.46938775510204084, - "rateDenominator": 49, - "rateNumerator": 23, - "year": 2019, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 4, - "rate": 0.46808510638297873, - "rateDenominator": 47, - "rateNumerator": 22, - "year": 2020, - }, - Object { - "locality": "SOUTHEAST", - "month": 8, - "rate": 0.4, - "rateDenominator": 10, - "rateNumerator": 4, - "year": 2017, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 12, - "rate": 0.45098039215686275, - "rateDenominator": 51, - "rateNumerator": 23, - "year": 2017, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 12, - "rate": 0.5263157894736842, - "rateDenominator": 133, - "rateNumerator": 70, - "year": 2017, - }, - Object { - "locality": "NORTHWEST", - "month": 7, - "rate": 0.4827586206896552, - "rateDenominator": 29, - "rateNumerator": 14, - "year": 2018, - }, - Object { - "locality": "NORTHWEST", - "month": 8, - "rate": 0.6, - "rateDenominator": 35, - "rateNumerator": 21, - "year": 2018, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 3, - "rate": 0.2692307692307692, - "rateDenominator": 26, - "rateNumerator": 7, - "year": 2020, - }, - Object { - "locality": "NORTHEAST", - "month": 9, - "rate": 0.47368421052631576, - "rateDenominator": 19, - "rateNumerator": 9, - "year": 2017, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 1, - "rate": 0.47058823529411764, - "rateDenominator": 85, - "rateNumerator": 40, - "year": 2019, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 3, - "rate": 0.5227272727272727, - "rateDenominator": 44, - "rateNumerator": 23, - "year": 2019, - }, - Object { - "locality": "SOUTHEAST", - "month": 1, - "rate": 0.6071428571428571, - "rateDenominator": 28, - "rateNumerator": 17, - "year": 2020, - }, - Object { - "locality": "NORTHWEST", - "month": 6, - "rate": 0.5, - "rateDenominator": 14, - "rateNumerator": 7, - "year": 2020, - }, - Object { - "locality": "NORTHWEST", - "month": 11, - "rate": 0.46153846153846156, - "rateDenominator": 13, - "rateNumerator": 6, - "year": 2017, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 1, - "rate": 0.43283582089552236, - "rateDenominator": 134, - "rateNumerator": 58, - "year": 2018, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 9, - "rate": 0.45588235294117646, - "rateDenominator": 68, - "rateNumerator": 31, - "year": 2018, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 9, - "rate": 0.55, - "rateDenominator": 20, - "rateNumerator": 11, - "year": 2018, - }, - Object { - "locality": "ALL", - "month": 10, - "rate": 0.5517241379310345, - "rateDenominator": 261, - "rateNumerator": 144, - "year": 2018, - }, - Object { - "locality": "SOUTHEAST", - "month": 4, - "rate": 0.6551724137931034, - "rateDenominator": 29, - "rateNumerator": 19, - "year": 2019, - }, - Object { - "locality": "SOUTHEAST", - "month": 10, - "rate": 0.8, - "rateDenominator": 25, - "rateNumerator": 20, - "year": 2019, - }, - Object { - "locality": "OTHER", - "month": 7, - "rate": 0.9090909090909091, - "rateDenominator": 11, - "rateNumerator": 10, - "year": 2020, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 4, - "rate": 0.39436619718309857, - "rateDenominator": 71, - "rateNumerator": 28, - "year": 2018, - }, - Object { - "locality": "SOUTHEAST", - "month": 5, - "rate": 0.59375, - "rateDenominator": 32, - "rateNumerator": 19, - "year": 2019, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 6, - "rate": 0.6666666666666666, - "rateDenominator": 45, - "rateNumerator": 30, - "year": 2019, - }, - Object { - "locality": "ALL", - "month": 9, - "rate": 0.5802469135802469, - "rateDenominator": 324, - "rateNumerator": 188, - "year": 2017, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 10, - "rate": 0.48936170212765956, - "rateDenominator": 47, - "rateNumerator": 23, - "year": 2017, - }, - Object { - "locality": "NORTHWEST", - "month": 10, - "rate": 0.45714285714285713, - "rateDenominator": 35, - "rateNumerator": 16, - "year": 2017, - }, - Object { - "locality": "ALL", - "month": 11, - "rate": 0.5056179775280899, - "rateDenominator": 445, - "rateNumerator": 225, - "year": 2017, - }, - Object { - "locality": "SOUTHEAST", - "month": 12, - "rate": 0.5, - "rateDenominator": 20, - "rateNumerator": 10, - "year": 2017, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 7, - "rate": 0.4263565891472868, - "rateDenominator": 129, - "rateNumerator": 55, - "year": 2018, - }, - Object { - "locality": "SOUTHWEST", - "month": 7, - "rate": 0.5, - "rateDenominator": 24, - "rateNumerator": 12, - "year": 2018, - }, - Object { - "locality": "OTHER", - "month": 12, - "rate": 0.9, - "rateDenominator": 10, - "rateNumerator": 9, - "year": 2018, - }, - Object { - "locality": "OTHER", - "month": 5, - "rate": 1, - "rateDenominator": 36, - "rateNumerator": 36, - "year": 2019, - }, - Object { - "locality": "SOUTHWEST", - "month": 9, - "rate": 0.6, - "rateDenominator": 20, - "rateNumerator": 12, - "year": 2019, - }, - Object { - "locality": "NORTHWEST", - "month": 9, - "rate": 0.5, - "rateDenominator": 42, - "rateNumerator": 21, - "year": 2019, - }, - Object { - "locality": "NORTHEAST", - "month": 11, - "rate": 0.32, - "rateDenominator": 25, - "rateNumerator": 8, - "year": 2019, - }, - Object { - "locality": "NORTHWEST", - "month": 12, - "rate": 0.5384615384615384, - "rateDenominator": 26, - "rateNumerator": 14, - "year": 2019, - }, - Object { - "locality": "OTHER", - "month": 3, - "rate": 1, - "rateDenominator": 24, - "rateNumerator": 24, - "year": 2020, - }, - Object { - "locality": "NORTHWEST", - "month": 3, - "rate": 0.4375, - "rateDenominator": 16, - "rateNumerator": 7, - "year": 2020, - }, - Object { - "locality": "NORTHWEST", - "month": 4, - "rate": 0.4117647058823529, - "rateDenominator": 17, - "rateNumerator": 7, - "year": 2020, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 5, - "rate": 0.5061728395061729, - "rateDenominator": 81, - "rateNumerator": 41, - "year": 2019, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 6, - "rate": 0.5, - "rateDenominator": 98, - "rateNumerator": 49, - "year": 2019, - }, - Object { - "locality": "NORTHEAST", - "month": 7, - "rate": 0.3939393939393939, - "rateDenominator": 33, - "rateNumerator": 13, - "year": 2019, - }, - Object { - "locality": "NORTHEAST", - "month": 6, - "rate": 0.3333333333333333, - "rateDenominator": 9, - "rateNumerator": 3, - "year": 2020, - }, - Object { - "locality": "NORTHEAST", - "month": 10, - "rate": 0.5555555555555556, - "rateDenominator": 27, - "rateNumerator": 15, - "year": 2017, - }, - Object { - "locality": "ALL", - "month": 6, - "rate": 0.5594936708860759, - "rateDenominator": 395, - "rateNumerator": 221, - "year": 2018, - }, - Object { - "locality": "SOUTHWEST", - "month": 8, - "rate": 0.5833333333333334, - "rateDenominator": 12, - "rateNumerator": 7, - "year": 2018, - }, - Object { - "locality": "NORTHWEST", - "month": 1, - "rate": 0.72, - "rateDenominator": 25, - "rateNumerator": 18, - "year": 2019, - }, - Object { - "locality": "SOUTHEAST", - "month": 2, - "rate": 0.6, - "rateDenominator": 15, - "rateNumerator": 9, - "year": 2020, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 7, - "rate": 0.23076923076923078, - "rateDenominator": 26, - "rateNumerator": 6, - "year": 2020, - }, - Object { - "locality": "NORTHWEST", - "month": 8, - "rate": 0.631578947368421, - "rateDenominator": 19, - "rateNumerator": 12, - "year": 2017, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 9, - "rate": 0.5138888888888888, - "rateDenominator": 72, - "rateNumerator": 37, - "year": 2017, - }, - Object { - "locality": "SOUTHWEST", - "month": 10, - "rate": 0.4166666666666667, - "rateDenominator": 12, - "rateNumerator": 5, - "year": 2017, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 5, - "rate": 0.5714285714285714, - "rateDenominator": 28, - "rateNumerator": 16, - "year": 2018, - }, - Object { - "locality": "NORTHWEST", - "month": 9, - "rate": 0.47368421052631576, - "rateDenominator": 19, - "rateNumerator": 9, - "year": 2018, - }, - Object { - "locality": "NORTHWEST", - "month": 10, - "rate": 0.5, - "rateDenominator": 56, - "rateNumerator": 28, - "year": 2018, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 1, - "rate": 0.39344262295081966, - "rateDenominator": 61, - "rateNumerator": 24, - "year": 2019, - }, - Object { - "locality": "NORTHEAST", - "month": 1, - "rate": 0.47058823529411764, - "rateDenominator": 34, - "rateNumerator": 16, - "year": 2019, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 3, - "rate": 0.6181818181818182, - "rateDenominator": 55, - "rateNumerator": 34, - "year": 2019, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 5, - "rate": 0.5, - "rateDenominator": 96, - "rateNumerator": 48, - "year": 2019, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 4, - "rate": 0.4482758620689655, - "rateDenominator": 58, - "rateNumerator": 26, - "year": 2020, - }, - Object { - "locality": "NORTHWEST", - "month": 5, - "rate": 0.6170212765957447, - "rateDenominator": 47, - "rateNumerator": 29, - "year": 2020, - }, - Object { - "locality": "ALL", - "month": 10, - "rate": 0.536723163841808, - "rateDenominator": 354, - "rateNumerator": 190, - "year": 2017, - }, - Object { - "locality": "SOUTHWEST", - "month": 2, - "rate": 0.4666666666666667, - "rateDenominator": 15, - "rateNumerator": 7, - "year": 2018, - }, - Object { - "locality": "OTHER", - "month": 5, - "rate": 1, - "rateDenominator": 14, - "rateNumerator": 14, - "year": 2018, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 10, - "rate": 0.6956521739130435, - "rateDenominator": 23, - "rateNumerator": 16, - "year": 2018, - }, - Object { - "locality": "NORTHEAST", - "month": 6, - "rate": 0.4117647058823529, - "rateDenominator": 17, - "rateNumerator": 7, - "year": 2019, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 7, - "rate": 0.5588235294117647, - "rateDenominator": 34, - "rateNumerator": 19, - "year": 2019, - }, - Object { - "locality": "NORTHWEST", - "month": 1, - "rate": 0.5, - "rateDenominator": 36, - "rateNumerator": 18, - "year": 2018, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 1, - "rate": 0.7, - "rateDenominator": 20, - "rateNumerator": 14, - "year": 2018, - }, - Object { - "locality": "SOUTHWEST", - "month": 7, - "rate": 0.7647058823529411, - "rateDenominator": 17, - "rateNumerator": 13, - "year": 2019, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 12, - "rate": 0.6129032258064516, - "rateDenominator": 62, - "rateNumerator": 38, - "year": 2019, - }, - Object { - "locality": "SOUTHWEST", - "month": 7, - "rate": 0.8, - "rateDenominator": 5, - "rateNumerator": 4, - "year": 2020, - }, - Object { - "locality": "NORTHWEST", - "month": 7, - "rate": 0.375, - "rateDenominator": 8, - "rateNumerator": 3, - "year": 2020, - }, - Object { - "locality": "SOUTHWEST", - "month": 9, - "rate": 0.4583333333333333, - "rateDenominator": 24, - "rateNumerator": 11, - "year": 2018, - }, - Object { - "locality": "ALL", - "month": 4, - "rate": 0.5382932166301969, - "rateDenominator": 457, - "rateNumerator": 246, - "year": 2019, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 8, - "rate": 0.5818181818181818, - "rateDenominator": 55, - "rateNumerator": 32, - "year": 2019, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 10, - "rate": 0.47058823529411764, - "rateDenominator": 102, - "rateNumerator": 48, - "year": 2019, - }, - Object { - "locality": "OTHER", - "month": 11, - "rate": 1, - "rateDenominator": 28, - "rateNumerator": 28, - "year": 2017, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 5, - "rate": 0.4936708860759494, - "rateDenominator": 79, - "rateNumerator": 39, - "year": 2018, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 2, - "rate": 0.47058823529411764, - "rateDenominator": 34, - "rateNumerator": 16, - "year": 2019, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 9, - "rate": 0.5, - "rateDenominator": 44, - "rateNumerator": 22, - "year": 2019, - }, - Object { - "locality": "SOUTHWEST", - "month": 1, - "rate": 0.6363636363636364, - "rateDenominator": 22, - "rateNumerator": 14, - "year": 2020, - }, - Object { - "locality": "SOUTHWEST", - "month": 4, - "rate": 0.3888888888888889, - "rateDenominator": 18, - "rateNumerator": 7, - "year": 2020, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 10, - "rate": 0.48872180451127817, - "rateDenominator": 133, - "rateNumerator": 65, - "year": 2017, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 11, - "rate": 0.48484848484848486, - "rateDenominator": 33, - "rateNumerator": 16, - "year": 2017, - }, - Object { - "locality": "ALL", - "month": 2, - "rate": 0.5067961165048543, - "rateDenominator": 515, - "rateNumerator": 261, - "year": 2018, - }, - Object { - "locality": "OTHER", - "month": 4, - "rate": 1, - "rateDenominator": 37, - "rateNumerator": 37, - "year": 2018, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 8, - "rate": 0.49, - "rateDenominator": 100, - "rateNumerator": 49, - "year": 2018, - }, - Object { - "locality": "OTHER", - "month": 9, - "rate": 0.9333333333333333, - "rateDenominator": 15, - "rateNumerator": 14, - "year": 2018, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 10, - "rate": 0.5, - "rateDenominator": 88, - "rateNumerator": 44, - "year": 2018, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 11, - "rate": 0.48936170212765956, - "rateDenominator": 47, - "rateNumerator": 23, - "year": 2018, - }, - Object { - "locality": "NORTHEAST", - "month": 1, - "rate": 0.35, - "rateDenominator": 40, - "rateNumerator": 14, - "year": 2020, - }, - Object { - "locality": "SOUTHWEST", - "month": 9, - "rate": 0.625, - "rateDenominator": 8, - "rateNumerator": 5, - "year": 2017, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 4, - "rate": 0.6, - "rateDenominator": 15, - "rateNumerator": 9, - "year": 2018, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 7, - "rate": 0.46875, - "rateDenominator": 32, - "rateNumerator": 15, - "year": 2018, - }, - Object { - "locality": "NORTHEAST", - "month": 7, - "rate": 0.42857142857142855, - "rateDenominator": 21, - "rateNumerator": 9, - "year": 2018, - }, - Object { - "locality": "SOUTHEAST", - "month": 10, - "rate": 0.5238095238095238, - "rateDenominator": 21, - "rateNumerator": 11, - "year": 2018, - }, - Object { - "locality": "SOUTHEAST", - "month": 11, - "rate": 0.5862068965517241, - "rateDenominator": 29, - "rateNumerator": 17, - "year": 2018, - }, - Object { - "locality": "ALL", - "month": 1, - "rate": 0.5625, - "rateDenominator": 192, - "rateNumerator": 108, - "year": 2019, - }, - Object { - "locality": "SOUTHEAST", - "month": 6, - "rate": 0.5454545454545454, - "rateDenominator": 22, - "rateNumerator": 12, - "year": 2019, - }, - Object { - "locality": "NORTHWEST", - "month": 7, - "rate": 0.40625, - "rateDenominator": 32, - "rateNumerator": 13, - "year": 2019, - }, - Object { - "locality": "ALL", - "month": 1, - "rate": 0.5425531914893617, - "rateDenominator": 470, - "rateNumerator": 255, - "year": 2020, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 3, - "rate": 0.3333333333333333, - "rateDenominator": 21, - "rateNumerator": 7, - "year": 2020, - }, - Object { - "locality": "SOUTHEAST", - "month": 3, - "rate": 0.5909090909090909, - "rateDenominator": 22, - "rateNumerator": 13, - "year": 2018, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 8, - "rate": 0.4326923076923077, - "rateDenominator": 104, - "rateNumerator": 45, - "year": 2018, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 1, - "rate": 0.5555555555555556, - "rateDenominator": 27, - "rateNumerator": 15, - "year": 2019, - }, - Object { - "locality": "SOUTHWEST", - "month": 1, - "rate": 0.7647058823529411, - "rateDenominator": 17, - "rateNumerator": 13, - "year": 2019, - }, - Object { - "locality": "ALL", - "month": 9, - "rate": 0.5243362831858407, - "rateDenominator": 452, - "rateNumerator": 237, - "year": 2019, - }, - Object { - "locality": "OTHER", - "month": 5, - "rate": 1, - "rateDenominator": 48, - "rateNumerator": 48, - "year": 2020, - }, - Object { - "locality": "NORTHWEST", - "month": 5, - "rate": 0.48, - "rateDenominator": 50, - "rateNumerator": 24, - "year": 2018, - }, - Object { - "locality": "ALL", - "month": 7, - "rate": 0.5414507772020726, - "rateDenominator": 386, - "rateNumerator": 209, - "year": 2018, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 8, - "rate": 0.5365853658536586, - "rateDenominator": 41, - "rateNumerator": 22, - "year": 2018, - }, - Object { - "locality": "ALL", - "month": 9, - "rate": 0.5148514851485149, - "rateDenominator": 303, - "rateNumerator": 156, - "year": 2018, - }, - Object { - "locality": "NORTHEAST", - "month": 4, - "rate": 0.4583333333333333, - "rateDenominator": 24, - "rateNumerator": 11, - "year": 2019, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 8, - "rate": 0.5454545454545454, - "rateDenominator": 55, - "rateNumerator": 30, - "year": 2019, - }, - Object { - "locality": "SOUTHWEST", - "month": 8, - "rate": 0.5384615384615384, - "rateDenominator": 13, - "rateNumerator": 7, - "year": 2019, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 2, - "rate": 0.5056179775280899, - "rateDenominator": 89, - "rateNumerator": 45, - "year": 2018, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 4, - "rate": 0.5272727272727272, - "rateDenominator": 55, - "rateNumerator": 29, - "year": 2019, - }, - Object { - "locality": "ALL", - "month": 10, - "rate": 0.5720930232558139, - "rateDenominator": 430, - "rateNumerator": 246, - "year": 2019, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 12, - "rate": 0.5, - "rateDenominator": 28, - "rateNumerator": 14, - "year": 2019, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 11, - "rate": 0.5, - "rateDenominator": 38, - "rateNumerator": 19, - "year": 2017, - }, - Object { - "locality": "SOUTHWEST", - "month": 11, - "rate": 0.4782608695652174, - "rateDenominator": 23, - "rateNumerator": 11, - "year": 2017, - }, - Object { - "locality": "NORTHWEST", - "month": 4, - "rate": 0.5833333333333334, - "rateDenominator": 24, - "rateNumerator": 14, - "year": 2018, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 11, - "rate": 0.5, - "rateDenominator": 44, - "rateNumerator": 22, - "year": 2018, - }, - Object { - "locality": "OTHER", - "month": 7, - "rate": 0.972972972972973, - "rateDenominator": 37, - "rateNumerator": 36, - "year": 2019, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 7, - "rate": 0.35294117647058826, - "rateDenominator": 17, - "rateNumerator": 6, - "year": 2020, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 4, - "rate": 0.4393939393939394, - "rateDenominator": 66, - "rateNumerator": 29, - "year": 2018, - }, - Object { - "locality": "NORTHEAST", - "month": 11, - "rate": 0.45, - "rateDenominator": 40, - "rateNumerator": 18, - "year": 2018, - }, - Object { - "locality": "NORTHWEST", - "month": 2, - "rate": 0.49056603773584906, - "rateDenominator": 53, - "rateNumerator": 26, - "year": 2019, - }, - Object { - "locality": "SOUTHWEST", - "month": 6, - "rate": 0.3333333333333333, - "rateDenominator": 3, - "rateNumerator": 1, - "year": 2020, - }, - Object { - "locality": "SOUTHWEST", - "month": 8, - "rate": 0.5, - "rateDenominator": 16, - "rateNumerator": 8, - "year": 2017, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 12, - "rate": 0.36, - "rateDenominator": 50, - "rateNumerator": 18, - "year": 2017, - }, - Object { - "locality": "ALL", - "month": 3, - "rate": 0.5607476635514018, - "rateDenominator": 428, - "rateNumerator": 240, - "year": 2018, - }, - Object { - "locality": "SOUTHEAST", - "month": 8, - "rate": 0.7, - "rateDenominator": 20, - "rateNumerator": 14, - "year": 2018, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 7, - "rate": 0.4142857142857143, - "rateDenominator": 70, - "rateNumerator": 29, - "year": 2019, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 1, - "rate": 0.5188679245283019, - "rateDenominator": 106, - "rateNumerator": 55, - "year": 2020, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 6, - "rate": 0.25, - "rateDenominator": 20, - "rateNumerator": 5, - "year": 2020, - }, - Object { - "locality": "ALL", - "month": 11, - "rate": 0.49875311720698257, - "rateDenominator": 401, - "rateNumerator": 200, - "year": 2018, - }, - Object { - "locality": "SOUTHEAST", - "month": 12, - "rate": 0.4857142857142857, - "rateDenominator": 35, - "rateNumerator": 17, - "year": 2018, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 1, - "rate": 0.5714285714285714, - "rateDenominator": 42, - "rateNumerator": 24, - "year": 2019, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 2, - "rate": 0.37777777777777777, - "rateDenominator": 90, - "rateNumerator": 34, - "year": 2019, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 2, - "rate": 0.43243243243243246, - "rateDenominator": 37, - "rateNumerator": 16, - "year": 2019, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 5, - "rate": 0.42857142857142855, - "rateDenominator": 49, - "rateNumerator": 21, - "year": 2019, - }, - Object { - "locality": "NORTHWEST", - "month": 6, - "rate": 0.5, - "rateDenominator": 36, - "rateNumerator": 18, - "year": 2019, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 3, - "rate": 0.4, - "rateDenominator": 35, - "rateNumerator": 14, - "year": 2020, - }, - Object { - "locality": "NORTHEAST", - "month": 5, - "rate": 0.36666666666666664, - "rateDenominator": 30, - "rateNumerator": 11, - "year": 2020, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 11, - "rate": 0.4492753623188406, - "rateDenominator": 69, - "rateNumerator": 31, - "year": 2017, - }, - Object { - "locality": "SOUTHEAST", - "month": 11, - "rate": 0.6190476190476191, - "rateDenominator": 42, - "rateNumerator": 26, - "year": 2017, - }, - Object { - "locality": "NORTHEAST", - "month": 3, - "rate": 0.52, - "rateDenominator": 25, - "rateNumerator": 13, - "year": 2018, - }, - Object { - "locality": "SOUTHEAST", - "month": 5, - "rate": 0.5, - "rateDenominator": 20, - "rateNumerator": 10, - "year": 2018, - }, - Object { - "locality": "SOUTHWEST", - "month": 3, - "rate": 0.5714285714285714, - "rateDenominator": 21, - "rateNumerator": 12, - "year": 2019, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 4, - "rate": 0.367816091954023, - "rateDenominator": 87, - "rateNumerator": 32, - "year": 2019, - }, - Object { - "locality": "OTHER", - "month": 10, - "rate": 0.9487179487179487, - "rateDenominator": 39, - "rateNumerator": 37, - "year": 2019, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 12, - "rate": 0.5061728395061729, - "rateDenominator": 81, - "rateNumerator": 41, - "year": 2019, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 1, - "rate": 0.39759036144578314, - "rateDenominator": 83, - "rateNumerator": 33, - "year": 2020, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 3, - "rate": 0.4246575342465753, - "rateDenominator": 73, - "rateNumerator": 31, - "year": 2020, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 5, - "rate": 0.4318181818181818, - "rateDenominator": 88, - "rateNumerator": 38, - "year": 2020, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 9, - "rate": 0.5347222222222222, - "rateDenominator": 144, - "rateNumerator": 77, - "year": 2017, - }, - Object { - "locality": "NORTHWEST", - "month": 6, - "rate": 0.6923076923076923, - "rateDenominator": 39, - "rateNumerator": 27, - "year": 2018, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 9, - "rate": 0.43529411764705883, - "rateDenominator": 85, - "rateNumerator": 37, - "year": 2018, - }, - Object { - "locality": "SOUTHEAST", - "month": 1, - "rate": 0.6190476190476191, - "rateDenominator": 42, - "rateNumerator": 26, - "year": 2019, - }, - Object { - "locality": "ALL", - "month": 6, - "rate": 0.5763546798029556, - "rateDenominator": 203, - "rateNumerator": 117, - "year": 2019, - }, - Object { - "locality": "NORTHWEST", - "month": 2, - "rate": 0.5333333333333333, - "rateDenominator": 30, - "rateNumerator": 16, - "year": 2020, - }, - Object { - "locality": "SOUTHEAST", - "month": 4, - "rate": 0.75, - "rateDenominator": 16, - "rateNumerator": 12, - "year": 2020, - }, - Object { - "locality": "OTHER", - "month": 9, - "rate": 1, - "rateDenominator": 50, - "rateNumerator": 50, - "year": 2017, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 2, - "rate": 0.52, - "rateDenominator": 25, - "rateNumerator": 13, - "year": 2020, - }, - Object { - "locality": "NORTHEAST", - "month": 4, - "rate": 0.41935483870967744, - "rateDenominator": 31, - "rateNumerator": 13, - "year": 2020, - }, - Object { - "locality": "OTHER", - "month": 1, - "rate": 0.9565217391304348, - "rateDenominator": 23, - "rateNumerator": 22, - "year": 2018, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 6, - "rate": 0.5510204081632653, - "rateDenominator": 49, - "rateNumerator": 27, - "year": 2018, - }, - Object { - "locality": "NORTHEAST", - "month": 3, - "rate": 0.4827586206896552, - "rateDenominator": 29, - "rateNumerator": 14, - "year": 2019, - }, - Object { - "locality": "SOUTHWEST", - "month": 6, - "rate": 0.625, - "rateDenominator": 8, - "rateNumerator": 5, - "year": 2019, - }, - Object { - "locality": "NORTHWEST", - "month": 8, - "rate": 0.5, - "rateDenominator": 68, - "rateNumerator": 34, - "year": 2019, - }, - Object { - "locality": "OTHER", - "month": 9, - "rate": 1, - "rateDenominator": 38, - "rateNumerator": 38, - "year": 2019, - }, - Object { - "locality": "NORTHEAST", - "month": 1, - "rate": 0.3023255813953488, - "rateDenominator": 43, - "rateNumerator": 13, - "year": 2018, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 1, - "rate": 0.5277777777777778, - "rateDenominator": 72, - "rateNumerator": 38, - "year": 2018, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 11, - "rate": 0.3389830508474576, - "rateDenominator": 59, - "rateNumerator": 20, - "year": 2018, - }, - Object { - "locality": "ALL", - "month": 12, - "rate": 0.5188284518828452, - "rateDenominator": 239, - "rateNumerator": 124, - "year": 2018, - }, - Object { - "locality": "SOUTHWEST", - "month": 12, - "rate": 0.4642857142857143, - "rateDenominator": 28, - "rateNumerator": 13, - "year": 2018, - }, - Object { - "locality": "OTHER", - "month": 3, - "rate": 1, - "rateDenominator": 38, - "rateNumerator": 38, - "year": 2019, - }, - Object { - "locality": "ALL", - "month": 6, - "rate": 0.4175824175824176, - "rateDenominator": 182, - "rateNumerator": 76, - "year": 2020, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 8, - "rate": 0.5555555555555556, - "rateDenominator": 36, - "rateNumerator": 20, - "year": 2017, - }, - Object { - "locality": "NORTHEAST", - "month": 5, - "rate": 0.3333333333333333, - "rateDenominator": 42, - "rateNumerator": 14, - "year": 2018, - }, - Object { - "locality": "NORTHEAST", - "month": 10, - "rate": 0.4444444444444444, - "rateDenominator": 18, - "rateNumerator": 8, - "year": 2018, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 2, - "rate": 0.5555555555555556, - "rateDenominator": 27, - "rateNumerator": 15, - "year": 2019, - }, - Object { - "locality": "OTHER", - "month": 4, - "rate": 1, - "rateDenominator": 15, - "rateNumerator": 15, - "year": 2019, - }, - Object { - "locality": "ALL", - "month": 7, - "rate": 0.5150300601202404, - "rateDenominator": 499, - "rateNumerator": 257, - "year": 2019, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 5, - "rate": 0.41379310344827586, - "rateDenominator": 29, - "rateNumerator": 12, - "year": 2020, - }, - Object { - "locality": "NORTHEAST", - "month": 4, - "rate": 0.7916666666666666, - "rateDenominator": 24, - "rateNumerator": 19, - "year": 2018, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 6, - "rate": 0.46153846153846156, - "rateDenominator": 91, - "rateNumerator": 42, - "year": 2018, - }, - Object { - "locality": "NORTHWEST", - "month": 3, - "rate": 0.6176470588235294, - "rateDenominator": 34, - "rateNumerator": 21, - "year": 2019, - }, - Object { - "locality": "NORTHEAST", - "month": 5, - "rate": 0.325, - "rateDenominator": 40, - "rateNumerator": 13, - "year": 2019, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 9, - "rate": 0.4722222222222222, - "rateDenominator": 36, - "rateNumerator": 17, - "year": 2019, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 11, - "rate": 0.5517241379310345, - "rateDenominator": 29, - "rateNumerator": 16, - "year": 2019, - }, - Object { - "locality": "SOUTHWEST", - "month": 3, - "rate": 0.75, - "rateDenominator": 4, - "rateNumerator": 3, - "year": 2020, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 1, - "rate": 0.475, - "rateDenominator": 40, - "rateNumerator": 19, - "year": 2018, - }, - Object { - "locality": "SOUTHWEST", - "month": 3, - "rate": 0.5555555555555556, - "rateDenominator": 9, - "rateNumerator": 5, - "year": 2018, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 10, - "rate": 0.4966442953020134, - "rateDenominator": 149, - "rateNumerator": 74, - "year": 2018, - }, - Object { - "locality": "OTHER", - "month": 1, - "rate": 1, - "rateDenominator": 29, - "rateNumerator": 29, - "year": 2019, - }, - Object { - "locality": "NORTHEAST", - "month": 8, - "rate": 0.4, - "rateDenominator": 10, - "rateNumerator": 4, - "year": 2018, - }, - Object { - "locality": "SOUTHEAST", - "month": 2, - "rate": 0.5517241379310345, - "rateDenominator": 29, - "rateNumerator": 16, - "year": 2019, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 7, - "rate": 0.47474747474747475, - "rateDenominator": 99, - "rateNumerator": 47, - "year": 2019, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 11, - "rate": 0.47619047619047616, - "rateDenominator": 105, - "rateNumerator": 50, - "year": 2019, - }, - Object { - "locality": "ALL", - "month": 3, - "rate": 0.46303501945525294, - "rateDenominator": 257, - "rateNumerator": 119, - "year": 2020, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 2, - "rate": 0.43243243243243246, - "rateDenominator": 37, - "rateNumerator": 16, - "year": 2018, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 4, - "rate": 0.6470588235294118, - "rateDenominator": 68, - "rateNumerator": 44, - "year": 2018, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 7, - "rate": 0.56, - "rateDenominator": 25, - "rateNumerator": 14, - "year": 2018, - }, - Object { - "locality": "OTHER", - "month": 11, - "rate": 0.9655172413793104, - "rateDenominator": 29, - "rateNumerator": 28, - "year": 2018, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 4, - "rate": 0.5806451612903226, - "rateDenominator": 31, - "rateNumerator": 18, - "year": 2019, - }, - Object { - "locality": "NORTHWEST", - "month": 10, - "rate": 0.5384615384615384, - "rateDenominator": 52, - "rateNumerator": 28, - "year": 2019, - }, - Object { - "locality": "NORTHWEST", - "month": 1, - "rate": 0.6216216216216216, - "rateDenominator": 37, - "rateNumerator": 23, - "year": 2020, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 2, - "rate": 0.5774647887323944, - "rateDenominator": 71, - "rateNumerator": 41, - "year": 2020, - }, - Object { - "locality": "ALL", - "month": 2, - "rate": 0.5577689243027888, - "rateDenominator": 251, - "rateNumerator": 140, - "year": 2020, - }, - Object { - "locality": "SOUTHWEST", - "month": 5, - "rate": 0.6875, - "rateDenominator": 16, - "rateNumerator": 11, - "year": 2020, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 6, - "rate": 0.3055555555555556, - "rateDenominator": 36, - "rateNumerator": 11, - "year": 2020, - }, - Object { - "locality": "ALL", - "month": 5, - "rate": 0.5354200988467874, - "rateDenominator": 607, - "rateNumerator": 325, - "year": 2018, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 6, - "rate": 0.5357142857142857, - "rateDenominator": 28, - "rateNumerator": 15, - "year": 2018, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 7, - "rate": 0.4779874213836478, - "rateDenominator": 159, - "rateNumerator": 76, - "year": 2019, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 12, - "rate": 0.49523809523809526, - "rateDenominator": 105, - "rateNumerator": 52, - "year": 2019, - }, - Object { - "locality": "SOUTHWEST", - "month": 12, - "rate": 0.6666666666666666, - "rateDenominator": 12, - "rateNumerator": 8, - "year": 2019, - }, - Object { - "locality": "OTHER", - "month": 4, - "rate": 1, - "rateDenominator": 51, - "rateNumerator": 51, - "year": 2020, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 9, - "rate": 0.5151515151515151, - "rateDenominator": 33, - "rateNumerator": 17, - "year": 2017, - }, - Object { - "locality": "NORTHEAST", - "month": 11, - "rate": 0.24, - "rateDenominator": 25, - "rateNumerator": 6, - "year": 2017, - }, - Object { - "locality": "NORTHEAST", - "month": 6, - "rate": 0.45161290322580644, - "rateDenominator": 31, - "rateNumerator": 14, - "year": 2018, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 7, - "rate": 0.5660377358490566, - "rateDenominator": 53, - "rateNumerator": 30, - "year": 2018, - }, - Object { - "locality": "ALL", - "month": 5, - "rate": 0.5552825552825553, - "rateDenominator": 407, - "rateNumerator": 226, - "year": 2019, - }, - Object { - "locality": "NORTHEAST", - "month": 12, - "rate": 0.4, - "rateDenominator": 25, - "rateNumerator": 10, - "year": 2019, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 4, - "rate": 0.42016806722689076, - "rateDenominator": 119, - "rateNumerator": 50, - "year": 2020, - }, - Object { - "locality": "ALL", - "month": 8, - "rate": 0.5205479452054794, - "rateDenominator": 365, - "rateNumerator": 190, - "year": 2017, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 9, - "rate": 0.6428571428571429, - "rateDenominator": 56, - "rateNumerator": 36, - "year": 2017, - }, - Object { - "locality": "ALL", - "month": 4, - "rate": 0.5603217158176944, - "rateDenominator": 373, - "rateNumerator": 209, - "year": 2018, - }, - Object { - "locality": "SOUTHWEST", - "month": 11, - "rate": 0.8125, - "rateDenominator": 16, - "rateNumerator": 13, - "year": 2018, - }, - Object { - "locality": "NORTHWEST", - "month": 11, - "rate": 0.3333333333333333, - "rateDenominator": 21, - "rateNumerator": 7, - "year": 2018, - }, - Object { - "locality": "SOUTHWEST", - "month": 2, - "rate": 0.6666666666666666, - "rateDenominator": 18, - "rateNumerator": 12, - "year": 2019, - }, - Object { - "locality": "NORTHEAST", - "month": 10, - "rate": 0.4473684210526316, - "rateDenominator": 38, - "rateNumerator": 17, - "year": 2019, - }, - Object { - "locality": "SOUTHWEST", - "month": 11, - "rate": 0.5, - "rateDenominator": 14, - "rateNumerator": 7, - "year": 2019, - }, - Object { - "locality": "OTHER", - "month": 6, - "rate": 1, - "rateDenominator": 17, - "rateNumerator": 17, - "year": 2020, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 10, - "rate": 0.425, - "rateDenominator": 40, - "rateNumerator": 17, - "year": 2017, - }, - Object { - "locality": "ALL", - "month": 12, - "rate": 0.49056603773584906, - "rateDenominator": 318, - "rateNumerator": 156, - "year": 2017, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 12, - "rate": 0.4222222222222222, - "rateDenominator": 90, - "rateNumerator": 38, - "year": 2018, - }, - Object { - "locality": "ALL", - "month": 2, - "rate": 0.4907749077490775, - "rateDenominator": 271, - "rateNumerator": 133, - "year": 2019, - }, - Object { - "locality": "NORTHEAST", - "month": 2, - "rate": 0.45454545454545453, - "rateDenominator": 22, - "rateNumerator": 10, - "year": 2020, - }, - Object { - "locality": "NORTHEAST", - "month": 3, - "rate": 0.3333333333333333, - "rateDenominator": 24, - "rateNumerator": 8, - "year": 2020, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 7, - "rate": 0.5, - "rateDenominator": 22, - "rateNumerator": 11, - "year": 2020, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 8, - "rate": 0.44680851063829785, - "rateDenominator": 94, - "rateNumerator": 42, - "year": 2017, - }, - Object { - "locality": "SOUTHEAST", - "month": 2, - "rate": 0.6, - "rateDenominator": 20, - "rateNumerator": 12, - "year": 2018, - }, - Object { - "locality": "OTHER", - "month": 3, - "rate": 1, - "rateDenominator": 50, - "rateNumerator": 50, - "year": 2018, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 5, - "rate": 0.5, - "rateDenominator": 24, - "rateNumerator": 12, - "year": 2018, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 6, - "rate": 0.4700854700854701, - "rateDenominator": 117, - "rateNumerator": 55, - "year": 2018, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 9, - "rate": 0.49107142857142855, - "rateDenominator": 112, - "rateNumerator": 55, - "year": 2018, - }, - Object { - "locality": "SOUTHEAST", - "month": 9, - "rate": 0.6666666666666666, - "rateDenominator": 18, - "rateNumerator": 12, - "year": 2018, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 10, - "rate": 0.47368421052631576, - "rateDenominator": 57, - "rateNumerator": 27, - "year": 2018, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 11, - "rate": 0.4, - "rateDenominator": 25, - "rateNumerator": 10, - "year": 2018, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 5, - "rate": 0.5, - "rateDenominator": 60, - "rateNumerator": 30, - "year": 2019, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 11, - "rate": 0.6842105263157895, - "rateDenominator": 57, - "rateNumerator": 39, - "year": 2019, - }, - Object { - "locality": "SOUTHWEST", - "month": 2, - "rate": 0.5, - "rateDenominator": 10, - "rateNumerator": 5, - "year": 2020, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 7, - "rate": 0, - "rateDenominator": 3, - "rateNumerator": 0, - "year": 2020, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 2, - "rate": 0.28346456692913385, - "rateDenominator": 127, - "rateNumerator": 36, - "year": 2018, - }, - Object { - "locality": "OTHER", - "month": 7, - "rate": 1, - "rateDenominator": 22, - "rateNumerator": 22, - "year": 2018, - }, - Object { - "locality": "OTHER", - "month": 8, - "rate": 0.9767441860465116, - "rateDenominator": 43, - "rateNumerator": 42, - "year": 2018, - }, - Object { - "locality": "NORTHWEST", - "month": 12, - "rate": 0.5882352941176471, - "rateDenominator": 34, - "rateNumerator": 20, - "year": 2018, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 3, - "rate": 0.4430379746835443, - "rateDenominator": 79, - "rateNumerator": 35, - "year": 2019, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 3, - "rate": 0.4827586206896552, - "rateDenominator": 87, - "rateNumerator": 42, - "year": 2019, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 4, - "rate": 0.48695652173913045, - "rateDenominator": 115, - "rateNumerator": 56, - "year": 2019, - }, - Object { - "locality": "SOUTHWEST", - "month": 4, - "rate": 0.625, - "rateDenominator": 24, - "rateNumerator": 15, - "year": 2019, - }, - Object { - "locality": "ALL", - "month": 8, - "rate": 0.5728643216080402, - "rateDenominator": 597, - "rateNumerator": 342, - "year": 2019, - }, - Object { - "locality": "SOUTHEAST", - "month": 12, - "rate": 0.64, - "rateDenominator": 50, - "rateNumerator": 32, - "year": 2019, - }, - Object { - "locality": "SOUTHEAST", - "month": 5, - "rate": 0.5, - "rateDenominator": 10, - "rateNumerator": 5, - "year": 2020, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 6, - "rate": 0.2727272727272727, - "rateDenominator": 11, - "rateNumerator": 3, - "year": 2020, - }, - Object { - "locality": "ALL", - "month": 7, - "rate": 0.43529411764705883, - "rateDenominator": 85, - "rateNumerator": 37, - "year": 2020, - }, - Object { - "locality": "SOUTHEAST", - "month": 1, - "rate": 0.6428571428571429, - "rateDenominator": 14, - "rateNumerator": 9, - "year": 2018, - }, - Object { - "locality": "NORTHEAST", - "month": 2, - "rate": 0.6551724137931034, - "rateDenominator": 29, - "rateNumerator": 19, - "year": 2018, - }, - Object { - "locality": "OTHER", - "month": 10, - "rate": 0.9428571428571428, - "rateDenominator": 35, - "rateNumerator": 33, - "year": 2018, - }, - Object { - "locality": "SOUTHWEST", - "month": 10, - "rate": 0.52, - "rateDenominator": 25, - "rateNumerator": 13, - "year": 2018, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 12, - "rate": 0.5161290322580645, - "rateDenominator": 62, - "rateNumerator": 32, - "year": 2018, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 12, - "rate": 0.7, - "rateDenominator": 20, - "rateNumerator": 14, - "year": 2018, - }, - Object { - "locality": "NORTHEAST", - "month": 2, - "rate": 0.391304347826087, - "rateDenominator": 23, - "rateNumerator": 9, - "year": 2019, - }, - Object { - "locality": "NORTHEAST", - "month": 8, - "rate": 0.45454545454545453, - "rateDenominator": 33, - "rateNumerator": 15, - "year": 2019, - }, - Object { - "locality": "SOUTHEAST", - "month": 3, - "rate": 0.47058823529411764, - "rateDenominator": 17, - "rateNumerator": 8, - "year": 2020, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 8, - "rate": 0.5555555555555556, - "rateDenominator": 18, - "rateNumerator": 10, - "year": 2017, - }, - Object { - "locality": "SOUTHEAST", - "month": 10, - "rate": 0.7857142857142857, - "rateDenominator": 28, - "rateNumerator": 22, - "year": 2017, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 12, - "rate": 0.36363636363636365, - "rateDenominator": 22, - "rateNumerator": 8, - "year": 2017, - }, - Object { - "locality": "SOUTHEAST", - "month": 7, - "rate": 0.5263157894736842, - "rateDenominator": 19, - "rateNumerator": 10, - "year": 2019, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 9, - "rate": 0.44, - "rateDenominator": 50, - "rateNumerator": 22, - "year": 2019, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 2, - "rate": 0.47058823529411764, - "rateDenominator": 34, - "rateNumerator": 16, - "year": 2020, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 5, - "rate": 0.47058823529411764, - "rateDenominator": 34, - "rateNumerator": 16, - "year": 2020, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 10, - "rate": 0.4, - "rateDenominator": 90, - "rateNumerator": 36, - "year": 2017, - }, - Object { - "locality": "NORTHWEST", - "month": 12, - "rate": 0.4444444444444444, - "rateDenominator": 36, - "rateNumerator": 16, - "year": 2017, - }, - Object { - "locality": "OTHER", - "month": 2, - "rate": 1, - "rateDenominator": 46, - "rateNumerator": 46, - "year": 2018, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 3, - "rate": 0.4418604651162791, - "rateDenominator": 86, - "rateNumerator": 38, - "year": 2018, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 3, - "rate": 0.5555555555555556, - "rateDenominator": 27, - "rateNumerator": 15, - "year": 2018, - }, - Object { - "locality": "SOUTHEAST", - "month": 4, - "rate": 0.6571428571428571, - "rateDenominator": 35, - "rateNumerator": 23, - "year": 2018, - }, - Object { - "locality": "SOUTHEAST", - "month": 6, - "rate": 0.631578947368421, - "rateDenominator": 38, - "rateNumerator": 24, - "year": 2018, - }, - Object { - "locality": "SOUTHWEST", - "month": 5, - "rate": 0.75, - "rateDenominator": 12, - "rateNumerator": 9, - "year": 2019, - }, - Object { - "locality": "ALL", - "month": 12, - "rate": 0.5694444444444444, - "rateDenominator": 360, - "rateNumerator": 205, - "year": 2019, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 5, - "rate": 0.4588235294117647, - "rateDenominator": 85, - "rateNumerator": 39, - "year": 2020, - }, - Object { - "locality": "NORTHWEST", - "month": 9, - "rate": 0.45454545454545453, - "rateDenominator": 22, - "rateNumerator": 10, - "year": 2017, - }, - Object { - "locality": "OTHER", - "month": 12, - "rate": 1, - "rateDenominator": 35, - "rateNumerator": 35, - "year": 2017, - }, - Object { - "locality": "SOUTHWEST", - "month": 1, - "rate": 0.6818181818181818, - "rateDenominator": 22, - "rateNumerator": 15, - "year": 2018, - }, - Object { - "locality": "NORTHWEST", - "month": 4, - "rate": 0.625, - "rateDenominator": 24, - "rateNumerator": 15, - "year": 2019, - }, - Object { - "locality": "SOUTH_CENTRAL", - "month": 6, - "rate": 0.4696969696969697, - "rateDenominator": 132, - "rateNumerator": 62, - "year": 2019, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 6, - "rate": 0.6521739130434783, - "rateDenominator": 23, - "rateNumerator": 15, - "year": 2019, - }, - Object { - "locality": "OTHER", - "month": 1, - "rate": 0.9473684210526315, - "rateDenominator": 19, - "rateNumerator": 18, - "year": 2020, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 1, - "rate": 0.35714285714285715, - "rateDenominator": 28, - "rateNumerator": 10, - "year": 2020, - }, - Object { - "locality": "SOUTHEAST", - "month": 6, - "rate": 0.45454545454545453, - "rateDenominator": 11, - "rateNumerator": 5, - "year": 2020, - }, - Object { - "locality": "NORTHEAST", - "month": 7, - "rate": 0.125, - "rateDenominator": 8, - "rateNumerator": 1, - "year": 2020, - }, - Object { - "locality": "OTHER", - "month": 10, - "rate": 0.9655172413793104, - "rateDenominator": 29, - "rateNumerator": 28, - "year": 2017, - }, - Object { - "locality": "NORTHEAST", - "month": 12, - "rate": 0.30434782608695654, - "rateDenominator": 23, - "rateNumerator": 7, - "year": 2017, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 5, - "rate": 0.5327102803738317, - "rateDenominator": 107, - "rateNumerator": 57, - "year": 2018, - }, - Object { - "locality": "NORTHEAST", - "month": 9, - "rate": 0.5263157894736842, - "rateDenominator": 38, - "rateNumerator": 20, - "year": 2018, - }, - Object { - "locality": "EAST_CENTRAL", - "month": 11, - "rate": 0.4642857142857143, - "rateDenominator": 56, - "rateNumerator": 26, - "year": 2019, - }, - Object { - "locality": "SOUTHEAST", - "month": 11, - "rate": 0.6470588235294118, - "rateDenominator": 17, - "rateNumerator": 11, - "year": 2019, - }, - Object { - "locality": "OTHER", - "month": 11, - "rate": 1, - "rateDenominator": 17, - "rateNumerator": 17, - "year": 2019, - }, - Object { - "locality": "SOUTHWEST", - "month": 12, - "rate": 0.5, - "rateDenominator": 16, - "rateNumerator": 8, - "year": 2017, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 3, - "rate": 0.5217391304347826, - "rateDenominator": 46, - "rateNumerator": 24, - "year": 2018, - }, - Object { - "locality": "OTHER", - "month": 2, - "rate": 1, - "rateDenominator": 10, - "rateNumerator": 10, - "year": 2019, - }, - Object { - "locality": "NORTH_CENTRAL", - "month": 6, - "rate": 0.1875, - "rateDenominator": 16, - "rateNumerator": 3, - "year": 2020, - }, - Object { - "locality": "SOUTHEAST", - "month": 7, - "rate": 0.2222222222222222, - "rateDenominator": 9, - "rateNumerator": 2, - "year": 2020, - }, - Object { - "locality": "OTHER", - "month": 8, - "rate": 0.9772727272727273, - "rateDenominator": 44, - "rateNumerator": 43, - "year": 2017, - }, - Object { - "locality": "NORTHEAST_CENTRAL", - "month": 2, - "rate": 0.6153846153846154, - "rateDenominator": 26, - "rateNumerator": 16, - "year": 2018, - }, - Object { - "locality": "ALL", - "month": 8, - "rate": 0.5594713656387665, - "rateDenominator": 227, - "rateNumerator": 127, - "year": 2018, - }, - Object { - "locality": "NORTHEAST", - "month": 12, - "rate": 0.5277777777777778, - "rateDenominator": 36, - "rateNumerator": 19, - "year": 2018, - }, - Object { - "locality": "ALL", - "month": 3, - "rate": 0.5683836589698046, - "rateDenominator": 563, - "rateNumerator": 320, - "year": 2019, - }, - Object { - "locality": "NORTHWEST", - "month": 5, - "rate": 0.5714285714285714, - "rateDenominator": 21, - "rateNumerator": 12, - "year": 2019, - }, -] -`; - -exports[`data fetching for metric SentencePopulationCurrent 1`] = ` -Array [ - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "ALL", - "population": 11648, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "ALL", - "population": 1510, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "ALL", - "population": 3048, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "ALL", - "population": 2458, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "ALL", - "population": 2277, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "ALL", - "population": 2354, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "NORTHEAST", - "population": 1167, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "NORTHEAST", - "population": 266, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "NORTHEAST", - "population": 206, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "NORTHEAST", - "population": 694, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "NORTHEAST", - "population": 143, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "SOUTHEAST", - "population": 182, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "SOUTHEAST", - "population": 266, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "SOUTHEAST", - "population": 323, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "SOUTHEAST", - "population": 235, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "SOUTHEAST", - "population": 287, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "SOUTH_CENTRAL", - "population": 375, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "SOUTH_CENTRAL", - "population": 582, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "SOUTH_CENTRAL", - "population": 428, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "SOUTH_CENTRAL", - "population": 596, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "SOUTH_CENTRAL", - "population": 537, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "SOUTHWEST", - "population": 253, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "SOUTHWEST", - "population": 134, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "SOUTHWEST", - "population": 174, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "SOUTHWEST", - "population": 228, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "SOUTHWEST", - "population": 126, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "EAST_CENTRAL", - "population": 477, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "EAST_CENTRAL", - "population": 425, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "EAST_CENTRAL", - "population": 224, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "EAST_CENTRAL", - "population": 368, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "EAST_CENTRAL", - "population": 270, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "NORTHEAST_CENTRAL", - "population": 263, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "NORTHEAST_CENTRAL", - "population": 410, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "NORTHEAST_CENTRAL", - "population": 74, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "NORTHEAST_CENTRAL", - "population": 217, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "NORTHEAST_CENTRAL", - "population": 219, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "NORTHWEST", - "population": 45, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "NORTHWEST", - "population": 64, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "NORTHWEST", - "population": 47, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "NORTHWEST", - "population": 124, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "NORTHWEST", - "population": 133, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "<25", - "gender": "ALL", - "locality": "NORTH_CENTRAL", - "population": 239, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "25-29", - "gender": "ALL", - "locality": "NORTH_CENTRAL", - "population": 301, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "30-34", - "gender": "ALL", - "locality": "NORTH_CENTRAL", - "population": 211, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "35-39", - "gender": "ALL", - "locality": "NORTH_CENTRAL", - "population": 282, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "40<", - "gender": "ALL", - "locality": "NORTH_CENTRAL", - "population": 25, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST", - "population": 317, - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST", - "population": 406, - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST", - "population": 598, - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST", - "population": 443, - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST", - "population": 713, - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTHEAST", - "population": 360, - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTHEAST", - "population": 187, - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTHEAST", - "population": 300, - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTHEAST", - "population": 316, - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTHEAST", - "population": 131, - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTH_CENTRAL", - "population": 838, - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTH_CENTRAL", - "population": 241, - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTH_CENTRAL", - "population": 472, - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTH_CENTRAL", - "population": 731, - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTH_CENTRAL", - "population": 235, - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTHWEST", - "population": 181, - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTHWEST", - "population": 381, - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTHWEST", - "population": 93, - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTHWEST", - "population": 147, - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTHWEST", - "population": 112, - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "EAST_CENTRAL", - "population": 566, - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "EAST_CENTRAL", - "population": 332, - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "EAST_CENTRAL", - "population": 198, - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "EAST_CENTRAL", - "population": 417, - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "EAST_CENTRAL", - "population": 250, - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST_CENTRAL", - "population": 195, - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST_CENTRAL", - "population": 285, - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST_CENTRAL", - "population": 306, - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST_CENTRAL", - "population": 179, - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST_CENTRAL", - "population": 219, - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHWEST", - "population": 123, - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHWEST", - "population": 67, - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHWEST", - "population": 93, - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHWEST", - "population": 93, - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHWEST", - "population": 39, - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTH_CENTRAL", - "population": 325, - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTH_CENTRAL", - "population": 91, - "raceOrEthnicity": "BLACK", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTH_CENTRAL", - "population": 181, - "raceOrEthnicity": "HISPANIC", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTH_CENTRAL", - "population": 245, - "raceOrEthnicity": "WHITE", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTH_CENTRAL", - "population": 216, - "raceOrEthnicity": "OTHER", - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "NORTHEAST", - "population": 1535, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "NORTHEAST", - "population": 943, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "SOUTHEAST", - "population": 900, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "SOUTHEAST", - "population": 396, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "SOUTH_CENTRAL", - "population": 1665, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "SOUTH_CENTRAL", - "population": 855, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "SOUTHWEST", - "population": 286, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "SOUTHWEST", - "population": 630, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "EAST_CENTRAL", - "population": 496, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "EAST_CENTRAL", - "population": 1269, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "NORTHEAST_CENTRAL", - "population": 164, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "NORTHEAST_CENTRAL", - "population": 1020, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "NORTHWEST", - "population": 238, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "NORTHWEST", - "population": 177, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "MALE", - "locality": "NORTH_CENTRAL", - "population": 584, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "FEMALE", - "locality": "NORTH_CENTRAL", - "population": 476, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", "locality": "ALL", - "population": 1275, - "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + "month": 7, + "rate": 0.5150300601202404, + "rateDenominator": 499, + "rateNumerator": 257, + "year": 2019, }, Object { - "ageBucket": "ALL", - "gender": "ALL", "locality": "ALL", - "population": 2099, - "raceOrEthnicity": "BLACK", + "month": 3, + "rate": 0.46303501945525294, + "rateDenominator": 257, + "rateNumerator": 119, + "year": 2020, }, Object { - "ageBucket": "ALL", - "gender": "ALL", "locality": "ALL", - "population": 2433, - "raceOrEthnicity": "HISPANIC", + "month": 2, + "rate": 0.5577689243027888, + "rateDenominator": 251, + "rateNumerator": 140, + "year": 2020, }, Object { - "ageBucket": "ALL", - "gender": "ALL", "locality": "ALL", - "population": 2821, - "raceOrEthnicity": "WHITE", + "month": 5, + "rate": 0.5354200988467874, + "rateDenominator": 607, + "rateNumerator": 325, + "year": 2018, }, Object { - "ageBucket": "ALL", - "gender": "ALL", "locality": "ALL", - "population": 3019, - "raceOrEthnicity": "OTHER", + "month": 5, + "rate": 0.5552825552825553, + "rateDenominator": 407, + "rateNumerator": 226, + "year": 2019, }, Object { - "ageBucket": "ALL", - "gender": "MALE", "locality": "ALL", - "population": 11107, - "raceOrEthnicity": "ALL", + "month": 8, + "rate": 0.5205479452054794, + "rateDenominator": 365, + "rateNumerator": 190, + "year": 2017, }, Object { - "ageBucket": "ALL", - "gender": "FEMALE", "locality": "ALL", - "population": 540, - "raceOrEthnicity": "ALL", - }, - Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST", - "population": 2478, - "raceOrEthnicity": "ALL", + "month": 4, + "rate": 0.5603217158176944, + "rateDenominator": 373, + "rateNumerator": 209, + "year": 2018, }, Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTHEAST", - "population": 1296, - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 12, + "rate": 0.49056603773584906, + "rateDenominator": 318, + "rateNumerator": 156, + "year": 2017, }, Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTH_CENTRAL", - "population": 2520, - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 2, + "rate": 0.4907749077490775, + "rateDenominator": 271, + "rateNumerator": 133, + "year": 2019, }, Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "SOUTHWEST", - "population": 917, - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 8, + "rate": 0.5728643216080402, + "rateDenominator": 597, + "rateNumerator": 342, + "year": 2019, }, Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "EAST_CENTRAL", - "population": 1766, - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 7, + "rate": 0.43529411764705883, + "rateDenominator": 85, + "rateNumerator": 37, + "year": 2020, }, Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHEAST_CENTRAL", - "population": 1185, - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 12, + "rate": 0.5694444444444444, + "rateDenominator": 360, + "rateNumerator": 205, + "year": 2019, }, Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTHWEST", - "population": 416, - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 8, + "rate": 0.5594713656387665, + "rateDenominator": 227, + "rateNumerator": 127, + "year": 2018, }, Object { - "ageBucket": "ALL", - "gender": "ALL", - "locality": "NORTH_CENTRAL", - "population": 1060, - "raceOrEthnicity": "ALL", + "locality": "ALL", + "month": 3, + "rate": 0.5683836589698046, + "rateDenominator": 563, + "rateNumerator": 320, + "year": 2019, }, ] `; -exports[`data fetching for metric SentenceTypesCurrent 1`] = ` +exports[`data fetching for metric SentencePopulationCurrent 1`] = ` Array [ Object { "ageBucket": "ALL", - "dualSentenceCount": 2056, "gender": "ALL", - "incarcerationCount": 6193, "locality": "ALL", - "probationCount": 3399, + "population": 11648, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "<25", - "dualSentenceCount": 267, "gender": "ALL", - "incarcerationCount": 1147, "locality": "ALL", - "probationCount": 96, + "population": 1510, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "25-29", - "dualSentenceCount": 538, "gender": "ALL", - "incarcerationCount": 1262, "locality": "ALL", - "probationCount": 1248, + "population": 3048, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "30-34", - "dualSentenceCount": 434, "gender": "ALL", - "incarcerationCount": 1420, "locality": "ALL", - "probationCount": 604, + "population": 2458, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "35-39", - "dualSentenceCount": 402, "gender": "ALL", - "incarcerationCount": 1875, "locality": "ALL", - "probationCount": 0, + "population": 2277, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "40<", - "dualSentenceCount": 416, "gender": "ALL", - "incarcerationCount": 337, "locality": "ALL", - "probationCount": 1601, + "population": 2354, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "<25", - "dualSentenceCount": 206, "gender": "ALL", - "incarcerationCount": 433, "locality": "NORTHEAST", - "probationCount": 528, + "population": 1167, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "25-29", - "dualSentenceCount": 48, "gender": "ALL", - "incarcerationCount": 218, "locality": "NORTHEAST", - "probationCount": 0, + "population": 266, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "30-34", - "dualSentenceCount": 37, "gender": "ALL", - "incarcerationCount": 71, "locality": "NORTHEAST", - "probationCount": 98, + "population": 206, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "35-39", - "dualSentenceCount": 123, "gender": "ALL", - "incarcerationCount": 394, "locality": "NORTHEAST", - "probationCount": 177, + "population": 694, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "40<", - "dualSentenceCount": 26, "gender": "ALL", - "incarcerationCount": 117, "locality": "NORTHEAST", - "probationCount": 0, + "population": 143, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "<25", - "dualSentenceCount": 33, "gender": "ALL", - "incarcerationCount": 149, "locality": "SOUTHEAST", - "probationCount": 0, + "population": 182, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "25-29", - "dualSentenceCount": 48, "gender": "ALL", - "incarcerationCount": 55, "locality": "SOUTHEAST", - "probationCount": 163, + "population": 266, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "30-34", - "dualSentenceCount": 58, "gender": "ALL", - "incarcerationCount": 175, "locality": "SOUTHEAST", - "probationCount": 90, + "population": 323, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "35-39", - "dualSentenceCount": 42, "gender": "ALL", - "incarcerationCount": 193, "locality": "SOUTHEAST", - "probationCount": 0, + "population": 235, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "40<", - "dualSentenceCount": 51, "gender": "ALL", - "incarcerationCount": 63, "locality": "SOUTHEAST", - "probationCount": 173, + "population": 287, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "<25", - "dualSentenceCount": 67, "gender": "ALL", - "incarcerationCount": 308, "locality": "SOUTH_CENTRAL", - "probationCount": 0, + "population": 375, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "25-29", - "dualSentenceCount": 103, "gender": "ALL", - "incarcerationCount": 259, "locality": "SOUTH_CENTRAL", - "probationCount": 220, + "population": 582, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "30-34", - "dualSentenceCount": 76, "gender": "ALL", - "incarcerationCount": 350, "locality": "SOUTH_CENTRAL", - "probationCount": 2, + "population": 428, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "35-39", - "dualSentenceCount": 106, "gender": "ALL", - "incarcerationCount": 245, "locality": "SOUTH_CENTRAL", - "probationCount": 245, + "population": 596, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "40<", - "dualSentenceCount": 95, "gender": "ALL", - "incarcerationCount": 113, "locality": "SOUTH_CENTRAL", - "probationCount": 329, + "population": 537, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "<25", - "dualSentenceCount": 45, "gender": "ALL", - "incarcerationCount": 144, "locality": "SOUTHWEST", - "probationCount": 64, + "population": 253, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "25-29", - "dualSentenceCount": 24, "gender": "ALL", - "incarcerationCount": 19, "locality": "SOUTHWEST", - "probationCount": 91, + "population": 134, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "30-34", - "dualSentenceCount": 31, "gender": "ALL", - "incarcerationCount": 79, "locality": "SOUTHWEST", - "probationCount": 64, + "population": 174, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "35-39", - "dualSentenceCount": 41, "gender": "ALL", - "incarcerationCount": 113, "locality": "SOUTHWEST", - "probationCount": 74, + "population": 228, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "40<", - "dualSentenceCount": 23, "gender": "ALL", - "incarcerationCount": 103, "locality": "SOUTHWEST", - "probationCount": 0, + "population": 126, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "<25", - "dualSentenceCount": 85, "gender": "ALL", - "incarcerationCount": 226, "locality": "EAST_CENTRAL", - "probationCount": 166, + "population": 477, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "25-29", - "dualSentenceCount": 76, "gender": "ALL", - "incarcerationCount": 268, "locality": "EAST_CENTRAL", - "probationCount": 81, + "population": 425, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "30-34", - "dualSentenceCount": 40, "gender": "ALL", - "incarcerationCount": 133, "locality": "EAST_CENTRAL", - "probationCount": 51, + "population": 224, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "35-39", - "dualSentenceCount": 65, "gender": "ALL", - "incarcerationCount": 283, "locality": "EAST_CENTRAL", - "probationCount": 20, + "population": 368, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "40<", - "dualSentenceCount": 48, "gender": "ALL", - "incarcerationCount": 29, "locality": "EAST_CENTRAL", - "probationCount": 193, + "population": 270, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "<25", - "dualSentenceCount": 47, "gender": "ALL", - "incarcerationCount": 212, "locality": "NORTHEAST_CENTRAL", - "probationCount": 4, + "population": 263, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "25-29", - "dualSentenceCount": 73, "gender": "ALL", - "incarcerationCount": 135, "locality": "NORTHEAST_CENTRAL", - "probationCount": 202, + "population": 410, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "30-34", - "dualSentenceCount": 14, "gender": "ALL", - "incarcerationCount": 47, "locality": "NORTHEAST_CENTRAL", - "probationCount": 13, + "population": 74, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "35-39", - "dualSentenceCount": 39, "gender": "ALL", - "incarcerationCount": 155, "locality": "NORTHEAST_CENTRAL", - "probationCount": 23, + "population": 217, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "40<", - "dualSentenceCount": 39, "gender": "ALL", - "incarcerationCount": 81, "locality": "NORTHEAST_CENTRAL", - "probationCount": 99, + "population": 219, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "<25", - "dualSentenceCount": 9, "gender": "ALL", - "incarcerationCount": 9, "locality": "NORTHWEST", - "probationCount": 27, + "population": 45, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "25-29", - "dualSentenceCount": 12, "gender": "ALL", - "incarcerationCount": 18, "locality": "NORTHWEST", - "probationCount": 34, + "population": 64, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "30-34", - "dualSentenceCount": 9, "gender": "ALL", - "incarcerationCount": 38, "locality": "NORTHWEST", - "probationCount": 0, + "population": 47, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "35-39", - "dualSentenceCount": 23, "gender": "ALL", - "incarcerationCount": 72, "locality": "NORTHWEST", - "probationCount": 29, + "population": 124, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "40<", - "dualSentenceCount": 24, "gender": "ALL", - "incarcerationCount": 78, "locality": "NORTHWEST", - "probationCount": 31, + "population": 133, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "<25", - "dualSentenceCount": 43, "gender": "ALL", - "incarcerationCount": 82, "locality": "NORTH_CENTRAL", - "probationCount": 114, + "population": 239, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "25-29", - "dualSentenceCount": 54, "gender": "ALL", - "incarcerationCount": 102, "locality": "NORTH_CENTRAL", - "probationCount": 145, + "population": 301, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "30-34", - "dualSentenceCount": 38, "gender": "ALL", - "incarcerationCount": 173, "locality": "NORTH_CENTRAL", - "probationCount": 0, + "population": 211, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "35-39", - "dualSentenceCount": 50, "gender": "ALL", - "incarcerationCount": 163, "locality": "NORTH_CENTRAL", - "probationCount": 69, + "population": 282, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "40<", - "dualSentenceCount": 5, "gender": "ALL", - "incarcerationCount": 19, "locality": "NORTH_CENTRAL", - "probationCount": 1, + "population": 25, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 56, "gender": "ALL", - "incarcerationCount": 88, "locality": "NORTHEAST", - "probationCount": 173, + "population": 317, "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 72, "gender": "ALL", - "incarcerationCount": 177, "locality": "NORTHEAST", - "probationCount": 157, + "population": 406, "raceOrEthnicity": "BLACK", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 106, "gender": "ALL", - "incarcerationCount": 435, "locality": "NORTHEAST", - "probationCount": 57, + "population": 598, "raceOrEthnicity": "HISPANIC", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 79, "gender": "ALL", - "incarcerationCount": 29, "locality": "NORTHEAST", - "probationCount": 335, + "population": 443, "raceOrEthnicity": "WHITE", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 126, "gender": "ALL", - "incarcerationCount": 587, "locality": "NORTHEAST", - "probationCount": 0, + "population": 713, "raceOrEthnicity": "OTHER", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 64, "gender": "ALL", - "incarcerationCount": 97, "locality": "SOUTHEAST", - "probationCount": 199, + "population": 360, "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 34, "gender": "ALL", - "incarcerationCount": 153, "locality": "SOUTHEAST", - "probationCount": 0, + "population": 187, "raceOrEthnicity": "BLACK", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 53, "gender": "ALL", - "incarcerationCount": 143, "locality": "SOUTHEAST", - "probationCount": 104, + "population": 300, "raceOrEthnicity": "HISPANIC", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 56, "gender": "ALL", - "incarcerationCount": 143, "locality": "SOUTHEAST", - "probationCount": 117, + "population": 316, "raceOrEthnicity": "WHITE", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 24, "gender": "ALL", - "incarcerationCount": 107, "locality": "SOUTHEAST", - "probationCount": 0, + "population": 131, "raceOrEthnicity": "OTHER", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 149, "gender": "ALL", - "incarcerationCount": 441, "locality": "SOUTH_CENTRAL", - "probationCount": 248, + "population": 838, "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 43, "gender": "ALL", - "incarcerationCount": 198, "locality": "SOUTH_CENTRAL", - "probationCount": 0, + "population": 241, "raceOrEthnicity": "BLACK", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 84, "gender": "ALL", - "incarcerationCount": 214, "locality": "SOUTH_CENTRAL", - "probationCount": 174, + "population": 472, "raceOrEthnicity": "HISPANIC", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 130, "gender": "ALL", - "incarcerationCount": 356, "locality": "SOUTH_CENTRAL", - "probationCount": 245, + "population": 731, "raceOrEthnicity": "WHITE", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 42, "gender": "ALL", - "incarcerationCount": 75, "locality": "SOUTH_CENTRAL", - "probationCount": 118, + "population": 235, "raceOrEthnicity": "OTHER", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 33, "gender": "ALL", - "incarcerationCount": 49, "locality": "SOUTHWEST", - "probationCount": 99, + "population": 181, "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 68, "gender": "ALL", - "incarcerationCount": 144, "locality": "SOUTHWEST", - "probationCount": 169, + "population": 381, "raceOrEthnicity": "BLACK", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 17, "gender": "ALL", - "incarcerationCount": 18, "locality": "SOUTHWEST", - "probationCount": 58, + "population": 93, "raceOrEthnicity": "HISPANIC", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 27, "gender": "ALL", - "incarcerationCount": 120, "locality": "SOUTHWEST", - "probationCount": 0, + "population": 147, "raceOrEthnicity": "WHITE", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 20, "gender": "ALL", - "incarcerationCount": 92, "locality": "SOUTHWEST", - "probationCount": 0, + "population": 112, "raceOrEthnicity": "OTHER", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 101, "gender": "ALL", - "incarcerationCount": 208, "locality": "EAST_CENTRAL", - "probationCount": 257, + "population": 566, "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 59, "gender": "ALL", - "incarcerationCount": 266, "locality": "EAST_CENTRAL", - "probationCount": 7, + "population": 332, "raceOrEthnicity": "BLACK", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 36, "gender": "ALL", - "incarcerationCount": 162, "locality": "EAST_CENTRAL", - "probationCount": 0, + "population": 198, "raceOrEthnicity": "HISPANIC", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 74, "gender": "ALL", - "incarcerationCount": 110, "locality": "EAST_CENTRAL", - "probationCount": 233, + "population": 417, "raceOrEthnicity": "WHITE", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 45, "gender": "ALL", - "incarcerationCount": 153, "locality": "EAST_CENTRAL", - "probationCount": 52, + "population": 250, "raceOrEthnicity": "OTHER", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 35, "gender": "ALL", - "incarcerationCount": 137, "locality": "NORTHEAST_CENTRAL", - "probationCount": 23, + "population": 195, "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 51, "gender": "ALL", - "incarcerationCount": 76, "locality": "NORTHEAST_CENTRAL", - "probationCount": 158, + "population": 285, "raceOrEthnicity": "BLACK", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 54, "gender": "ALL", - "incarcerationCount": 171, "locality": "NORTHEAST_CENTRAL", - "probationCount": 81, + "population": 306, "raceOrEthnicity": "HISPANIC", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 32, "gender": "ALL", - "incarcerationCount": 147, "locality": "NORTHEAST_CENTRAL", - "probationCount": 0, + "population": 179, "raceOrEthnicity": "WHITE", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 39, "gender": "ALL", - "incarcerationCount": 76, "locality": "NORTHEAST_CENTRAL", - "probationCount": 104, + "population": 219, "raceOrEthnicity": "OTHER", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 22, "gender": "ALL", - "incarcerationCount": 46, "locality": "NORTHWEST", - "probationCount": 55, + "population": 123, "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 12, "gender": "ALL", - "incarcerationCount": 36, "locality": "NORTHWEST", - "probationCount": 19, + "population": 67, "raceOrEthnicity": "BLACK", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 17, "gender": "ALL", - "incarcerationCount": 54, "locality": "NORTHWEST", - "probationCount": 22, + "population": 93, "raceOrEthnicity": "HISPANIC", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 17, "gender": "ALL", - "incarcerationCount": 50, "locality": "NORTHWEST", - "probationCount": 26, + "population": 93, "raceOrEthnicity": "WHITE", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 7, "gender": "ALL", - "incarcerationCount": 32, "locality": "NORTHWEST", - "probationCount": 0, + "population": 39, "raceOrEthnicity": "OTHER", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 58, "gender": "ALL", - "incarcerationCount": 15, "locality": "NORTH_CENTRAL", - "probationCount": 252, + "population": 325, "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 17, "gender": "ALL", - "incarcerationCount": 29, "locality": "NORTH_CENTRAL", - "probationCount": 45, + "population": 91, "raceOrEthnicity": "BLACK", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 32, "gender": "ALL", - "incarcerationCount": 149, "locality": "NORTH_CENTRAL", - "probationCount": 0, + "population": 181, "raceOrEthnicity": "HISPANIC", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 44, "gender": "ALL", - "incarcerationCount": 185, "locality": "NORTH_CENTRAL", - "probationCount": 16, + "population": 245, "raceOrEthnicity": "WHITE", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 39, "gender": "ALL", - "incarcerationCount": 127, "locality": "NORTH_CENTRAL", - "probationCount": 50, + "population": 216, "raceOrEthnicity": "OTHER", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 271, "gender": "MALE", - "incarcerationCount": 822, "locality": "NORTHEAST", - "probationCount": 442, + "population": 1535, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 167, "gender": "FEMALE", - "incarcerationCount": 496, "locality": "NORTHEAST", - "probationCount": 280, + "population": 943, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 159, "gender": "MALE", - "incarcerationCount": 374, "locality": "SOUTHEAST", - "probationCount": 367, + "population": 900, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 70, "gender": "FEMALE", - "incarcerationCount": 315, "locality": "SOUTHEAST", - "probationCount": 11, + "population": 396, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 294, "gender": "MALE", - "incarcerationCount": 614, "locality": "SOUTH_CENTRAL", - "probationCount": 757, + "population": 1665, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 151, "gender": "FEMALE", - "incarcerationCount": 704, "locality": "SOUTH_CENTRAL", - "probationCount": 0, + "population": 855, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 51, "gender": "MALE", - "incarcerationCount": 235, "locality": "SOUTHWEST", - "probationCount": 0, + "population": 286, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 112, "gender": "FEMALE", - "incarcerationCount": 242, "locality": "SOUTHWEST", - "probationCount": 276, + "population": 630, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 88, "gender": "MALE", - "incarcerationCount": 335, "locality": "EAST_CENTRAL", - "probationCount": 73, + "population": 496, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 225, "gender": "FEMALE", - "incarcerationCount": 604, "locality": "EAST_CENTRAL", - "probationCount": 440, + "population": 1269, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 30, "gender": "MALE", - "incarcerationCount": 39, "locality": "NORTHEAST_CENTRAL", - "probationCount": 95, + "population": 164, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 181, "gender": "FEMALE", - "incarcerationCount": 591, "locality": "NORTHEAST_CENTRAL", - "probationCount": 248, + "population": 1020, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 43, "gender": "MALE", - "incarcerationCount": 159, "locality": "NORTHWEST", - "probationCount": 36, + "population": 238, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 32, "gender": "FEMALE", - "incarcerationCount": 62, "locality": "NORTHWEST", - "probationCount": 83, + "population": 177, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 104, "gender": "MALE", - "incarcerationCount": 319, "locality": "NORTH_CENTRAL", - "probationCount": 161, + "population": 584, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 84, "gender": "FEMALE", - "incarcerationCount": 245, "locality": "NORTH_CENTRAL", - "probationCount": 147, + "population": 476, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 225, "gender": "ALL", - "incarcerationCount": 1050, "locality": "ALL", - "probationCount": 0, + "population": 1275, "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 371, "gender": "ALL", - "incarcerationCount": 1613, "locality": "ALL", - "probationCount": 115, + "population": 2099, "raceOrEthnicity": "BLACK", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 430, "gender": "ALL", - "incarcerationCount": 422, "locality": "ALL", - "probationCount": 1581, + "population": 2433, "raceOrEthnicity": "HISPANIC", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 498, "gender": "ALL", - "incarcerationCount": 1946, "locality": "ALL", - "probationCount": 377, + "population": 2821, "raceOrEthnicity": "WHITE", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 533, "gender": "ALL", - "incarcerationCount": 1061, "locality": "ALL", - "probationCount": 1425, + "population": 3019, "raceOrEthnicity": "OTHER", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 1961, "gender": "MALE", - "incarcerationCount": 6034, "locality": "ALL", - "probationCount": 3112, + "population": 11107, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 96, "gender": "FEMALE", - "incarcerationCount": 159, "locality": "ALL", - "probationCount": 285, + "population": 540, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 438, "gender": "ALL", - "incarcerationCount": 1318, "locality": "NORTHEAST", - "probationCount": 722, + "population": 2478, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 229, "gender": "ALL", - "incarcerationCount": 689, "locality": "SOUTHEAST", - "probationCount": 378, + "population": 1296, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 445, "gender": "ALL", - "incarcerationCount": 1340, "locality": "SOUTH_CENTRAL", - "probationCount": 735, + "population": 2520, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 162, "gender": "ALL", - "incarcerationCount": 488, "locality": "SOUTHWEST", - "probationCount": 267, + "population": 917, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 312, "gender": "ALL", - "incarcerationCount": 939, "locality": "EAST_CENTRAL", - "probationCount": 515, + "population": 1766, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 210, "gender": "ALL", - "incarcerationCount": 630, "locality": "NORTHEAST_CENTRAL", - "probationCount": 345, + "population": 1185, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 74, "gender": "ALL", - "incarcerationCount": 221, "locality": "NORTHWEST", - "probationCount": 121, + "population": 416, "raceOrEthnicity": "ALL", }, Object { "ageBucket": "ALL", - "dualSentenceCount": 188, "gender": "ALL", - "incarcerationCount": 564, "locality": "NORTH_CENTRAL", - "probationCount": 308, + "population": 1060, + "raceOrEthnicity": "ALL", + }, +] +`; + +exports[`data fetching for metric SentenceTypesCurrent 1`] = ` +Array [ + Object { + "ageBucket": "ALL", + "dualSentenceCount": 2056, + "gender": "ALL", + "incarcerationCount": 6193, + "locality": "ALL", + "probationCount": 3399, + "raceOrEthnicity": "ALL", + }, +] +`; + +exports[`demographic filter 1`] = ` +Array [ + Object { + "ageBucket": "ALL", + "category": "abscond", + "count": 86, + "gender": "FEMALE", + "raceOrEthnicity": "ALL", + }, + Object { + "ageBucket": "ALL", + "category": "offend", + "count": 282, + "gender": "FEMALE", + "raceOrEthnicity": "ALL", + }, + Object { + "ageBucket": "ALL", + "category": "technical", + "count": 277, + "gender": "FEMALE", + "raceOrEthnicity": "ALL", + }, + Object { + "ageBucket": "ALL", + "category": "unknown", + "count": 72, + "gender": "FEMALE", + "raceOrEthnicity": "ALL", + }, + Object { + "ageBucket": "ALL", + "category": "abscond", + "count": 282, + "gender": "MALE", + "raceOrEthnicity": "ALL", + }, + Object { + "ageBucket": "ALL", + "category": "offend", + "count": 86, + "gender": "MALE", + "raceOrEthnicity": "ALL", + }, + Object { + "ageBucket": "ALL", + "category": "technical", + "count": 72, + "gender": "MALE", + "raceOrEthnicity": "ALL", + }, + Object { + "ageBucket": "ALL", + "category": "unknown", + "count": 108, + "gender": "MALE", + "raceOrEthnicity": "ALL", + }, +] +`; + +exports[`demographic filter 2`] = ` +Array [ + Object { + "ageBucket": "ALL", + "category": "abscond", + "count": 252, + "gender": "ALL", + "raceOrEthnicity": "HISPANIC", + }, + Object { + "ageBucket": "ALL", + "category": "offend", + "count": 252, + "gender": "ALL", + "raceOrEthnicity": "HISPANIC", + }, + Object { + "ageBucket": "ALL", + "category": "technical", + "count": 252, + "gender": "ALL", + "raceOrEthnicity": "HISPANIC", + }, + Object { + "ageBucket": "ALL", + "category": "unknown", + "count": 72, + "gender": "ALL", + "raceOrEthnicity": "HISPANIC", + }, + Object { + "ageBucket": "ALL", + "category": "abscond", + "count": 135, + "gender": "ALL", + "raceOrEthnicity": "WHITE", + }, + Object { + "ageBucket": "ALL", + "category": "offend", + "count": 45, + "gender": "ALL", + "raceOrEthnicity": "WHITE", + }, + Object { + "ageBucket": "ALL", + "category": "technical", + "count": 135, + "gender": "ALL", + "raceOrEthnicity": "WHITE", + }, + Object { + "ageBucket": "ALL", + "category": "unknown", + "count": 108, + "gender": "ALL", + "raceOrEthnicity": "WHITE", + }, + Object { + "ageBucket": "ALL", + "category": "abscond", + "count": 403, + "gender": "ALL", + "raceOrEthnicity": "BLACK", + }, + Object { + "ageBucket": "ALL", + "category": "offend", + "count": 45, + "gender": "ALL", + "raceOrEthnicity": "BLACK", + }, + Object { + "ageBucket": "ALL", + "category": "technical", + "count": 252, + "gender": "ALL", + "raceOrEthnicity": "BLACK", + }, + Object { + "ageBucket": "ALL", + "category": "unknown", + "count": 72, + "gender": "ALL", + "raceOrEthnicity": "BLACK", + }, + Object { + "ageBucket": "ALL", + "category": "abscond", + "count": 135, + "gender": "ALL", + "raceOrEthnicity": "OTHER", + }, + Object { + "ageBucket": "ALL", + "category": "offend", + "count": 277, + "gender": "ALL", + "raceOrEthnicity": "OTHER", + }, + Object { + "ageBucket": "ALL", + "category": "technical", + "count": 252, + "gender": "ALL", + "raceOrEthnicity": "OTHER", + }, + Object { + "ageBucket": "ALL", + "category": "unknown", + "count": 72, + "gender": "ALL", + "raceOrEthnicity": "OTHER", + }, + Object { + "ageBucket": "ALL", + "category": "abscond", + "count": 282, + "gender": "ALL", + "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + }, + Object { + "ageBucket": "ALL", + "category": "offend", + "count": 82, + "gender": "ALL", + "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + }, + Object { + "ageBucket": "ALL", + "category": "technical", + "count": 482, + "gender": "ALL", + "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + }, + Object { + "ageBucket": "ALL", + "category": "unknown", + "count": 72, + "gender": "ALL", + "raceOrEthnicity": "AMERICAN_INDIAN_ALASKAN_NATIVE", + }, +] +`; + +exports[`demographic filter 3`] = ` +Array [ + Object { + "ageBucket": "<25", + "category": "abscond", + "count": 45, + "gender": "ALL", + "raceOrEthnicity": "ALL", + }, + Object { + "ageBucket": "<25", + "category": "offend", + "count": 282, + "gender": "ALL", + "raceOrEthnicity": "ALL", + }, + Object { + "ageBucket": "<25", + "category": "technical", + "count": 282, + "gender": "ALL", + "raceOrEthnicity": "ALL", + }, + Object { + "ageBucket": "<25", + "category": "unknown", + "count": 108, + "gender": "ALL", + "raceOrEthnicity": "ALL", + }, + Object { + "ageBucket": "25-29", + "category": "abscond", + "count": 282, + "gender": "ALL", + "raceOrEthnicity": "ALL", + }, + Object { + "ageBucket": "25-29", + "category": "offend", + "count": 108, + "gender": "ALL", + "raceOrEthnicity": "ALL", + }, + Object { + "ageBucket": "25-29", + "category": "technical", + "count": 282, + "gender": "ALL", + "raceOrEthnicity": "ALL", + }, + Object { + "ageBucket": "25-29", + "category": "unknown", + "count": 108, + "gender": "ALL", + "raceOrEthnicity": "ALL", + }, + Object { + "ageBucket": "40<", + "category": "abscond", + "count": 0, + "gender": "ALL", + "raceOrEthnicity": "ALL", + }, + Object { + "ageBucket": "40<", + "category": "offend", + "count": 0, + "gender": "ALL", + "raceOrEthnicity": "ALL", + }, + Object { + "ageBucket": "40<", + "category": "technical", + "count": 282, + "gender": "ALL", + "raceOrEthnicity": "ALL", + }, + Object { + "ageBucket": "40<", + "category": "unknown", + "count": 108, + "gender": "ALL", + "raceOrEthnicity": "ALL", + }, + Object { + "ageBucket": "30-34", + "category": "abscond", + "count": 277, + "gender": "ALL", + "raceOrEthnicity": "ALL", + }, + Object { + "ageBucket": "30-34", + "category": "offend", + "count": 277, + "gender": "ALL", + "raceOrEthnicity": "ALL", + }, + Object { + "ageBucket": "30-34", + "category": "technical", + "count": 277, + "gender": "ALL", + "raceOrEthnicity": "ALL", + }, + Object { + "ageBucket": "30-34", + "category": "unknown", + "count": 0, + "gender": "ALL", + "raceOrEthnicity": "ALL", + }, + Object { + "ageBucket": "35-39", + "category": "abscond", + "count": 86, + "gender": "ALL", + "raceOrEthnicity": "ALL", + }, + Object { + "ageBucket": "35-39", + "category": "offend", + "count": 108, + "gender": "ALL", + "raceOrEthnicity": "ALL", + }, + Object { + "ageBucket": "35-39", + "category": "technical", + "count": 108, + "gender": "ALL", + "raceOrEthnicity": "ALL", + }, + Object { + "ageBucket": "35-39", + "category": "unknown", + "count": 45, + "gender": "ALL", "raceOrEthnicity": "ALL", }, ] diff --git a/spotlight-client/src/contentModels/createMetricMapping.ts b/spotlight-client/src/contentModels/createMetricMapping.ts new file mode 100644 index 00000000..38675a06 --- /dev/null +++ b/spotlight-client/src/contentModels/createMetricMapping.ts @@ -0,0 +1,367 @@ +// Recidiviz - a data platform for criminal justice reform +// Copyright (C) 2021 Recidiviz, Inc. +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// ============================================================================= + +import { assertNever } from "assert-never"; +import { MetricTypeIdList, TenantContent, TenantId } from "../contentApi/types"; +import { + parolePopulationCurrent, + parolePopulationHistorical, + paroleProgramParticipationCurrent, + paroleRevocationReasons, + paroleSuccessRateDemographics, + paroleSuccessRateMonthly, + prisonAdmissionReasons, + prisonPopulationCurrent, + prisonPopulationHistorical, + prisonReleaseTypes, + prisonStayLengths, + probationPopulationCurrent, + probationPopulationHistorical, + probationProgramParticipationCurrent, + probationRevocationReasons, + probationSuccessRateDemographics, + probationSuccessRateMonthly, + recidivismRateAllFollowup, + recidivismRateConventionalFollowup, + sentencePopulationCurrent, + sentenceTypesCurrent, +} from "../metricsApi"; +import { MetricMapping } from "./types"; +import DemographicsByCategoryMetric from "./DemographicsByCategoryMetric"; +import HistoricalPopulationBreakdownMetric from "./HistoricalPopulationBreakdownMetric"; +import PopulationBreakdownByLocationMetric from "./PopulationBreakdownByLocationMetric"; +import ProgramParticipationCurrentMetric from "./ProgramParticipationCurrentMetric"; +import RecidivismRateMetric from "./RecidivismRateMetric"; +import SentenceTypeByLocationMetric from "./SentenceTypeByLocationMetric"; +import SupervisionSuccessRateDemographicsMetric from "./SupervisionSuccessRateDemographicsMetric"; +import SupervisionSuccessRateMonthlyMetric from "./SupervisionSuccessRateMonthlyMetric"; +import { NOFILTER_KEY, TOTAL_KEY } from "../metricsApi/utils"; + +type MetricMappingFactoryOptions = { + metadataMapping: TenantContent["metrics"]; + tenantId: TenantId; +}; +/** + * Factory function for converting a mapping of content objects by metric ID + * to a mapping of Metric instances by metric ID. Creating the entire mapping at once + * ensures that each ID maps to the proper Metric type without requiring further + * type guarding on the part of consumers. + */ +export default function createMetricMapping({ + metadataMapping, + tenantId, +}: MetricMappingFactoryOptions): MetricMapping { + const metricMapping: MetricMapping = new Map(); + + // to maintain type safety we iterate through all of the known metrics; + // iterating through the metadata object's keys widens the type to `string`, + // which prevents us from guaranteeing exhaustiveness at the type level + MetricTypeIdList.forEach((metricType) => { + // not all metrics are required; metadata object is the source of truth + // for which metrics to include + const metadata = metadataMapping[metricType]; + if (!metadata) { + return; + } + // this big ol' switch statement ensures that the type ID string union is properly narrowed, + // allowing for 1:1 correspondence between the ID and the typed Metric instance. + switch (metricType) { + case "SentencePopulationCurrent": + metricMapping.set( + metricType, + new PopulationBreakdownByLocationMetric({ + ...metadata, + tenantId, + defaultDemographicView: NOFILTER_KEY, + defaultLocalityId: NOFILTER_KEY, + dataTransformer: sentencePopulationCurrent, + sourceFileName: "sentence_type_by_district_by_demographics", + }) + ); + break; + case "SentenceTypesCurrent": + metricMapping.set( + metricType, + new SentenceTypeByLocationMetric({ + ...metadata, + tenantId, + defaultDemographicView: "total", + defaultLocalityId: TOTAL_KEY, + dataTransformer: sentenceTypesCurrent, + sourceFileName: "sentence_type_by_district_by_demographics", + }) + ); + break; + case "PrisonPopulationCurrent": + metricMapping.set( + metricType, + new PopulationBreakdownByLocationMetric({ + ...metadata, + tenantId, + defaultDemographicView: NOFILTER_KEY, + defaultLocalityId: NOFILTER_KEY, + dataTransformer: prisonPopulationCurrent, + sourceFileName: + "incarceration_population_by_facility_by_demographics", + }) + ); + break; + case "ProbationPopulationCurrent": + metricMapping.set( + metricType, + new PopulationBreakdownByLocationMetric({ + ...metadata, + tenantId, + defaultDemographicView: NOFILTER_KEY, + defaultLocalityId: NOFILTER_KEY, + dataTransformer: probationPopulationCurrent, + sourceFileName: + "supervision_population_by_district_by_demographics", + }) + ); + break; + case "ParolePopulationCurrent": + metricMapping.set( + metricType, + new PopulationBreakdownByLocationMetric({ + ...metadata, + tenantId, + defaultDemographicView: NOFILTER_KEY, + defaultLocalityId: NOFILTER_KEY, + dataTransformer: parolePopulationCurrent, + sourceFileName: + "supervision_population_by_district_by_demographics", + }) + ); + break; + case "PrisonPopulationHistorical": + metricMapping.set( + metricType, + new HistoricalPopulationBreakdownMetric({ + ...metadata, + tenantId, + defaultDemographicView: "total", + defaultLocalityId: undefined, + dataTransformer: prisonPopulationHistorical, + sourceFileName: "incarceration_population_by_month_by_demographics", + }) + ); + break; + case "ProbationPopulationHistorical": + metricMapping.set( + metricType, + new HistoricalPopulationBreakdownMetric({ + ...metadata, + tenantId, + defaultDemographicView: "total", + defaultLocalityId: undefined, + dataTransformer: probationPopulationHistorical, + sourceFileName: "supervision_population_by_month_by_demographics", + }) + ); + break; + case "ParolePopulationHistorical": + metricMapping.set( + metricType, + new HistoricalPopulationBreakdownMetric({ + ...metadata, + tenantId, + defaultDemographicView: "total", + defaultLocalityId: undefined, + dataTransformer: parolePopulationHistorical, + sourceFileName: "supervision_population_by_month_by_demographics", + }) + ); + break; + case "ProbationProgrammingCurrent": + metricMapping.set( + metricType, + new ProgramParticipationCurrentMetric({ + ...metadata, + tenantId, + defaultDemographicView: undefined, + defaultLocalityId: NOFILTER_KEY, + dataTransformer: probationProgramParticipationCurrent, + sourceFileName: "active_program_participation_by_region", + }) + ); + break; + case "ParoleProgrammingCurrent": + metricMapping.set( + metricType, + new ProgramParticipationCurrentMetric({ + ...metadata, + tenantId, + defaultDemographicView: undefined, + defaultLocalityId: NOFILTER_KEY, + dataTransformer: paroleProgramParticipationCurrent, + sourceFileName: "active_program_participation_by_region", + }) + ); + break; + case "ProbationSuccessHistorical": + metricMapping.set( + metricType, + new SupervisionSuccessRateMonthlyMetric({ + ...metadata, + tenantId, + defaultDemographicView: undefined, + defaultLocalityId: TOTAL_KEY, + dataTransformer: probationSuccessRateMonthly, + sourceFileName: "supervision_success_by_month", + }) + ); + break; + case "ParoleSuccessHistorical": + metricMapping.set( + metricType, + new SupervisionSuccessRateMonthlyMetric({ + ...metadata, + tenantId, + defaultDemographicView: undefined, + defaultLocalityId: TOTAL_KEY, + dataTransformer: paroleSuccessRateMonthly, + sourceFileName: "supervision_success_by_month", + }) + ); + break; + case "ProbationSuccessAggregate": + metricMapping.set( + metricType, + new SupervisionSuccessRateDemographicsMetric({ + ...metadata, + tenantId, + defaultDemographicView: "total", + defaultLocalityId: TOTAL_KEY, + dataTransformer: probationSuccessRateDemographics, + sourceFileName: "supervision_success_by_period_by_demographics", + }) + ); + break; + case "ParoleSuccessAggregate": + metricMapping.set( + metricType, + new SupervisionSuccessRateDemographicsMetric({ + ...metadata, + tenantId, + defaultDemographicView: "total", + defaultLocalityId: TOTAL_KEY, + dataTransformer: paroleSuccessRateDemographics, + sourceFileName: "supervision_success_by_period_by_demographics", + }) + ); + break; + case "ProbationRevocationsAggregate": + metricMapping.set( + metricType, + new DemographicsByCategoryMetric({ + ...metadata, + tenantId, + defaultDemographicView: "total", + defaultLocalityId: undefined, + dataTransformer: probationRevocationReasons, + sourceFileName: + "supervision_revocations_by_period_by_type_by_demographics", + }) + ); + break; + case "ParoleRevocationsAggregate": + metricMapping.set( + metricType, + new DemographicsByCategoryMetric({ + ...metadata, + tenantId, + defaultDemographicView: "total", + defaultLocalityId: undefined, + dataTransformer: paroleRevocationReasons, + sourceFileName: + "supervision_revocations_by_period_by_type_by_demographics", + }) + ); + break; + case "PrisonAdmissionReasonsCurrent": + metricMapping.set( + metricType, + new DemographicsByCategoryMetric({ + ...metadata, + tenantId, + defaultDemographicView: "total", + defaultLocalityId: undefined, + dataTransformer: prisonAdmissionReasons, + sourceFileName: "incarceration_population_by_admission_reason", + }) + ); + break; + case "PrisonReleaseTypeAggregate": + metricMapping.set( + metricType, + new DemographicsByCategoryMetric({ + ...metadata, + tenantId, + defaultDemographicView: "total", + defaultLocalityId: undefined, + dataTransformer: prisonReleaseTypes, + sourceFileName: "incarceration_releases_by_type_by_period", + }) + ); + break; + case "PrisonRecidivismRateHistorical": + metricMapping.set( + metricType, + new RecidivismRateMetric({ + ...metadata, + tenantId, + defaultDemographicView: "total", + defaultLocalityId: undefined, + dataTransformer: recidivismRateAllFollowup, + sourceFileName: "recidivism_rates_by_cohort_by_year", + }) + ); + break; + case "PrisonRecidivismRateSingleFollowupHistorical": + metricMapping.set( + metricType, + new RecidivismRateMetric({ + ...metadata, + tenantId, + defaultDemographicView: "total", + defaultLocalityId: undefined, + dataTransformer: recidivismRateConventionalFollowup, + sourceFileName: "recidivism_rates_by_cohort_by_year", + }) + ); + break; + case "PrisonStayLengthAggregate": + metricMapping.set( + metricType, + new DemographicsByCategoryMetric({ + ...metadata, + tenantId, + defaultDemographicView: "total", + defaultLocalityId: undefined, + dataTransformer: prisonStayLengths, + sourceFileName: "incarceration_lengths_by_demographics", + }) + ); + break; + default: + assertNever(metricType); + } + }); + + return metricMapping; +} diff --git a/spotlight-client/src/contentModels/types.ts b/spotlight-client/src/contentModels/types.ts index fb732593..9c38dcf5 100644 --- a/spotlight-client/src/contentModels/types.ts +++ b/spotlight-client/src/contentModels/types.ts @@ -15,7 +15,11 @@ // along with this program. If not, see . // ============================================================================= -import { CollectionTypeId, SystemNarrativeTypeId } from "../contentApi/types"; +import { + CollectionTypeId, + MetricTypeId, + SystemNarrativeTypeId, +} from "../contentApi/types"; import { DemographicsByCategoryRecord, HistoricalPopulationBreakdownRecord, @@ -27,8 +31,8 @@ import { SupervisionSuccessRateDemographicsRecord, } from "../metricsApi"; import type Collection from "./Collection"; -import Metric from "./Metric"; -import SystemNarrative from "./SystemNarrative"; +import type SystemNarrative from "./SystemNarrative"; +import type Metric from "./Metric"; // ======================================= // Collection types @@ -40,7 +44,7 @@ export type CollectionMap = Map; // Metric types // ======================================= -export type AnyRecord = +export type MetricRecord = | DemographicsByCategoryRecord | HistoricalPopulationBreakdownRecord | PopulationBreakdownByLocationRecord @@ -50,34 +54,7 @@ export type AnyRecord = | SupervisionSuccessRateMonthlyRecord | SupervisionSuccessRateDemographicsRecord; -export type AnyMetric = Metric; -export function isAnyMetric(metric: unknown): metric is AnyMetric { - return metric instanceof Metric; -} - -export type MetricMapping = { - SentencePopulationCurrent?: Metric; - SentenceTypesCurrent?: Metric; - PrisonPopulationCurrent?: Metric; - PrisonPopulationHistorical?: Metric; - PrisonAdmissionReasonsCurrent?: Metric; - PrisonStayLengthAggregate?: Metric; - PrisonReleaseTypeAggregate?: Metric; - PrisonRecidivismRateHistorical?: Metric; - PrisonRecidivismRateSingleFollowupHistorical?: Metric; - ProbationPopulationCurrent?: Metric; - ProbationPopulationHistorical?: Metric; - ProbationSuccessHistorical?: Metric; - ProbationSuccessAggregate?: Metric; - ProbationRevocationsAggregate?: Metric; - ProbationProgrammingCurrent?: Metric; - ParolePopulationCurrent?: Metric; - ParolePopulationHistorical?: Metric; - ParoleSuccessHistorical?: Metric; - ParoleSuccessAggregate?: Metric; - ParoleRevocationsAggregate?: Metric; - ParoleProgrammingCurrent?: Metric; -}; +export type MetricMapping = Map>; // ======================================= // Narrative types diff --git a/spotlight-client/src/metricsApi/index.ts b/spotlight-client/src/metricsApi/index.ts index 7538429d..d084e432 100644 --- a/spotlight-client/src/metricsApi/index.ts +++ b/spotlight-client/src/metricsApi/index.ts @@ -24,3 +24,4 @@ export * from "./SentenceTypeByLocationRecord"; export * from "./SupervisionSuccessRateDemographicsRecord"; export * from "./SupervisionSuccessRateMonthlyRecord"; export * from "./fetchMetrics"; +export * from "./utils"; diff --git a/spotlight-client/src/metricsApi/utils.ts b/spotlight-client/src/metricsApi/utils.ts index ace5ba04..b2e3d8c4 100644 --- a/spotlight-client/src/metricsApi/utils.ts +++ b/spotlight-client/src/metricsApi/utils.ts @@ -20,6 +20,8 @@ import { RawMetricData } from "./fetchMetrics"; type TotalIdentifier = "ALL"; +type NoFilterIdentifier = "nofilter"; + type RaceIdentifier = | TotalIdentifier | "AMERICAN_INDIAN_ALASKAN_NATIVE" @@ -72,3 +74,67 @@ export function recordIsParole(record: ValuesType): boolean { export function recordIsProbation(record: ValuesType): boolean { return record.supervision_type === "PROBATION"; } + +export type DemographicView = + | "total" + | "race" + | "gender" + | "age" + | NoFilterIdentifier; + +const DIMENSION_DATA_KEYS: Record< + Exclude, + keyof DemographicFields +> = { + age: "ageBucket", + gender: "gender", + race: "raceOrEthnicity", +}; + +export const TOTAL_KEY: TotalIdentifier = "ALL"; + +export const NOFILTER_KEY: NoFilterIdentifier = "nofilter"; + +/** + * Returns a filter predicate for the specified demographic view + * that will exclude totals and breakdowns for all other views. + * Respects a special bypass value (see `NOFILTER_KEY`) + */ +export function recordIsTotalByDimension( + demographicView: DemographicView +): (record: DemographicFields) => boolean { + if (demographicView === NOFILTER_KEY) return () => true; + + const keysEnum = { ...DIMENSION_DATA_KEYS }; + + if (demographicView !== "total") { + delete keysEnum[demographicView]; + } + + const otherDataKeys = Object.values(keysEnum); + + return (record) => { + let match = true; + if (demographicView !== "total") { + // filter out totals + match = + match && record[DIMENSION_DATA_KEYS[demographicView]] !== TOTAL_KEY; + } + + // filter out subset permutations + match = match && otherDataKeys.every((key) => record[key] === TOTAL_KEY); + + return match; + }; +} + +/** + * Returns a filter predicate for the specified locality value + * that respects a special bypass value (see `NOFILTER_KEY`) + */ +export function recordMatchesLocality( + locality: string +): (record: LocalityFields) => boolean { + if (locality === NOFILTER_KEY) return () => true; + return (record) => record.locality === locality; +}