1,828 lines · 2 files · 164.5 kB
cases/54-bump-ranking/example.tsx116 lines · entry
cases/54-bump-ranking/example.tsx
import { Chart } from '@tanstack/charts/react/tooltip'
import { tooltip as exampleTooltip } from '@tanstack/charts/tooltip'
import {
d3Curve,
defineChart,
dot,
lineY,
rank,
select,
text,
} from '@tanstack/charts'
import { scaleLinear, scaleUtc } from 'd3-scale'
import { curveBumpX } from 'd3-shape'
import { industries } from '@tanstack/charts-data/industries'
const colors = ['#2563eb', '#ea580c', '#059669', '#7c3aed', '#db2777']
const includedIndustries = [
'Wholesale and Retail Trade',
'Manufacturing',
'Leisure and hospitality',
'Business services',
'Construction',
] as const
const includedIndustrySet: ReadonlySet<string> = new Set(includedIndustries)
const observations = industries.filter(
(row) =>
row.date.getUTCMonth() === 0 &&
row.date.getUTCFullYear() >= 2004 &&
includedIndustrySet.has(row.industry),
)
export const createExampleChart = (input?: ChartOptions) => {
const rows = rank(observations, {
by: 'date',
value: 'unemployed',
order: 'descending',
ties: 'competition',
})
const labels = select(rows, {
by: 'industry',
value: (datum) => datum.date.getTime(),
select: 'max',
})
return defineChart(
{
marks: [
lineY(rows, {
id: 'industry-ranks',
x: 'date',
y: 'rank',
color: 'industry',
curve: d3Curve(curveBumpX),
strokeWidth: 2.25,
}),
dot(rows, {
id: 'industry-rank-points',
x: 'date',
y: 'rank',
color: 'industry',
r: 3,
}),
...(input?.preview === true
? []
: [
text(labels, {
id: 'newest-industry-labels',
x: 'date',
y: 'rank',
text: 'industry',
color: 'industry',
anchor: 'start',
dx: 6,
}),
]),
],
scales: {
x: {
scale: scaleUtc,
axis: {
ticks: { count: 7, format: (date) => `${date.getUTCFullYear()}` },
label: 'Year',
},
},
y: {
scale: scaleLinear().domain([5.2, 0.8]),
grid: true,
axis: {
ticks: { count: 5, format: (value) => `#${value}` },
label: 'Rank',
},
},
},
color: {
domain: includedIndustries,
range: colors,
},
},
{ keyboard: true, tooltip: exampleTooltip },
)
}
export interface ChartOptions {
preview?: boolean
}
export const exampleAriaLabel = 'Annual unemployment rank by industry'
export const chart = createExampleChart({
preview: false,
})
export default function Example() {
return <Chart ariaLabel={exampleAriaLabel} definition={chart} height={480} />
}packages/charts-demo-data/src/industries.js1,712 lines · dependency
packages/charts-demo-data/src/industries.js
// Generated by scripts/sync-demo-data.mjs from industries.csv.
// Do not edit this file directly.
export const industries = [
{date: new Date("2000-01-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1000},
{date: new Date("2000-01-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 734},
{date: new Date("2000-01-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 782},
{date: new Date("2000-01-01T00:00:00.000Z"), industry: "Business services", unemployed: 655},
{date: new Date("2000-01-01T00:00:00.000Z"), industry: "Construction", unemployed: 745},
{date: new Date("2000-01-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 353},
{date: new Date("2000-01-01T00:00:00.000Z"), industry: "Government", unemployed: 430},
{date: new Date("2000-01-01T00:00:00.000Z"), industry: "Finance", unemployed: 228},
{date: new Date("2000-01-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 239},
{date: new Date("2000-01-01T00:00:00.000Z"), industry: "Other", unemployed: 274},
{date: new Date("2000-01-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 236},
{date: new Date("2000-01-01T00:00:00.000Z"), industry: "Information", unemployed: 125},
{date: new Date("2000-01-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 154},
{date: new Date("2000-01-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 19},
{date: new Date("2000-02-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1023},
{date: new Date("2000-02-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 694},
{date: new Date("2000-02-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 779},
{date: new Date("2000-02-01T00:00:00.000Z"), industry: "Business services", unemployed: 587},
{date: new Date("2000-02-01T00:00:00.000Z"), industry: "Construction", unemployed: 812},
{date: new Date("2000-02-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 349},
{date: new Date("2000-02-01T00:00:00.000Z"), industry: "Government", unemployed: 409},
{date: new Date("2000-02-01T00:00:00.000Z"), industry: "Finance", unemployed: 240},
{date: new Date("2000-02-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 262},
{date: new Date("2000-02-01T00:00:00.000Z"), industry: "Other", unemployed: 232},
{date: new Date("2000-02-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 223},
{date: new Date("2000-02-01T00:00:00.000Z"), industry: "Information", unemployed: 112},
{date: new Date("2000-02-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 173},
{date: new Date("2000-02-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 25},
{date: new Date("2000-03-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 983},
{date: new Date("2000-03-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 739},
{date: new Date("2000-03-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 789},
{date: new Date("2000-03-01T00:00:00.000Z"), industry: "Business services", unemployed: 623},
{date: new Date("2000-03-01T00:00:00.000Z"), industry: "Construction", unemployed: 669},
{date: new Date("2000-03-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 381},
{date: new Date("2000-03-01T00:00:00.000Z"), industry: "Government", unemployed: 311},
{date: new Date("2000-03-01T00:00:00.000Z"), industry: "Finance", unemployed: 226},
{date: new Date("2000-03-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 213},
{date: new Date("2000-03-01T00:00:00.000Z"), industry: "Other", unemployed: 247},
{date: new Date("2000-03-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 192},
{date: new Date("2000-03-01T00:00:00.000Z"), industry: "Information", unemployed: 140},
{date: new Date("2000-03-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 152},
{date: new Date("2000-03-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 17},
{date: new Date("2000-04-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 793},
{date: new Date("2000-04-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 736},
{date: new Date("2000-04-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 658},
{date: new Date("2000-04-01T00:00:00.000Z"), industry: "Business services", unemployed: 517},
{date: new Date("2000-04-01T00:00:00.000Z"), industry: "Construction", unemployed: 447},
{date: new Date("2000-04-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 329},
{date: new Date("2000-04-01T00:00:00.000Z"), industry: "Government", unemployed: 269},
{date: new Date("2000-04-01T00:00:00.000Z"), industry: "Finance", unemployed: 197},
{date: new Date("2000-04-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 218},
{date: new Date("2000-04-01T00:00:00.000Z"), industry: "Other", unemployed: 240},
{date: new Date("2000-04-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 191},
{date: new Date("2000-04-01T00:00:00.000Z"), industry: "Information", unemployed: 95},
{date: new Date("2000-04-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 135},
{date: new Date("2000-04-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 20},
{date: new Date("2000-05-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 821},
{date: new Date("2000-05-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 685},
{date: new Date("2000-05-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 675},
{date: new Date("2000-05-01T00:00:00.000Z"), industry: "Business services", unemployed: 561},
{date: new Date("2000-05-01T00:00:00.000Z"), industry: "Construction", unemployed: 397},
{date: new Date("2000-05-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 423},
{date: new Date("2000-05-01T00:00:00.000Z"), industry: "Government", unemployed: 370},
{date: new Date("2000-05-01T00:00:00.000Z"), industry: "Finance", unemployed: 195},
{date: new Date("2000-05-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 206},
{date: new Date("2000-05-01T00:00:00.000Z"), industry: "Other", unemployed: 254},
{date: new Date("2000-05-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 190},
{date: new Date("2000-05-01T00:00:00.000Z"), industry: "Information", unemployed: 131},
{date: new Date("2000-05-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 73},
{date: new Date("2000-05-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 27},
{date: new Date("2000-06-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 837},
{date: new Date("2000-06-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 621},
{date: new Date("2000-06-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 833},
{date: new Date("2000-06-01T00:00:00.000Z"), industry: "Business services", unemployed: 545},
{date: new Date("2000-06-01T00:00:00.000Z"), industry: "Construction", unemployed: 389},
{date: new Date("2000-06-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 452},
{date: new Date("2000-06-01T00:00:00.000Z"), industry: "Government", unemployed: 603},
{date: new Date("2000-06-01T00:00:00.000Z"), industry: "Finance", unemployed: 216},
{date: new Date("2000-06-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 188},
{date: new Date("2000-06-01T00:00:00.000Z"), industry: "Other", unemployed: 225},
{date: new Date("2000-06-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 183},
{date: new Date("2000-06-01T00:00:00.000Z"), industry: "Information", unemployed: 102},
{date: new Date("2000-06-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 109},
{date: new Date("2000-06-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 13},
{date: new Date("2000-07-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 792},
{date: new Date("2000-07-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 708},
{date: new Date("2000-07-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 786},
{date: new Date("2000-07-01T00:00:00.000Z"), industry: "Business services", unemployed: 636},
{date: new Date("2000-07-01T00:00:00.000Z"), industry: "Construction", unemployed: 384},
{date: new Date("2000-07-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 478},
{date: new Date("2000-07-01T00:00:00.000Z"), industry: "Government", unemployed: 545},
{date: new Date("2000-07-01T00:00:00.000Z"), industry: "Finance", unemployed: 190},
{date: new Date("2000-07-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 222},
{date: new Date("2000-07-01T00:00:00.000Z"), industry: "Other", unemployed: 202},
{date: new Date("2000-07-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 228},
{date: new Date("2000-07-01T00:00:00.000Z"), industry: "Information", unemployed: 144},
{date: new Date("2000-07-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 77},
{date: new Date("2000-07-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 16},
{date: new Date("2000-08-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 853},
{date: new Date("2000-08-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 685},
{date: new Date("2000-08-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 675},
{date: new Date("2000-08-01T00:00:00.000Z"), industry: "Business services", unemployed: 584},
{date: new Date("2000-08-01T00:00:00.000Z"), industry: "Construction", unemployed: 446},
{date: new Date("2000-08-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 450},
{date: new Date("2000-08-01T00:00:00.000Z"), industry: "Government", unemployed: 583},
{date: new Date("2000-08-01T00:00:00.000Z"), industry: "Finance", unemployed: 213},
{date: new Date("2000-08-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 186},
{date: new Date("2000-08-01T00:00:00.000Z"), industry: "Other", unemployed: 187},
{date: new Date("2000-08-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 198},
{date: new Date("2000-08-01T00:00:00.000Z"), industry: "Information", unemployed: 143},
{date: new Date("2000-08-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 110},
{date: new Date("2000-08-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 23},
{date: new Date("2000-09-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 791},
{date: new Date("2000-09-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 667},
{date: new Date("2000-09-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 636},
{date: new Date("2000-09-01T00:00:00.000Z"), industry: "Business services", unemployed: 559},
{date: new Date("2000-09-01T00:00:00.000Z"), industry: "Construction", unemployed: 386},
{date: new Date("2000-09-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 398},
{date: new Date("2000-09-01T00:00:00.000Z"), industry: "Government", unemployed: 408},
{date: new Date("2000-09-01T00:00:00.000Z"), industry: "Finance", unemployed: 187},
{date: new Date("2000-09-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 213},
{date: new Date("2000-09-01T00:00:00.000Z"), industry: "Other", unemployed: 220},
{date: new Date("2000-09-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 231},
{date: new Date("2000-09-01T00:00:00.000Z"), industry: "Information", unemployed: 130},
{date: new Date("2000-09-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 124},
{date: new Date("2000-09-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 25},
{date: new Date("2000-10-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 739},
{date: new Date("2000-10-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 693},
{date: new Date("2000-10-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 691},
{date: new Date("2000-10-01T00:00:00.000Z"), industry: "Business services", unemployed: 504},
{date: new Date("2000-10-01T00:00:00.000Z"), industry: "Construction", unemployed: 417},
{date: new Date("2000-10-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 339},
{date: new Date("2000-10-01T00:00:00.000Z"), industry: "Government", unemployed: 391},
{date: new Date("2000-10-01T00:00:00.000Z"), industry: "Finance", unemployed: 224},
{date: new Date("2000-10-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 226},
{date: new Date("2000-10-01T00:00:00.000Z"), industry: "Other", unemployed: 161},
{date: new Date("2000-10-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 153},
{date: new Date("2000-10-01T00:00:00.000Z"), industry: "Information", unemployed: 96},
{date: new Date("2000-10-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 113},
{date: new Date("2000-10-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 39},
{date: new Date("2000-11-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 701},
{date: new Date("2000-11-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 672},
{date: new Date("2000-11-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 694},
{date: new Date("2000-11-01T00:00:00.000Z"), industry: "Business services", unemployed: 547},
{date: new Date("2000-11-01T00:00:00.000Z"), industry: "Construction", unemployed: 482},
{date: new Date("2000-11-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 351},
{date: new Date("2000-11-01T00:00:00.000Z"), industry: "Government", unemployed: 384},
{date: new Date("2000-11-01T00:00:00.000Z"), industry: "Finance", unemployed: 184},
{date: new Date("2000-11-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 273},
{date: new Date("2000-11-01T00:00:00.000Z"), industry: "Other", unemployed: 217},
{date: new Date("2000-11-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 129},
{date: new Date("2000-11-01T00:00:00.000Z"), industry: "Information", unemployed: 117},
{date: new Date("2000-11-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 192},
{date: new Date("2000-11-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 11},
{date: new Date("2000-12-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 715},
{date: new Date("2000-12-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 653},
{date: new Date("2000-12-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 639},
{date: new Date("2000-12-01T00:00:00.000Z"), industry: "Business services", unemployed: 564},
{date: new Date("2000-12-01T00:00:00.000Z"), industry: "Construction", unemployed: 580},
{date: new Date("2000-12-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 293},
{date: new Date("2000-12-01T00:00:00.000Z"), industry: "Government", unemployed: 365},
{date: new Date("2000-12-01T00:00:00.000Z"), industry: "Finance", unemployed: 200},
{date: new Date("2000-12-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 178},
{date: new Date("2000-12-01T00:00:00.000Z"), industry: "Other", unemployed: 167},
{date: new Date("2000-12-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 168},
{date: new Date("2000-12-01T00:00:00.000Z"), industry: "Information", unemployed: 151},
{date: new Date("2000-12-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 196},
{date: new Date("2000-12-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 20},
{date: new Date("2001-01-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 908},
{date: new Date("2001-01-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 911},
{date: new Date("2001-01-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 806},
{date: new Date("2001-01-01T00:00:00.000Z"), industry: "Business services", unemployed: 734},
{date: new Date("2001-01-01T00:00:00.000Z"), industry: "Construction", unemployed: 836},
{date: new Date("2001-01-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 428},
{date: new Date("2001-01-01T00:00:00.000Z"), industry: "Government", unemployed: 463},
{date: new Date("2001-01-01T00:00:00.000Z"), industry: "Finance", unemployed: 232},
{date: new Date("2001-01-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 194},
{date: new Date("2001-01-01T00:00:00.000Z"), industry: "Other", unemployed: 197},
{date: new Date("2001-01-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 194},
{date: new Date("2001-01-01T00:00:00.000Z"), industry: "Information", unemployed: 161},
{date: new Date("2001-01-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 188},
{date: new Date("2001-01-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 11},
{date: new Date("2001-02-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 990},
{date: new Date("2001-02-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 902},
{date: new Date("2001-02-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 821},
{date: new Date("2001-02-01T00:00:00.000Z"), industry: "Business services", unemployed: 724},
{date: new Date("2001-02-01T00:00:00.000Z"), industry: "Construction", unemployed: 826},
{date: new Date("2001-02-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 423},
{date: new Date("2001-02-01T00:00:00.000Z"), industry: "Government", unemployed: 298},
{date: new Date("2001-02-01T00:00:00.000Z"), industry: "Finance", unemployed: 235},
{date: new Date("2001-02-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 209},
{date: new Date("2001-02-01T00:00:00.000Z"), industry: "Other", unemployed: 243},
{date: new Date("2001-02-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 189},
{date: new Date("2001-02-01T00:00:00.000Z"), industry: "Information", unemployed: 109},
{date: new Date("2001-02-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 193},
{date: new Date("2001-02-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 27},
{date: new Date("2001-03-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1037},
{date: new Date("2001-03-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 954},
{date: new Date("2001-03-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 817},
{date: new Date("2001-03-01T00:00:00.000Z"), industry: "Business services", unemployed: 652},
{date: new Date("2001-03-01T00:00:00.000Z"), industry: "Construction", unemployed: 683},
{date: new Date("2001-03-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 456},
{date: new Date("2001-03-01T00:00:00.000Z"), industry: "Government", unemployed: 355},
{date: new Date("2001-03-01T00:00:00.000Z"), industry: "Finance", unemployed: 211},
{date: new Date("2001-03-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 181},
{date: new Date("2001-03-01T00:00:00.000Z"), industry: "Other", unemployed: 200},
{date: new Date("2001-03-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 193},
{date: new Date("2001-03-01T00:00:00.000Z"), industry: "Information", unemployed: 148},
{date: new Date("2001-03-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 267},
{date: new Date("2001-03-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 14},
{date: new Date("2001-04-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 820},
{date: new Date("2001-04-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 855},
{date: new Date("2001-04-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 744},
{date: new Date("2001-04-01T00:00:00.000Z"), industry: "Business services", unemployed: 655},
{date: new Date("2001-04-01T00:00:00.000Z"), industry: "Construction", unemployed: 596},
{date: new Date("2001-04-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 341},
{date: new Date("2001-04-01T00:00:00.000Z"), industry: "Government", unemployed: 369},
{date: new Date("2001-04-01T00:00:00.000Z"), industry: "Finance", unemployed: 232},
{date: new Date("2001-04-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 216},
{date: new Date("2001-04-01T00:00:00.000Z"), industry: "Other", unemployed: 220},
{date: new Date("2001-04-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 232},
{date: new Date("2001-04-01T00:00:00.000Z"), industry: "Information", unemployed: 148},
{date: new Date("2001-04-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 140},
{date: new Date("2001-04-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 24},
{date: new Date("2001-05-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 875},
{date: new Date("2001-05-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 903},
{date: new Date("2001-05-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 731},
{date: new Date("2001-05-01T00:00:00.000Z"), industry: "Business services", unemployed: 652},
{date: new Date("2001-05-01T00:00:00.000Z"), industry: "Construction", unemployed: 478},
{date: new Date("2001-05-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 390},
{date: new Date("2001-05-01T00:00:00.000Z"), industry: "Government", unemployed: 361},
{date: new Date("2001-05-01T00:00:00.000Z"), industry: "Finance", unemployed: 191},
{date: new Date("2001-05-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 206},
{date: new Date("2001-05-01T00:00:00.000Z"), industry: "Other", unemployed: 172},
{date: new Date("2001-05-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 178},
{date: new Date("2001-05-01T00:00:00.000Z"), industry: "Information", unemployed: 164},
{date: new Date("2001-05-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 109},
{date: new Date("2001-05-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 34},
{date: new Date("2001-06-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 955},
{date: new Date("2001-06-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 956},
{date: new Date("2001-06-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 821},
{date: new Date("2001-06-01T00:00:00.000Z"), industry: "Business services", unemployed: 694},
{date: new Date("2001-06-01T00:00:00.000Z"), industry: "Construction", unemployed: 443},
{date: new Date("2001-06-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 476},
{date: new Date("2001-06-01T00:00:00.000Z"), industry: "Government", unemployed: 525},
{date: new Date("2001-06-01T00:00:00.000Z"), industry: "Finance", unemployed: 249},
{date: new Date("2001-06-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 187},
{date: new Date("2001-06-01T00:00:00.000Z"), industry: "Other", unemployed: 246},
{date: new Date("2001-06-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 242},
{date: new Date("2001-06-01T00:00:00.000Z"), industry: "Information", unemployed: 163},
{date: new Date("2001-06-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 130},
{date: new Date("2001-06-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 26},
{date: new Date("2001-07-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 833},
{date: new Date("2001-07-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1054},
{date: new Date("2001-07-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 813},
{date: new Date("2001-07-01T00:00:00.000Z"), industry: "Business services", unemployed: 731},
{date: new Date("2001-07-01T00:00:00.000Z"), industry: "Construction", unemployed: 447},
{date: new Date("2001-07-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 513},
{date: new Date("2001-07-01T00:00:00.000Z"), industry: "Government", unemployed: 548},
{date: new Date("2001-07-01T00:00:00.000Z"), industry: "Finance", unemployed: 289},
{date: new Date("2001-07-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 191},
{date: new Date("2001-07-01T00:00:00.000Z"), industry: "Other", unemployed: 228},
{date: new Date("2001-07-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 236},
{date: new Date("2001-07-01T00:00:00.000Z"), industry: "Information", unemployed: 206},
{date: new Date("2001-07-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 113},
{date: new Date("2001-07-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 17},
{date: new Date("2001-08-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 928},
{date: new Date("2001-08-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1023},
{date: new Date("2001-08-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 767},
{date: new Date("2001-08-01T00:00:00.000Z"), industry: "Business services", unemployed: 790},
{date: new Date("2001-08-01T00:00:00.000Z"), industry: "Construction", unemployed: 522},
{date: new Date("2001-08-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 595},
{date: new Date("2001-08-01T00:00:00.000Z"), industry: "Government", unemployed: 540},
{date: new Date("2001-08-01T00:00:00.000Z"), industry: "Finance", unemployed: 256},
{date: new Date("2001-08-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 243},
{date: new Date("2001-08-01T00:00:00.000Z"), industry: "Other", unemployed: 241},
{date: new Date("2001-08-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 226},
{date: new Date("2001-08-01T00:00:00.000Z"), industry: "Information", unemployed: 210},
{date: new Date("2001-08-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 141},
{date: new Date("2001-08-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 18},
{date: new Date("2001-09-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 936},
{date: new Date("2001-09-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 996},
{date: new Date("2001-09-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 900},
{date: new Date("2001-09-01T00:00:00.000Z"), industry: "Business services", unemployed: 810},
{date: new Date("2001-09-01T00:00:00.000Z"), industry: "Construction", unemployed: 489},
{date: new Date("2001-09-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 455},
{date: new Date("2001-09-01T00:00:00.000Z"), industry: "Government", unemployed: 438},
{date: new Date("2001-09-01T00:00:00.000Z"), industry: "Finance", unemployed: 268},
{date: new Date("2001-09-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 256},
{date: new Date("2001-09-01T00:00:00.000Z"), industry: "Other", unemployed: 225},
{date: new Date("2001-09-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 214},
{date: new Date("2001-09-01T00:00:00.000Z"), industry: "Information", unemployed: 219},
{date: new Date("2001-09-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 101},
{date: new Date("2001-09-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 23},
{date: new Date("2001-10-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 941},
{date: new Date("2001-10-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1065},
{date: new Date("2001-10-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 903},
{date: new Date("2001-10-01T00:00:00.000Z"), industry: "Business services", unemployed: 910},
{date: new Date("2001-10-01T00:00:00.000Z"), industry: "Construction", unemployed: 535},
{date: new Date("2001-10-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 486},
{date: new Date("2001-10-01T00:00:00.000Z"), industry: "Government", unemployed: 429},
{date: new Date("2001-10-01T00:00:00.000Z"), industry: "Finance", unemployed: 281},
{date: new Date("2001-10-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 247},
{date: new Date("2001-10-01T00:00:00.000Z"), industry: "Other", unemployed: 239},
{date: new Date("2001-10-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 321},
{date: new Date("2001-10-01T00:00:00.000Z"), industry: "Information", unemployed: 233},
{date: new Date("2001-10-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 118},
{date: new Date("2001-10-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 32},
{date: new Date("2001-11-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1046},
{date: new Date("2001-11-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1108},
{date: new Date("2001-11-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 935},
{date: new Date("2001-11-01T00:00:00.000Z"), industry: "Business services", unemployed: 946},
{date: new Date("2001-11-01T00:00:00.000Z"), industry: "Construction", unemployed: 670},
{date: new Date("2001-11-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 516},
{date: new Date("2001-11-01T00:00:00.000Z"), industry: "Government", unemployed: 420},
{date: new Date("2001-11-01T00:00:00.000Z"), industry: "Finance", unemployed: 320},
{date: new Date("2001-11-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 234},
{date: new Date("2001-11-01T00:00:00.000Z"), industry: "Other", unemployed: 256},
{date: new Date("2001-11-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 302},
{date: new Date("2001-11-01T00:00:00.000Z"), industry: "Information", unemployed: 241},
{date: new Date("2001-11-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 145},
{date: new Date("2001-11-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 20},
{date: new Date("2001-12-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1074},
{date: new Date("2001-12-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1172},
{date: new Date("2001-12-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 938},
{date: new Date("2001-12-01T00:00:00.000Z"), industry: "Business services", unemployed: 921},
{date: new Date("2001-12-01T00:00:00.000Z"), industry: "Construction", unemployed: 785},
{date: new Date("2001-12-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 483},
{date: new Date("2001-12-01T00:00:00.000Z"), industry: "Government", unemployed: 419},
{date: new Date("2001-12-01T00:00:00.000Z"), industry: "Finance", unemployed: 258},
{date: new Date("2001-12-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 249},
{date: new Date("2001-12-01T00:00:00.000Z"), industry: "Other", unemployed: 277},
{date: new Date("2001-12-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 310},
{date: new Date("2001-12-01T00:00:00.000Z"), industry: "Information", unemployed: 275},
{date: new Date("2001-12-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 192},
{date: new Date("2001-12-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 27},
{date: new Date("2002-01-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1212},
{date: new Date("2002-01-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1377},
{date: new Date("2002-01-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 947},
{date: new Date("2002-01-01T00:00:00.000Z"), industry: "Business services", unemployed: 1120},
{date: new Date("2002-01-01T00:00:00.000Z"), industry: "Construction", unemployed: 1211},
{date: new Date("2002-01-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 586},
{date: new Date("2002-01-01T00:00:00.000Z"), industry: "Government", unemployed: 486},
{date: new Date("2002-01-01T00:00:00.000Z"), industry: "Finance", unemployed: 267},
{date: new Date("2002-01-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 263},
{date: new Date("2002-01-01T00:00:00.000Z"), industry: "Other", unemployed: 304},
{date: new Date("2002-01-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 368},
{date: new Date("2002-01-01T00:00:00.000Z"), industry: "Information", unemployed: 263},
{date: new Date("2002-01-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 195},
{date: new Date("2002-01-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 33},
{date: new Date("2002-02-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1264},
{date: new Date("2002-02-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1296},
{date: new Date("2002-02-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 973},
{date: new Date("2002-02-01T00:00:00.000Z"), industry: "Business services", unemployed: 973},
{date: new Date("2002-02-01T00:00:00.000Z"), industry: "Construction", unemployed: 1060},
{date: new Date("2002-02-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 590},
{date: new Date("2002-02-01T00:00:00.000Z"), industry: "Government", unemployed: 508},
{date: new Date("2002-02-01T00:00:00.000Z"), industry: "Finance", unemployed: 318},
{date: new Date("2002-02-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 250},
{date: new Date("2002-02-01T00:00:00.000Z"), industry: "Other", unemployed: 339},
{date: new Date("2002-02-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 331},
{date: new Date("2002-02-01T00:00:00.000Z"), industry: "Information", unemployed: 279},
{date: new Date("2002-02-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 187},
{date: new Date("2002-02-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 35},
{date: new Date("2002-03-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1269},
{date: new Date("2002-03-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1367},
{date: new Date("2002-03-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 976},
{date: new Date("2002-03-01T00:00:00.000Z"), industry: "Business services", unemployed: 964},
{date: new Date("2002-03-01T00:00:00.000Z"), industry: "Construction", unemployed: 1009},
{date: new Date("2002-03-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 540},
{date: new Date("2002-03-01T00:00:00.000Z"), industry: "Government", unemployed: 477},
{date: new Date("2002-03-01T00:00:00.000Z"), industry: "Finance", unemployed: 287},
{date: new Date("2002-03-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 217},
{date: new Date("2002-03-01T00:00:00.000Z"), industry: "Other", unemployed: 314},
{date: new Date("2002-03-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 313},
{date: new Date("2002-03-01T00:00:00.000Z"), industry: "Information", unemployed: 266},
{date: new Date("2002-03-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 269},
{date: new Date("2002-03-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 28},
{date: new Date("2002-04-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1222},
{date: new Date("2002-04-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1322},
{date: new Date("2002-04-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 953},
{date: new Date("2002-04-01T00:00:00.000Z"), industry: "Business services", unemployed: 951},
{date: new Date("2002-04-01T00:00:00.000Z"), industry: "Construction", unemployed: 855},
{date: new Date("2002-04-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 493},
{date: new Date("2002-04-01T00:00:00.000Z"), industry: "Government", unemployed: 447},
{date: new Date("2002-04-01T00:00:00.000Z"), industry: "Finance", unemployed: 292},
{date: new Date("2002-04-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 255},
{date: new Date("2002-04-01T00:00:00.000Z"), industry: "Other", unemployed: 268},
{date: new Date("2002-04-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 280},
{date: new Date("2002-04-01T00:00:00.000Z"), industry: "Information", unemployed: 257},
{date: new Date("2002-04-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 151},
{date: new Date("2002-04-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 33},
{date: new Date("2002-05-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1138},
{date: new Date("2002-05-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1194},
{date: new Date("2002-05-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1022},
{date: new Date("2002-05-01T00:00:00.000Z"), industry: "Business services", unemployed: 983},
{date: new Date("2002-05-01T00:00:00.000Z"), industry: "Construction", unemployed: 626},
{date: new Date("2002-05-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 533},
{date: new Date("2002-05-01T00:00:00.000Z"), industry: "Government", unemployed: 484},
{date: new Date("2002-05-01T00:00:00.000Z"), industry: "Finance", unemployed: 340},
{date: new Date("2002-05-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 264},
{date: new Date("2002-05-01T00:00:00.000Z"), industry: "Other", unemployed: 264},
{date: new Date("2002-05-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 257},
{date: new Date("2002-05-01T00:00:00.000Z"), industry: "Information", unemployed: 260},
{date: new Date("2002-05-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 89},
{date: new Date("2002-05-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 25},
{date: new Date("2002-06-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1240},
{date: new Date("2002-06-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1187},
{date: new Date("2002-06-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1034},
{date: new Date("2002-06-01T00:00:00.000Z"), industry: "Business services", unemployed: 1079},
{date: new Date("2002-06-01T00:00:00.000Z"), industry: "Construction", unemployed: 593},
{date: new Date("2002-06-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 638},
{date: new Date("2002-06-01T00:00:00.000Z"), industry: "Government", unemployed: 561},
{date: new Date("2002-06-01T00:00:00.000Z"), industry: "Finance", unemployed: 373},
{date: new Date("2002-06-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 246},
{date: new Date("2002-06-01T00:00:00.000Z"), industry: "Other", unemployed: 335},
{date: new Date("2002-06-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 274},
{date: new Date("2002-06-01T00:00:00.000Z"), industry: "Information", unemployed: 255},
{date: new Date("2002-06-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 89},
{date: new Date("2002-06-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 35},
{date: new Date("2002-07-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1132},
{date: new Date("2002-07-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1185},
{date: new Date("2002-07-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 999},
{date: new Date("2002-07-01T00:00:00.000Z"), industry: "Business services", unemployed: 1075},
{date: new Date("2002-07-01T00:00:00.000Z"), industry: "Construction", unemployed: 594},
{date: new Date("2002-07-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 671},
{date: new Date("2002-07-01T00:00:00.000Z"), industry: "Government", unemployed: 645},
{date: new Date("2002-07-01T00:00:00.000Z"), industry: "Finance", unemployed: 345},
{date: new Date("2002-07-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 249},
{date: new Date("2002-07-01T00:00:00.000Z"), industry: "Other", unemployed: 356},
{date: new Date("2002-07-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 270},
{date: new Date("2002-07-01T00:00:00.000Z"), industry: "Information", unemployed: 264},
{date: new Date("2002-07-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 114},
{date: new Date("2002-07-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 19},
{date: new Date("2002-08-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1170},
{date: new Date("2002-08-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1108},
{date: new Date("2002-08-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 884},
{date: new Date("2002-08-01T00:00:00.000Z"), industry: "Business services", unemployed: 926},
{date: new Date("2002-08-01T00:00:00.000Z"), industry: "Construction", unemployed: 654},
{date: new Date("2002-08-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 660},
{date: new Date("2002-08-01T00:00:00.000Z"), industry: "Government", unemployed: 596},
{date: new Date("2002-08-01T00:00:00.000Z"), industry: "Finance", unemployed: 343},
{date: new Date("2002-08-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 271},
{date: new Date("2002-08-01T00:00:00.000Z"), industry: "Other", unemployed: 353},
{date: new Date("2002-08-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 221},
{date: new Date("2002-08-01T00:00:00.000Z"), industry: "Information", unemployed: 270},
{date: new Date("2002-08-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 125},
{date: new Date("2002-08-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 32},
{date: new Date("2002-09-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1171},
{date: new Date("2002-09-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1076},
{date: new Date("2002-09-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 885},
{date: new Date("2002-09-01T00:00:00.000Z"), industry: "Business services", unemployed: 1007},
{date: new Date("2002-09-01T00:00:00.000Z"), industry: "Construction", unemployed: 615},
{date: new Date("2002-09-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 562},
{date: new Date("2002-09-01T00:00:00.000Z"), industry: "Government", unemployed: 530},
{date: new Date("2002-09-01T00:00:00.000Z"), industry: "Finance", unemployed: 299},
{date: new Date("2002-09-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 266},
{date: new Date("2002-09-01T00:00:00.000Z"), industry: "Other", unemployed: 281},
{date: new Date("2002-09-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 235},
{date: new Date("2002-09-01T00:00:00.000Z"), industry: "Information", unemployed: 231},
{date: new Date("2002-09-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 92},
{date: new Date("2002-09-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 42},
{date: new Date("2002-10-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1212},
{date: new Date("2002-10-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1046},
{date: new Date("2002-10-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 956},
{date: new Date("2002-10-01T00:00:00.000Z"), industry: "Business services", unemployed: 962},
{date: new Date("2002-10-01T00:00:00.000Z"), industry: "Construction", unemployed: 680},
{date: new Date("2002-10-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 517},
{date: new Date("2002-10-01T00:00:00.000Z"), industry: "Government", unemployed: 499},
{date: new Date("2002-10-01T00:00:00.000Z"), industry: "Finance", unemployed: 312},
{date: new Date("2002-10-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 275},
{date: new Date("2002-10-01T00:00:00.000Z"), industry: "Other", unemployed: 272},
{date: new Date("2002-10-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 262},
{date: new Date("2002-10-01T00:00:00.000Z"), industry: "Information", unemployed: 211},
{date: new Date("2002-10-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 97},
{date: new Date("2002-10-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 36},
{date: new Date("2002-11-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1242},
{date: new Date("2002-11-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1115},
{date: new Date("2002-11-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 978},
{date: new Date("2002-11-01T00:00:00.000Z"), industry: "Business services", unemployed: 1029},
{date: new Date("2002-11-01T00:00:00.000Z"), industry: "Construction", unemployed: 758},
{date: new Date("2002-11-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 493},
{date: new Date("2002-11-01T00:00:00.000Z"), industry: "Government", unemployed: 468},
{date: new Date("2002-11-01T00:00:00.000Z"), industry: "Finance", unemployed: 337},
{date: new Date("2002-11-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 297},
{date: new Date("2002-11-01T00:00:00.000Z"), industry: "Other", unemployed: 284},
{date: new Date("2002-11-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 233},
{date: new Date("2002-11-01T00:00:00.000Z"), industry: "Information", unemployed: 220},
{date: new Date("2002-11-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 137},
{date: new Date("2002-11-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 32},
{date: new Date("2002-12-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1150},
{date: new Date("2002-12-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1188},
{date: new Date("2002-12-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 922},
{date: new Date("2002-12-01T00:00:00.000Z"), industry: "Business services", unemployed: 1038},
{date: new Date("2002-12-01T00:00:00.000Z"), industry: "Construction", unemployed: 941},
{date: new Date("2002-12-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 558},
{date: new Date("2002-12-01T00:00:00.000Z"), industry: "Government", unemployed: 446},
{date: new Date("2002-12-01T00:00:00.000Z"), industry: "Finance", unemployed: 322},
{date: new Date("2002-12-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 327},
{date: new Date("2002-12-01T00:00:00.000Z"), industry: "Other", unemployed: 241},
{date: new Date("2002-12-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 243},
{date: new Date("2002-12-01T00:00:00.000Z"), industry: "Information", unemployed: 255},
{date: new Date("2002-12-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 120},
{date: new Date("2002-12-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 45},
{date: new Date("2003-01-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1342},
{date: new Date("2003-01-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1302},
{date: new Date("2003-01-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1049},
{date: new Date("2003-01-01T00:00:00.000Z"), industry: "Business services", unemployed: 1112},
{date: new Date("2003-01-01T00:00:00.000Z"), industry: "Construction", unemployed: 1196},
{date: new Date("2003-01-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 559},
{date: new Date("2003-01-01T00:00:00.000Z"), industry: "Government", unemployed: 571},
{date: new Date("2003-01-01T00:00:00.000Z"), industry: "Finance", unemployed: 327},
{date: new Date("2003-01-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 324},
{date: new Date("2003-01-01T00:00:00.000Z"), industry: "Other", unemployed: 304},
{date: new Date("2003-01-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 331},
{date: new Date("2003-01-01T00:00:00.000Z"), industry: "Information", unemployed: 243},
{date: new Date("2003-01-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 159},
{date: new Date("2003-01-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 54},
{date: new Date("2003-02-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1238},
{date: new Date("2003-02-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1229},
{date: new Date("2003-02-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1145},
{date: new Date("2003-02-01T00:00:00.000Z"), industry: "Business services", unemployed: 1140},
{date: new Date("2003-02-01T00:00:00.000Z"), industry: "Construction", unemployed: 1173},
{date: new Date("2003-02-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 576},
{date: new Date("2003-02-01T00:00:00.000Z"), industry: "Government", unemployed: 483},
{date: new Date("2003-02-01T00:00:00.000Z"), industry: "Finance", unemployed: 310},
{date: new Date("2003-02-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 304},
{date: new Date("2003-02-01T00:00:00.000Z"), industry: "Other", unemployed: 331},
{date: new Date("2003-02-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 316},
{date: new Date("2003-02-01T00:00:00.000Z"), industry: "Information", unemployed: 321},
{date: new Date("2003-02-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 172},
{date: new Date("2003-02-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 41},
{date: new Date("2003-03-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1179},
{date: new Date("2003-03-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1222},
{date: new Date("2003-03-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1035},
{date: new Date("2003-03-01T00:00:00.000Z"), industry: "Business services", unemployed: 1190},
{date: new Date("2003-03-01T00:00:00.000Z"), industry: "Construction", unemployed: 987},
{date: new Date("2003-03-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 518},
{date: new Date("2003-03-01T00:00:00.000Z"), industry: "Government", unemployed: 526},
{date: new Date("2003-03-01T00:00:00.000Z"), industry: "Finance", unemployed: 357},
{date: new Date("2003-03-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 279},
{date: new Date("2003-03-01T00:00:00.000Z"), industry: "Other", unemployed: 370},
{date: new Date("2003-03-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 319},
{date: new Date("2003-03-01T00:00:00.000Z"), industry: "Information", unemployed: 267},
{date: new Date("2003-03-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 161},
{date: new Date("2003-03-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 46},
{date: new Date("2003-04-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1201},
{date: new Date("2003-04-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1199},
{date: new Date("2003-04-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 986},
{date: new Date("2003-04-01T00:00:00.000Z"), industry: "Business services", unemployed: 1076},
{date: new Date("2003-04-01T00:00:00.000Z"), industry: "Construction", unemployed: 772},
{date: new Date("2003-04-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 611},
{date: new Date("2003-04-01T00:00:00.000Z"), industry: "Government", unemployed: 440},
{date: new Date("2003-04-01T00:00:00.000Z"), industry: "Finance", unemployed: 323},
{date: new Date("2003-04-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 248},
{date: new Date("2003-04-01T00:00:00.000Z"), industry: "Other", unemployed: 331},
{date: new Date("2003-04-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 274},
{date: new Date("2003-04-01T00:00:00.000Z"), industry: "Information", unemployed: 268},
{date: new Date("2003-04-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 154},
{date: new Date("2003-04-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 41},
{date: new Date("2003-05-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1247},
{date: new Date("2003-05-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1150},
{date: new Date("2003-05-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 955},
{date: new Date("2003-05-01T00:00:00.000Z"), industry: "Business services", unemployed: 1105},
{date: new Date("2003-05-01T00:00:00.000Z"), industry: "Construction", unemployed: 715},
{date: new Date("2003-05-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 618},
{date: new Date("2003-05-01T00:00:00.000Z"), industry: "Government", unemployed: 478},
{date: new Date("2003-05-01T00:00:00.000Z"), industry: "Finance", unemployed: 320},
{date: new Date("2003-05-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 271},
{date: new Date("2003-05-01T00:00:00.000Z"), industry: "Other", unemployed: 339},
{date: new Date("2003-05-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 260},
{date: new Date("2003-05-01T00:00:00.000Z"), industry: "Information", unemployed: 251},
{date: new Date("2003-05-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 133},
{date: new Date("2003-05-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 40},
{date: new Date("2003-06-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1434},
{date: new Date("2003-06-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1232},
{date: new Date("2003-06-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1048},
{date: new Date("2003-06-01T00:00:00.000Z"), industry: "Business services", unemployed: 1092},
{date: new Date("2003-06-01T00:00:00.000Z"), industry: "Construction", unemployed: 710},
{date: new Date("2003-06-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 769},
{date: new Date("2003-06-01T00:00:00.000Z"), industry: "Government", unemployed: 704},
{date: new Date("2003-06-01T00:00:00.000Z"), industry: "Finance", unemployed: 358},
{date: new Date("2003-06-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 295},
{date: new Date("2003-06-01T00:00:00.000Z"), industry: "Other", unemployed: 359},
{date: new Date("2003-06-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 300},
{date: new Date("2003-06-01T00:00:00.000Z"), industry: "Information", unemployed: 239},
{date: new Date("2003-06-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 94},
{date: new Date("2003-06-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 36},
{date: new Date("2003-07-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1387},
{date: new Date("2003-07-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1193},
{date: new Date("2003-07-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1020},
{date: new Date("2003-07-01T00:00:00.000Z"), industry: "Business services", unemployed: 1021},
{date: new Date("2003-07-01T00:00:00.000Z"), industry: "Construction", unemployed: 677},
{date: new Date("2003-07-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 697},
{date: new Date("2003-07-01T00:00:00.000Z"), industry: "Government", unemployed: 749},
{date: new Date("2003-07-01T00:00:00.000Z"), industry: "Finance", unemployed: 284},
{date: new Date("2003-07-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 270},
{date: new Date("2003-07-01T00:00:00.000Z"), industry: "Other", unemployed: 405},
{date: new Date("2003-07-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 289},
{date: new Date("2003-07-01T00:00:00.000Z"), industry: "Information", unemployed: 224},
{date: new Date("2003-07-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 113},
{date: new Date("2003-07-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 43},
{date: new Date("2003-08-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1161},
{date: new Date("2003-08-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1186},
{date: new Date("2003-08-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1050},
{date: new Date("2003-08-01T00:00:00.000Z"), industry: "Business services", unemployed: 881},
{date: new Date("2003-08-01T00:00:00.000Z"), industry: "Construction", unemployed: 650},
{date: new Date("2003-08-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 760},
{date: new Date("2003-08-01T00:00:00.000Z"), industry: "Government", unemployed: 745},
{date: new Date("2003-08-01T00:00:00.000Z"), industry: "Finance", unemployed: 342},
{date: new Date("2003-08-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 302},
{date: new Date("2003-08-01T00:00:00.000Z"), industry: "Other", unemployed: 373},
{date: new Date("2003-08-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 255},
{date: new Date("2003-08-01T00:00:00.000Z"), industry: "Information", unemployed: 224},
{date: new Date("2003-08-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 173},
{date: new Date("2003-08-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 20},
{date: new Date("2003-09-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1229},
{date: new Date("2003-09-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1175},
{date: new Date("2003-09-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 978},
{date: new Date("2003-09-01T00:00:00.000Z"), industry: "Business services", unemployed: 975},
{date: new Date("2003-09-01T00:00:00.000Z"), industry: "Construction", unemployed: 681},
{date: new Date("2003-09-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 649},
{date: new Date("2003-09-01T00:00:00.000Z"), industry: "Government", unemployed: 556},
{date: new Date("2003-09-01T00:00:00.000Z"), industry: "Finance", unemployed: 305},
{date: new Date("2003-09-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 287},
{date: new Date("2003-09-01T00:00:00.000Z"), industry: "Other", unemployed: 338},
{date: new Date("2003-09-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 255},
{date: new Date("2003-09-01T00:00:00.000Z"), industry: "Information", unemployed: 248},
{date: new Date("2003-09-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 98},
{date: new Date("2003-09-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 25},
{date: new Date("2003-10-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1189},
{date: new Date("2003-10-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1041},
{date: new Date("2003-10-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 933},
{date: new Date("2003-10-01T00:00:00.000Z"), industry: "Business services", unemployed: 1014},
{date: new Date("2003-10-01T00:00:00.000Z"), industry: "Construction", unemployed: 651},
{date: new Date("2003-10-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 639},
{date: new Date("2003-10-01T00:00:00.000Z"), industry: "Government", unemployed: 500},
{date: new Date("2003-10-01T00:00:00.000Z"), industry: "Finance", unemployed: 303},
{date: new Date("2003-10-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 338},
{date: new Date("2003-10-01T00:00:00.000Z"), industry: "Other", unemployed: 378},
{date: new Date("2003-10-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 260},
{date: new Date("2003-10-01T00:00:00.000Z"), industry: "Information", unemployed: 182},
{date: new Date("2003-10-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 136},
{date: new Date("2003-10-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 31},
{date: new Date("2003-11-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1156},
{date: new Date("2003-11-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1034},
{date: new Date("2003-11-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 990},
{date: new Date("2003-11-01T00:00:00.000Z"), industry: "Business services", unemployed: 948},
{date: new Date("2003-11-01T00:00:00.000Z"), industry: "Construction", unemployed: 690},
{date: new Date("2003-11-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 662},
{date: new Date("2003-11-01T00:00:00.000Z"), industry: "Government", unemployed: 542},
{date: new Date("2003-11-01T00:00:00.000Z"), industry: "Finance", unemployed: 311},
{date: new Date("2003-11-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 308},
{date: new Date("2003-11-01T00:00:00.000Z"), industry: "Other", unemployed: 357},
{date: new Date("2003-11-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 275},
{date: new Date("2003-11-01T00:00:00.000Z"), industry: "Information", unemployed: 257},
{date: new Date("2003-11-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 148},
{date: new Date("2003-11-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 34},
{date: new Date("2003-12-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1081},
{date: new Date("2003-12-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1025},
{date: new Date("2003-12-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 885},
{date: new Date("2003-12-01T00:00:00.000Z"), industry: "Business services", unemployed: 948},
{date: new Date("2003-12-01T00:00:00.000Z"), industry: "Construction", unemployed: 813},
{date: new Date("2003-12-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 620},
{date: new Date("2003-12-01T00:00:00.000Z"), industry: "Government", unemployed: 516},
{date: new Date("2003-12-01T00:00:00.000Z"), industry: "Finance", unemployed: 283},
{date: new Date("2003-12-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 299},
{date: new Date("2003-12-01T00:00:00.000Z"), industry: "Other", unemployed: 278},
{date: new Date("2003-12-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 267},
{date: new Date("2003-12-01T00:00:00.000Z"), industry: "Information", unemployed: 224},
{date: new Date("2003-12-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 137},
{date: new Date("2003-12-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 32},
{date: new Date("2004-01-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1389},
{date: new Date("2004-01-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1110},
{date: new Date("2004-01-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1097},
{date: new Date("2004-01-01T00:00:00.000Z"), industry: "Business services", unemployed: 1070},
{date: new Date("2004-01-01T00:00:00.000Z"), industry: "Construction", unemployed: 994},
{date: new Date("2004-01-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 662},
{date: new Date("2004-01-01T00:00:00.000Z"), industry: "Government", unemployed: 511},
{date: new Date("2004-01-01T00:00:00.000Z"), industry: "Finance", unemployed: 403},
{date: new Date("2004-01-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 302},
{date: new Date("2004-01-01T00:00:00.000Z"), industry: "Other", unemployed: 322},
{date: new Date("2004-01-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 243},
{date: new Date("2004-01-01T00:00:00.000Z"), industry: "Information", unemployed: 236},
{date: new Date("2004-01-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 184},
{date: new Date("2004-01-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 31},
{date: new Date("2004-02-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1369},
{date: new Date("2004-02-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1094},
{date: new Date("2004-02-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 987},
{date: new Date("2004-02-01T00:00:00.000Z"), industry: "Business services", unemployed: 964},
{date: new Date("2004-02-01T00:00:00.000Z"), industry: "Construction", unemployed: 1039},
{date: new Date("2004-02-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 608},
{date: new Date("2004-02-01T00:00:00.000Z"), industry: "Government", unemployed: 490},
{date: new Date("2004-02-01T00:00:00.000Z"), industry: "Finance", unemployed: 363},
{date: new Date("2004-02-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 260},
{date: new Date("2004-02-01T00:00:00.000Z"), industry: "Other", unemployed: 366},
{date: new Date("2004-02-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 291},
{date: new Date("2004-02-01T00:00:00.000Z"), industry: "Information", unemployed: 194},
{date: new Date("2004-02-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 168},
{date: new Date("2004-02-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 24},
{date: new Date("2004-03-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1386},
{date: new Date("2004-03-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1083},
{date: new Date("2004-03-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1039},
{date: new Date("2004-03-01T00:00:00.000Z"), industry: "Business services", unemployed: 999},
{date: new Date("2004-03-01T00:00:00.000Z"), industry: "Construction", unemployed: 1011},
{date: new Date("2004-03-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 584},
{date: new Date("2004-03-01T00:00:00.000Z"), industry: "Government", unemployed: 530},
{date: new Date("2004-03-01T00:00:00.000Z"), industry: "Finance", unemployed: 343},
{date: new Date("2004-03-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 260},
{date: new Date("2004-03-01T00:00:00.000Z"), industry: "Other", unemployed: 366},
{date: new Date("2004-03-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 284},
{date: new Date("2004-03-01T00:00:00.000Z"), industry: "Information", unemployed: 216},
{date: new Date("2004-03-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 153},
{date: new Date("2004-03-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 22},
{date: new Date("2004-04-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1248},
{date: new Date("2004-04-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1004},
{date: new Date("2004-04-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 925},
{date: new Date("2004-04-01T00:00:00.000Z"), industry: "Business services", unemployed: 752},
{date: new Date("2004-04-01T00:00:00.000Z"), industry: "Construction", unemployed: 849},
{date: new Date("2004-04-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 589},
{date: new Date("2004-04-01T00:00:00.000Z"), industry: "Government", unemployed: 433},
{date: new Date("2004-04-01T00:00:00.000Z"), industry: "Finance", unemployed: 312},
{date: new Date("2004-04-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 242},
{date: new Date("2004-04-01T00:00:00.000Z"), industry: "Other", unemployed: 347},
{date: new Date("2004-04-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 239},
{date: new Date("2004-04-01T00:00:00.000Z"), industry: "Information", unemployed: 168},
{date: new Date("2004-04-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 107},
{date: new Date("2004-04-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 34},
{date: new Date("2004-05-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1183},
{date: new Date("2004-05-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 966},
{date: new Date("2004-05-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 977},
{date: new Date("2004-05-01T00:00:00.000Z"), industry: "Business services", unemployed: 819},
{date: new Date("2004-05-01T00:00:00.000Z"), industry: "Construction", unemployed: 665},
{date: new Date("2004-05-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 570},
{date: new Date("2004-05-01T00:00:00.000Z"), industry: "Government", unemployed: 468},
{date: new Date("2004-05-01T00:00:00.000Z"), industry: "Finance", unemployed: 302},
{date: new Date("2004-05-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 287},
{date: new Date("2004-05-01T00:00:00.000Z"), industry: "Other", unemployed: 310},
{date: new Date("2004-05-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 230},
{date: new Date("2004-05-01T00:00:00.000Z"), industry: "Information", unemployed: 190},
{date: new Date("2004-05-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 99},
{date: new Date("2004-05-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 22},
{date: new Date("2004-06-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1182},
{date: new Date("2004-06-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 957},
{date: new Date("2004-06-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1189},
{date: new Date("2004-06-01T00:00:00.000Z"), industry: "Business services", unemployed: 814},
{date: new Date("2004-06-01T00:00:00.000Z"), industry: "Construction", unemployed: 668},
{date: new Date("2004-06-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 769},
{date: new Date("2004-06-01T00:00:00.000Z"), industry: "Government", unemployed: 580},
{date: new Date("2004-06-01T00:00:00.000Z"), industry: "Finance", unemployed: 335},
{date: new Date("2004-06-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 306},
{date: new Date("2004-06-01T00:00:00.000Z"), industry: "Other", unemployed: 326},
{date: new Date("2004-06-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 227},
{date: new Date("2004-06-01T00:00:00.000Z"), industry: "Information", unemployed: 172},
{date: new Date("2004-06-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 106},
{date: new Date("2004-06-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 27},
{date: new Date("2004-07-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1163},
{date: new Date("2004-07-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1019},
{date: new Date("2004-07-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 965},
{date: new Date("2004-07-01T00:00:00.000Z"), industry: "Business services", unemployed: 790},
{date: new Date("2004-07-01T00:00:00.000Z"), industry: "Construction", unemployed: 610},
{date: new Date("2004-07-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 725},
{date: new Date("2004-07-01T00:00:00.000Z"), industry: "Government", unemployed: 741},
{date: new Date("2004-07-01T00:00:00.000Z"), industry: "Finance", unemployed: 307},
{date: new Date("2004-07-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 291},
{date: new Date("2004-07-01T00:00:00.000Z"), industry: "Other", unemployed: 346},
{date: new Date("2004-07-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 231},
{date: new Date("2004-07-01T00:00:00.000Z"), industry: "Information", unemployed: 174},
{date: new Date("2004-07-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 140},
{date: new Date("2004-07-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 28},
{date: new Date("2004-08-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1079},
{date: new Date("2004-08-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 840},
{date: new Date("2004-08-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1010},
{date: new Date("2004-08-01T00:00:00.000Z"), industry: "Business services", unemployed: 845},
{date: new Date("2004-08-01T00:00:00.000Z"), industry: "Construction", unemployed: 563},
{date: new Date("2004-08-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 647},
{date: new Date("2004-08-01T00:00:00.000Z"), industry: "Government", unemployed: 676},
{date: new Date("2004-08-01T00:00:00.000Z"), industry: "Finance", unemployed: 312},
{date: new Date("2004-08-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 324},
{date: new Date("2004-08-01T00:00:00.000Z"), industry: "Other", unemployed: 341},
{date: new Date("2004-08-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 236},
{date: new Date("2004-08-01T00:00:00.000Z"), industry: "Information", unemployed: 191},
{date: new Date("2004-08-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 103},
{date: new Date("2004-08-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 10},
{date: new Date("2004-09-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1127},
{date: new Date("2004-09-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 852},
{date: new Date("2004-09-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 854},
{date: new Date("2004-09-01T00:00:00.000Z"), industry: "Business services", unemployed: 750},
{date: new Date("2004-09-01T00:00:00.000Z"), industry: "Construction", unemployed: 629},
{date: new Date("2004-09-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 593},
{date: new Date("2004-09-01T00:00:00.000Z"), industry: "Government", unemployed: 568},
{date: new Date("2004-09-01T00:00:00.000Z"), industry: "Finance", unemployed: 374},
{date: new Date("2004-09-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 362},
{date: new Date("2004-09-01T00:00:00.000Z"), industry: "Other", unemployed: 301},
{date: new Date("2004-09-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 208},
{date: new Date("2004-09-01T00:00:00.000Z"), industry: "Information", unemployed: 178},
{date: new Date("2004-09-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 88},
{date: new Date("2004-09-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 8},
{date: new Date("2004-10-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1138},
{date: new Date("2004-10-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 884},
{date: new Date("2004-10-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 853},
{date: new Date("2004-10-01T00:00:00.000Z"), industry: "Business services", unemployed: 781},
{date: new Date("2004-10-01T00:00:00.000Z"), industry: "Construction", unemployed: 635},
{date: new Date("2004-10-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 526},
{date: new Date("2004-10-01T00:00:00.000Z"), industry: "Government", unemployed: 561},
{date: new Date("2004-10-01T00:00:00.000Z"), industry: "Finance", unemployed: 358},
{date: new Date("2004-10-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 301},
{date: new Date("2004-10-01T00:00:00.000Z"), industry: "Other", unemployed: 300},
{date: new Date("2004-10-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 219},
{date: new Date("2004-10-01T00:00:00.000Z"), industry: "Information", unemployed: 185},
{date: new Date("2004-10-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 102},
{date: new Date("2004-10-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 15},
{date: new Date("2004-11-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1045},
{date: new Date("2004-11-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 905},
{date: new Date("2004-11-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 916},
{date: new Date("2004-11-01T00:00:00.000Z"), industry: "Business services", unemployed: 872},
{date: new Date("2004-11-01T00:00:00.000Z"), industry: "Construction", unemployed: 695},
{date: new Date("2004-11-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 570},
{date: new Date("2004-11-01T00:00:00.000Z"), industry: "Government", unemployed: 514},
{date: new Date("2004-11-01T00:00:00.000Z"), industry: "Finance", unemployed: 290},
{date: new Date("2004-11-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 353},
{date: new Date("2004-11-01T00:00:00.000Z"), industry: "Other", unemployed: 294},
{date: new Date("2004-11-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 217},
{date: new Date("2004-11-01T00:00:00.000Z"), industry: "Information", unemployed: 187},
{date: new Date("2004-11-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 131},
{date: new Date("2004-11-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 20},
{date: new Date("2004-12-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1058},
{date: new Date("2004-12-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 872},
{date: new Date("2004-12-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 850},
{date: new Date("2004-12-01T00:00:00.000Z"), industry: "Business services", unemployed: 875},
{date: new Date("2004-12-01T00:00:00.000Z"), industry: "Construction", unemployed: 870},
{date: new Date("2004-12-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 562},
{date: new Date("2004-12-01T00:00:00.000Z"), industry: "Government", unemployed: 499},
{date: new Date("2004-12-01T00:00:00.000Z"), industry: "Finance", unemployed: 290},
{date: new Date("2004-12-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 341},
{date: new Date("2004-12-01T00:00:00.000Z"), industry: "Other", unemployed: 276},
{date: new Date("2004-12-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 204},
{date: new Date("2004-12-01T00:00:00.000Z"), industry: "Information", unemployed: 173},
{date: new Date("2004-12-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 165},
{date: new Date("2004-12-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 16},
{date: new Date("2005-01-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1302},
{date: new Date("2005-01-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 889},
{date: new Date("2005-01-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 993},
{date: new Date("2005-01-01T00:00:00.000Z"), industry: "Business services", unemployed: 958},
{date: new Date("2005-01-01T00:00:00.000Z"), industry: "Construction", unemployed: 1079},
{date: new Date("2005-01-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 613},
{date: new Date("2005-01-01T00:00:00.000Z"), industry: "Government", unemployed: 555},
{date: new Date("2005-01-01T00:00:00.000Z"), industry: "Finance", unemployed: 252},
{date: new Date("2005-01-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 346},
{date: new Date("2005-01-01T00:00:00.000Z"), industry: "Other", unemployed: 290},
{date: new Date("2005-01-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 276},
{date: new Date("2005-01-01T00:00:00.000Z"), industry: "Information", unemployed: 168},
{date: new Date("2005-01-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 153},
{date: new Date("2005-01-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 29},
{date: new Date("2005-02-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1301},
{date: new Date("2005-02-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 889},
{date: new Date("2005-02-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1008},
{date: new Date("2005-02-01T00:00:00.000Z"), industry: "Business services", unemployed: 916},
{date: new Date("2005-02-01T00:00:00.000Z"), industry: "Construction", unemployed: 1150},
{date: new Date("2005-02-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 619},
{date: new Date("2005-02-01T00:00:00.000Z"), industry: "Government", unemployed: 472},
{date: new Date("2005-02-01T00:00:00.000Z"), industry: "Finance", unemployed: 301},
{date: new Date("2005-02-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 363},
{date: new Date("2005-02-01T00:00:00.000Z"), industry: "Other", unemployed: 325},
{date: new Date("2005-02-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 245},
{date: new Date("2005-02-01T00:00:00.000Z"), industry: "Information", unemployed: 204},
{date: new Date("2005-02-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 107},
{date: new Date("2005-02-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 25},
{date: new Date("2005-03-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1173},
{date: new Date("2005-03-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 879},
{date: new Date("2005-03-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 967},
{date: new Date("2005-03-01T00:00:00.000Z"), industry: "Business services", unemployed: 807},
{date: new Date("2005-03-01T00:00:00.000Z"), industry: "Construction", unemployed: 961},
{date: new Date("2005-03-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 614},
{date: new Date("2005-03-01T00:00:00.000Z"), industry: "Government", unemployed: 468},
{date: new Date("2005-03-01T00:00:00.000Z"), industry: "Finance", unemployed: 261},
{date: new Date("2005-03-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 312},
{date: new Date("2005-03-01T00:00:00.000Z"), industry: "Other", unemployed: 308},
{date: new Date("2005-03-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 267},
{date: new Date("2005-03-01T00:00:00.000Z"), industry: "Information", unemployed: 177},
{date: new Date("2005-03-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 139},
{date: new Date("2005-03-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 32},
{date: new Date("2005-04-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1131},
{date: new Date("2005-04-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 793},
{date: new Date("2005-04-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 882},
{date: new Date("2005-04-01T00:00:00.000Z"), industry: "Business services", unemployed: 714},
{date: new Date("2005-04-01T00:00:00.000Z"), industry: "Construction", unemployed: 693},
{date: new Date("2005-04-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 591},
{date: new Date("2005-04-01T00:00:00.000Z"), industry: "Government", unemployed: 478},
{date: new Date("2005-04-01T00:00:00.000Z"), industry: "Finance", unemployed: 255},
{date: new Date("2005-04-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 273},
{date: new Date("2005-04-01T00:00:00.000Z"), industry: "Other", unemployed: 306},
{date: new Date("2005-04-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 257},
{date: new Date("2005-04-01T00:00:00.000Z"), industry: "Information", unemployed: 178},
{date: new Date("2005-04-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 84},
{date: new Date("2005-04-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 19},
{date: new Date("2005-05-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1145},
{date: new Date("2005-05-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 743},
{date: new Date("2005-05-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 944},
{date: new Date("2005-05-01T00:00:00.000Z"), industry: "Business services", unemployed: 730},
{date: new Date("2005-05-01T00:00:00.000Z"), industry: "Construction", unemployed: 567},
{date: new Date("2005-05-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 648},
{date: new Date("2005-05-01T00:00:00.000Z"), industry: "Government", unemployed: 453},
{date: new Date("2005-05-01T00:00:00.000Z"), industry: "Finance", unemployed: 288},
{date: new Date("2005-05-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 299},
{date: new Date("2005-05-01T00:00:00.000Z"), industry: "Other", unemployed: 314},
{date: new Date("2005-05-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 223},
{date: new Date("2005-05-01T00:00:00.000Z"), industry: "Information", unemployed: 145},
{date: new Date("2005-05-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 66},
{date: new Date("2005-05-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 16},
{date: new Date("2005-06-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1197},
{date: new Date("2005-06-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 743},
{date: new Date("2005-06-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 950},
{date: new Date("2005-06-01T00:00:00.000Z"), industry: "Business services", unemployed: 743},
{date: new Date("2005-06-01T00:00:00.000Z"), industry: "Construction", unemployed: 559},
{date: new Date("2005-06-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 667},
{date: new Date("2005-06-01T00:00:00.000Z"), industry: "Government", unemployed: 681},
{date: new Date("2005-06-01T00:00:00.000Z"), industry: "Finance", unemployed: 307},
{date: new Date("2005-06-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 268},
{date: new Date("2005-06-01T00:00:00.000Z"), industry: "Other", unemployed: 291},
{date: new Date("2005-06-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 247},
{date: new Date("2005-06-01T00:00:00.000Z"), industry: "Information", unemployed: 160},
{date: new Date("2005-06-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 76},
{date: new Date("2005-06-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 25},
{date: new Date("2005-07-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1194},
{date: new Date("2005-07-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 883},
{date: new Date("2005-07-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 929},
{date: new Date("2005-07-01T00:00:00.000Z"), industry: "Business services", unemployed: 804},
{date: new Date("2005-07-01T00:00:00.000Z"), industry: "Construction", unemployed: 509},
{date: new Date("2005-07-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 635},
{date: new Date("2005-07-01T00:00:00.000Z"), industry: "Government", unemployed: 683},
{date: new Date("2005-07-01T00:00:00.000Z"), industry: "Finance", unemployed: 309},
{date: new Date("2005-07-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 282},
{date: new Date("2005-07-01T00:00:00.000Z"), industry: "Other", unemployed: 274},
{date: new Date("2005-07-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 222},
{date: new Date("2005-07-01T00:00:00.000Z"), industry: "Information", unemployed: 142},
{date: new Date("2005-07-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 69},
{date: new Date("2005-07-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 22},
{date: new Date("2005-08-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1130},
{date: new Date("2005-08-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 767},
{date: new Date("2005-08-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 844},
{date: new Date("2005-08-01T00:00:00.000Z"), industry: "Business services", unemployed: 728},
{date: new Date("2005-08-01T00:00:00.000Z"), industry: "Construction", unemployed: 561},
{date: new Date("2005-08-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 644},
{date: new Date("2005-08-01T00:00:00.000Z"), industry: "Government", unemployed: 664},
{date: new Date("2005-08-01T00:00:00.000Z"), industry: "Finance", unemployed: 300},
{date: new Date("2005-08-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 249},
{date: new Date("2005-08-01T00:00:00.000Z"), industry: "Other", unemployed: 306},
{date: new Date("2005-08-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 187},
{date: new Date("2005-08-01T00:00:00.000Z"), industry: "Information", unemployed: 156},
{date: new Date("2005-08-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 100},
{date: new Date("2005-08-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 12},
{date: new Date("2005-09-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1038},
{date: new Date("2005-09-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 775},
{date: new Date("2005-09-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 842},
{date: new Date("2005-09-01T00:00:00.000Z"), industry: "Business services", unemployed: 862},
{date: new Date("2005-09-01T00:00:00.000Z"), industry: "Construction", unemployed: 572},
{date: new Date("2005-09-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 658},
{date: new Date("2005-09-01T00:00:00.000Z"), industry: "Government", unemployed: 568},
{date: new Date("2005-09-01T00:00:00.000Z"), industry: "Finance", unemployed: 260},
{date: new Date("2005-09-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 282},
{date: new Date("2005-09-01T00:00:00.000Z"), industry: "Other", unemployed: 307},
{date: new Date("2005-09-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 211},
{date: new Date("2005-09-01T00:00:00.000Z"), industry: "Information", unemployed: 168},
{date: new Date("2005-09-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 127},
{date: new Date("2005-09-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 12},
{date: new Date("2005-10-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1050},
{date: new Date("2005-10-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 800},
{date: new Date("2005-10-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 796},
{date: new Date("2005-10-01T00:00:00.000Z"), industry: "Business services", unemployed: 748},
{date: new Date("2005-10-01T00:00:00.000Z"), industry: "Construction", unemployed: 519},
{date: new Date("2005-10-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 628},
{date: new Date("2005-10-01T00:00:00.000Z"), industry: "Government", unemployed: 502},
{date: new Date("2005-10-01T00:00:00.000Z"), industry: "Finance", unemployed: 255},
{date: new Date("2005-10-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 255},
{date: new Date("2005-10-01T00:00:00.000Z"), industry: "Other", unemployed: 319},
{date: new Date("2005-10-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 251},
{date: new Date("2005-10-01T00:00:00.000Z"), industry: "Information", unemployed: 162},
{date: new Date("2005-10-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 85},
{date: new Date("2005-10-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 2},
{date: new Date("2005-11-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1013},
{date: new Date("2005-11-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 823},
{date: new Date("2005-11-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 966},
{date: new Date("2005-11-01T00:00:00.000Z"), industry: "Business services", unemployed: 711},
{date: new Date("2005-11-01T00:00:00.000Z"), industry: "Construction", unemployed: 564},
{date: new Date("2005-11-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 677},
{date: new Date("2005-11-01T00:00:00.000Z"), industry: "Government", unemployed: 494},
{date: new Date("2005-11-01T00:00:00.000Z"), industry: "Finance", unemployed: 268},
{date: new Date("2005-11-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 319},
{date: new Date("2005-11-01T00:00:00.000Z"), industry: "Other", unemployed: 300},
{date: new Date("2005-11-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 199},
{date: new Date("2005-11-01T00:00:00.000Z"), industry: "Information", unemployed: 172},
{date: new Date("2005-11-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 118},
{date: new Date("2005-11-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 18},
{date: new Date("2005-12-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 968},
{date: new Date("2005-12-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 757},
{date: new Date("2005-12-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 930},
{date: new Date("2005-12-01T00:00:00.000Z"), industry: "Business services", unemployed: 788},
{date: new Date("2005-12-01T00:00:00.000Z"), industry: "Construction", unemployed: 813},
{date: new Date("2005-12-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 529},
{date: new Date("2005-12-01T00:00:00.000Z"), industry: "Government", unemployed: 393},
{date: new Date("2005-12-01T00:00:00.000Z"), industry: "Finance", unemployed: 204},
{date: new Date("2005-12-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 327},
{date: new Date("2005-12-01T00:00:00.000Z"), industry: "Other", unemployed: 269},
{date: new Date("2005-12-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 202},
{date: new Date("2005-12-01T00:00:00.000Z"), industry: "Information", unemployed: 128},
{date: new Date("2005-12-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 127},
{date: new Date("2005-12-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 23},
{date: new Date("2006-01-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1203},
{date: new Date("2006-01-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 778},
{date: new Date("2006-01-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 910},
{date: new Date("2006-01-01T00:00:00.000Z"), industry: "Business services", unemployed: 825},
{date: new Date("2006-01-01T00:00:00.000Z"), industry: "Construction", unemployed: 868},
{date: new Date("2006-01-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 593},
{date: new Date("2006-01-01T00:00:00.000Z"), industry: "Government", unemployed: 457},
{date: new Date("2006-01-01T00:00:00.000Z"), industry: "Finance", unemployed: 233},
{date: new Date("2006-01-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 341},
{date: new Date("2006-01-01T00:00:00.000Z"), industry: "Other", unemployed: 308},
{date: new Date("2006-01-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 287},
{date: new Date("2006-01-01T00:00:00.000Z"), industry: "Information", unemployed: 105},
{date: new Date("2006-01-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 140},
{date: new Date("2006-01-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 26},
{date: new Date("2006-02-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1141},
{date: new Date("2006-02-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 821},
{date: new Date("2006-02-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1040},
{date: new Date("2006-02-01T00:00:00.000Z"), industry: "Business services", unemployed: 841},
{date: new Date("2006-02-01T00:00:00.000Z"), industry: "Construction", unemployed: 836},
{date: new Date("2006-02-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 528},
{date: new Date("2006-02-01T00:00:00.000Z"), industry: "Government", unemployed: 472},
{date: new Date("2006-02-01T00:00:00.000Z"), industry: "Finance", unemployed: 268},
{date: new Date("2006-02-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 332},
{date: new Date("2006-02-01T00:00:00.000Z"), industry: "Other", unemployed: 281},
{date: new Date("2006-02-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 260},
{date: new Date("2006-02-01T00:00:00.000Z"), industry: "Information", unemployed: 119},
{date: new Date("2006-02-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 139},
{date: new Date("2006-02-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 25},
{date: new Date("2006-03-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1022},
{date: new Date("2006-03-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 701},
{date: new Date("2006-03-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 917},
{date: new Date("2006-03-01T00:00:00.000Z"), industry: "Business services", unemployed: 824},
{date: new Date("2006-03-01T00:00:00.000Z"), industry: "Construction", unemployed: 820},
{date: new Date("2006-03-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 563},
{date: new Date("2006-03-01T00:00:00.000Z"), industry: "Government", unemployed: 461},
{date: new Date("2006-03-01T00:00:00.000Z"), industry: "Finance", unemployed: 298},
{date: new Date("2006-03-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 300},
{date: new Date("2006-03-01T00:00:00.000Z"), industry: "Other", unemployed: 292},
{date: new Date("2006-03-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 263},
{date: new Date("2006-03-01T00:00:00.000Z"), industry: "Information", unemployed: 116},
{date: new Date("2006-03-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 117},
{date: new Date("2006-03-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 14},
{date: new Date("2006-04-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 972},
{date: new Date("2006-04-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 745},
{date: new Date("2006-04-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 882},
{date: new Date("2006-04-01T00:00:00.000Z"), industry: "Business services", unemployed: 644},
{date: new Date("2006-04-01T00:00:00.000Z"), industry: "Construction", unemployed: 674},
{date: new Date("2006-04-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 558},
{date: new Date("2006-04-01T00:00:00.000Z"), industry: "Government", unemployed: 414},
{date: new Date("2006-04-01T00:00:00.000Z"), industry: "Finance", unemployed: 293},
{date: new Date("2006-04-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 334},
{date: new Date("2006-04-01T00:00:00.000Z"), industry: "Other", unemployed: 266},
{date: new Date("2006-04-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 272},
{date: new Date("2006-04-01T00:00:00.000Z"), industry: "Information", unemployed: 132},
{date: new Date("2006-04-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 81},
{date: new Date("2006-04-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 17},
{date: new Date("2006-05-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1025},
{date: new Date("2006-05-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 680},
{date: new Date("2006-05-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 830},
{date: new Date("2006-05-01T00:00:00.000Z"), industry: "Business services", unemployed: 695},
{date: new Date("2006-05-01T00:00:00.000Z"), industry: "Construction", unemployed: 647},
{date: new Date("2006-05-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 543},
{date: new Date("2006-05-01T00:00:00.000Z"), industry: "Government", unemployed: 429},
{date: new Date("2006-05-01T00:00:00.000Z"), industry: "Finance", unemployed: 289},
{date: new Date("2006-05-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 251},
{date: new Date("2006-05-01T00:00:00.000Z"), industry: "Other", unemployed: 265},
{date: new Date("2006-05-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 226},
{date: new Date("2006-05-01T00:00:00.000Z"), industry: "Information", unemployed: 158},
{date: new Date("2006-05-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 79},
{date: new Date("2006-05-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 20},
{date: new Date("2006-06-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1085},
{date: new Date("2006-06-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 635},
{date: new Date("2006-06-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 942},
{date: new Date("2006-06-01T00:00:00.000Z"), industry: "Business services", unemployed: 753},
{date: new Date("2006-06-01T00:00:00.000Z"), industry: "Construction", unemployed: 569},
{date: new Date("2006-06-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 617},
{date: new Date("2006-06-01T00:00:00.000Z"), industry: "Government", unemployed: 578},
{date: new Date("2006-06-01T00:00:00.000Z"), industry: "Finance", unemployed: 299},
{date: new Date("2006-06-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 245},
{date: new Date("2006-06-01T00:00:00.000Z"), industry: "Other", unemployed: 265},
{date: new Date("2006-06-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 225},
{date: new Date("2006-06-01T00:00:00.000Z"), industry: "Information", unemployed: 114},
{date: new Date("2006-06-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 35},
{date: new Date("2006-06-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 31},
{date: new Date("2006-07-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1083},
{date: new Date("2006-07-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 736},
{date: new Date("2006-07-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 867},
{date: new Date("2006-07-01T00:00:00.000Z"), industry: "Business services", unemployed: 735},
{date: new Date("2006-07-01T00:00:00.000Z"), industry: "Construction", unemployed: 633},
{date: new Date("2006-07-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 659},
{date: new Date("2006-07-01T00:00:00.000Z"), industry: "Government", unemployed: 659},
{date: new Date("2006-07-01T00:00:00.000Z"), industry: "Finance", unemployed: 329},
{date: new Date("2006-07-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 291},
{date: new Date("2006-07-01T00:00:00.000Z"), industry: "Other", unemployed: 305},
{date: new Date("2006-07-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 237},
{date: new Date("2006-07-01T00:00:00.000Z"), industry: "Information", unemployed: 103},
{date: new Date("2006-07-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 55},
{date: new Date("2006-07-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 25},
{date: new Date("2006-08-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 977},
{date: new Date("2006-08-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 680},
{date: new Date("2006-08-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 855},
{date: new Date("2006-08-01T00:00:00.000Z"), industry: "Business services", unemployed: 681},
{date: new Date("2006-08-01T00:00:00.000Z"), industry: "Construction", unemployed: 618},
{date: new Date("2006-08-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 611},
{date: new Date("2006-08-01T00:00:00.000Z"), industry: "Government", unemployed: 595},
{date: new Date("2006-08-01T00:00:00.000Z"), industry: "Finance", unemployed: 263},
{date: new Date("2006-08-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 306},
{date: new Date("2006-08-01T00:00:00.000Z"), industry: "Other", unemployed: 341},
{date: new Date("2006-08-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 217},
{date: new Date("2006-08-01T00:00:00.000Z"), industry: "Information", unemployed: 132},
{date: new Date("2006-08-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 76},
{date: new Date("2006-08-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 32},
{date: new Date("2006-09-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1008},
{date: new Date("2006-09-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 632},
{date: new Date("2006-09-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 810},
{date: new Date("2006-09-01T00:00:00.000Z"), industry: "Business services", unemployed: 736},
{date: new Date("2006-09-01T00:00:00.000Z"), industry: "Construction", unemployed: 586},
{date: new Date("2006-09-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 576},
{date: new Date("2006-09-01T00:00:00.000Z"), industry: "Government", unemployed: 396},
{date: new Date("2006-09-01T00:00:00.000Z"), industry: "Finance", unemployed: 235},
{date: new Date("2006-09-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 299},
{date: new Date("2006-09-01T00:00:00.000Z"), industry: "Other", unemployed: 310},
{date: new Date("2006-09-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 183},
{date: new Date("2006-09-01T00:00:00.000Z"), industry: "Information", unemployed: 170},
{date: new Date("2006-09-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 78},
{date: new Date("2006-09-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 14},
{date: new Date("2006-10-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 972},
{date: new Date("2006-10-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 618},
{date: new Date("2006-10-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 795},
{date: new Date("2006-10-01T00:00:00.000Z"), industry: "Business services", unemployed: 768},
{date: new Date("2006-10-01T00:00:00.000Z"), industry: "Construction", unemployed: 456},
{date: new Date("2006-10-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 531},
{date: new Date("2006-10-01T00:00:00.000Z"), industry: "Government", unemployed: 424},
{date: new Date("2006-10-01T00:00:00.000Z"), industry: "Finance", unemployed: 211},
{date: new Date("2006-10-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 275},
{date: new Date("2006-10-01T00:00:00.000Z"), industry: "Other", unemployed: 268},
{date: new Date("2006-10-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 206},
{date: new Date("2006-10-01T00:00:00.000Z"), industry: "Information", unemployed: 116},
{date: new Date("2006-10-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 77},
{date: new Date("2006-10-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 15},
{date: new Date("2006-11-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1018},
{date: new Date("2006-11-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 702},
{date: new Date("2006-11-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 836},
{date: new Date("2006-11-01T00:00:00.000Z"), industry: "Business services", unemployed: 658},
{date: new Date("2006-11-01T00:00:00.000Z"), industry: "Construction", unemployed: 618},
{date: new Date("2006-11-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 536},
{date: new Date("2006-11-01T00:00:00.000Z"), industry: "Government", unemployed: 400},
{date: new Date("2006-11-01T00:00:00.000Z"), industry: "Finance", unemployed: 229},
{date: new Date("2006-11-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 257},
{date: new Date("2006-11-01T00:00:00.000Z"), industry: "Other", unemployed: 306},
{date: new Date("2006-11-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 183},
{date: new Date("2006-11-01T00:00:00.000Z"), industry: "Information", unemployed: 137},
{date: new Date("2006-11-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 125},
{date: new Date("2006-11-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 22},
{date: new Date("2006-12-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 965},
{date: new Date("2006-12-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 660},
{date: new Date("2006-12-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 701},
{date: new Date("2006-12-01T00:00:00.000Z"), industry: "Business services", unemployed: 791},
{date: new Date("2006-12-01T00:00:00.000Z"), industry: "Construction", unemployed: 725},
{date: new Date("2006-12-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 502},
{date: new Date("2006-12-01T00:00:00.000Z"), industry: "Government", unemployed: 395},
{date: new Date("2006-12-01T00:00:00.000Z"), industry: "Finance", unemployed: 227},
{date: new Date("2006-12-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 287},
{date: new Date("2006-12-01T00:00:00.000Z"), industry: "Other", unemployed: 306},
{date: new Date("2006-12-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 190},
{date: new Date("2006-12-01T00:00:00.000Z"), industry: "Information", unemployed: 108},
{date: new Date("2006-12-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 139},
{date: new Date("2006-12-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 25},
{date: new Date("2007-01-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1166},
{date: new Date("2007-01-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 752},
{date: new Date("2007-01-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 911},
{date: new Date("2007-01-01T00:00:00.000Z"), industry: "Business services", unemployed: 885},
{date: new Date("2007-01-01T00:00:00.000Z"), industry: "Construction", unemployed: 922},
{date: new Date("2007-01-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 563},
{date: new Date("2007-01-01T00:00:00.000Z"), industry: "Government", unemployed: 476},
{date: new Date("2007-01-01T00:00:00.000Z"), industry: "Finance", unemployed: 233},
{date: new Date("2007-01-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 376},
{date: new Date("2007-01-01T00:00:00.000Z"), industry: "Other", unemployed: 275},
{date: new Date("2007-01-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 248},
{date: new Date("2007-01-01T00:00:00.000Z"), industry: "Information", unemployed: 143},
{date: new Date("2007-01-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 128},
{date: new Date("2007-01-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 35},
{date: new Date("2007-02-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1045},
{date: new Date("2007-02-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 774},
{date: new Date("2007-02-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 879},
{date: new Date("2007-02-01T00:00:00.000Z"), industry: "Business services", unemployed: 825},
{date: new Date("2007-02-01T00:00:00.000Z"), industry: "Construction", unemployed: 1086},
{date: new Date("2007-02-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 489},
{date: new Date("2007-02-01T00:00:00.000Z"), industry: "Government", unemployed: 405},
{date: new Date("2007-02-01T00:00:00.000Z"), industry: "Finance", unemployed: 295},
{date: new Date("2007-02-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 300},
{date: new Date("2007-02-01T00:00:00.000Z"), industry: "Other", unemployed: 257},
{date: new Date("2007-02-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 251},
{date: new Date("2007-02-01T00:00:00.000Z"), industry: "Information", unemployed: 139},
{date: new Date("2007-02-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 127},
{date: new Date("2007-02-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 33},
{date: new Date("2007-03-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 896},
{date: new Date("2007-03-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 742},
{date: new Date("2007-03-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 845},
{date: new Date("2007-03-01T00:00:00.000Z"), industry: "Business services", unemployed: 775},
{date: new Date("2007-03-01T00:00:00.000Z"), industry: "Construction", unemployed: 924},
{date: new Date("2007-03-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 495},
{date: new Date("2007-03-01T00:00:00.000Z"), industry: "Government", unemployed: 419},
{date: new Date("2007-03-01T00:00:00.000Z"), industry: "Finance", unemployed: 252},
{date: new Date("2007-03-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 311},
{date: new Date("2007-03-01T00:00:00.000Z"), industry: "Other", unemployed: 222},
{date: new Date("2007-03-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 249},
{date: new Date("2007-03-01T00:00:00.000Z"), industry: "Information", unemployed: 109},
{date: new Date("2007-03-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 123},
{date: new Date("2007-03-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 24},
{date: new Date("2007-04-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 872},
{date: new Date("2007-04-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 749},
{date: new Date("2007-04-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 822},
{date: new Date("2007-04-01T00:00:00.000Z"), industry: "Business services", unemployed: 689},
{date: new Date("2007-04-01T00:00:00.000Z"), industry: "Construction", unemployed: 853},
{date: new Date("2007-04-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 555},
{date: new Date("2007-04-01T00:00:00.000Z"), industry: "Government", unemployed: 408},
{date: new Date("2007-04-01T00:00:00.000Z"), industry: "Finance", unemployed: 231},
{date: new Date("2007-04-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 240},
{date: new Date("2007-04-01T00:00:00.000Z"), industry: "Other", unemployed: 224},
{date: new Date("2007-04-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 188},
{date: new Date("2007-04-01T00:00:00.000Z"), industry: "Information", unemployed: 77},
{date: new Date("2007-04-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 67},
{date: new Date("2007-04-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 17},
{date: new Date("2007-05-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 795},
{date: new Date("2007-05-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 651},
{date: new Date("2007-05-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 831},
{date: new Date("2007-05-01T00:00:00.000Z"), industry: "Business services", unemployed: 743},
{date: new Date("2007-05-01T00:00:00.000Z"), industry: "Construction", unemployed: 676},
{date: new Date("2007-05-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 622},
{date: new Date("2007-05-01T00:00:00.000Z"), industry: "Government", unemployed: 428},
{date: new Date("2007-05-01T00:00:00.000Z"), industry: "Finance", unemployed: 281},
{date: new Date("2007-05-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 276},
{date: new Date("2007-05-01T00:00:00.000Z"), industry: "Other", unemployed: 242},
{date: new Date("2007-05-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 216},
{date: new Date("2007-05-01T00:00:00.000Z"), industry: "Information", unemployed: 110},
{date: new Date("2007-05-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 64},
{date: new Date("2007-05-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 22},
{date: new Date("2007-06-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 979},
{date: new Date("2007-06-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 653},
{date: new Date("2007-06-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 917},
{date: new Date("2007-06-01T00:00:00.000Z"), industry: "Business services", unemployed: 722},
{date: new Date("2007-06-01T00:00:00.000Z"), industry: "Construction", unemployed: 600},
{date: new Date("2007-06-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 653},
{date: new Date("2007-06-01T00:00:00.000Z"), industry: "Government", unemployed: 572},
{date: new Date("2007-06-01T00:00:00.000Z"), industry: "Finance", unemployed: 303},
{date: new Date("2007-06-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 258},
{date: new Date("2007-06-01T00:00:00.000Z"), industry: "Other", unemployed: 256},
{date: new Date("2007-06-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 242},
{date: new Date("2007-06-01T00:00:00.000Z"), industry: "Information", unemployed: 114},
{date: new Date("2007-06-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 59},
{date: new Date("2007-06-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 33},
{date: new Date("2007-07-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1089},
{date: new Date("2007-07-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 621},
{date: new Date("2007-07-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 920},
{date: new Date("2007-07-01T00:00:00.000Z"), industry: "Business services", unemployed: 743},
{date: new Date("2007-07-01T00:00:00.000Z"), industry: "Construction", unemployed: 617},
{date: new Date("2007-07-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 665},
{date: new Date("2007-07-01T00:00:00.000Z"), industry: "Government", unemployed: 704},
{date: new Date("2007-07-01T00:00:00.000Z"), industry: "Finance", unemployed: 307},
{date: new Date("2007-07-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 324},
{date: new Date("2007-07-01T00:00:00.000Z"), industry: "Other", unemployed: 243},
{date: new Date("2007-07-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 309},
{date: new Date("2007-07-01T00:00:00.000Z"), industry: "Information", unemployed: 112},
{date: new Date("2007-07-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 40},
{date: new Date("2007-07-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 33},
{date: new Date("2007-08-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1028},
{date: new Date("2007-08-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 596},
{date: new Date("2007-08-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 877},
{date: new Date("2007-08-01T00:00:00.000Z"), industry: "Business services", unemployed: 683},
{date: new Date("2007-08-01T00:00:00.000Z"), industry: "Construction", unemployed: 558},
{date: new Date("2007-08-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 648},
{date: new Date("2007-08-01T00:00:00.000Z"), industry: "Government", unemployed: 695},
{date: new Date("2007-08-01T00:00:00.000Z"), industry: "Finance", unemployed: 371},
{date: new Date("2007-08-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 315},
{date: new Date("2007-08-01T00:00:00.000Z"), industry: "Other", unemployed: 239},
{date: new Date("2007-08-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 205},
{date: new Date("2007-08-01T00:00:00.000Z"), industry: "Information", unemployed: 140},
{date: new Date("2007-08-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 54},
{date: new Date("2007-08-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 33},
{date: new Date("2007-09-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1027},
{date: new Date("2007-09-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 673},
{date: new Date("2007-09-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 892},
{date: new Date("2007-09-01T00:00:00.000Z"), industry: "Business services", unemployed: 655},
{date: new Date("2007-09-01T00:00:00.000Z"), industry: "Construction", unemployed: 596},
{date: new Date("2007-09-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 630},
{date: new Date("2007-09-01T00:00:00.000Z"), industry: "Government", unemployed: 525},
{date: new Date("2007-09-01T00:00:00.000Z"), industry: "Finance", unemployed: 316},
{date: new Date("2007-09-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 304},
{date: new Date("2007-09-01T00:00:00.000Z"), industry: "Other", unemployed: 257},
{date: new Date("2007-09-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 224},
{date: new Date("2007-09-01T00:00:00.000Z"), industry: "Information", unemployed: 124},
{date: new Date("2007-09-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 53},
{date: new Date("2007-09-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 25},
{date: new Date("2007-10-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 907},
{date: new Date("2007-10-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 729},
{date: new Date("2007-10-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 911},
{date: new Date("2007-10-01T00:00:00.000Z"), industry: "Business services", unemployed: 675},
{date: new Date("2007-10-01T00:00:00.000Z"), industry: "Construction", unemployed: 641},
{date: new Date("2007-10-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 534},
{date: new Date("2007-10-01T00:00:00.000Z"), industry: "Government", unemployed: 492},
{date: new Date("2007-10-01T00:00:00.000Z"), industry: "Finance", unemployed: 307},
{date: new Date("2007-10-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 338},
{date: new Date("2007-10-01T00:00:00.000Z"), industry: "Other", unemployed: 182},
{date: new Date("2007-10-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 218},
{date: new Date("2007-10-01T00:00:00.000Z"), industry: "Information", unemployed: 120},
{date: new Date("2007-10-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 47},
{date: new Date("2007-10-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 9},
{date: new Date("2007-11-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 893},
{date: new Date("2007-11-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 762},
{date: new Date("2007-11-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 986},
{date: new Date("2007-11-01T00:00:00.000Z"), industry: "Business services", unemployed: 679},
{date: new Date("2007-11-01T00:00:00.000Z"), industry: "Construction", unemployed: 645},
{date: new Date("2007-11-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 526},
{date: new Date("2007-11-01T00:00:00.000Z"), industry: "Government", unemployed: 482},
{date: new Date("2007-11-01T00:00:00.000Z"), industry: "Finance", unemployed: 261},
{date: new Date("2007-11-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 336},
{date: new Date("2007-11-01T00:00:00.000Z"), industry: "Other", unemployed: 255},
{date: new Date("2007-11-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 242},
{date: new Date("2007-11-01T00:00:00.000Z"), industry: "Information", unemployed: 132},
{date: new Date("2007-11-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 80},
{date: new Date("2007-11-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 16},
{date: new Date("2007-12-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1009},
{date: new Date("2007-12-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 772},
{date: new Date("2007-12-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 961},
{date: new Date("2007-12-01T00:00:00.000Z"), industry: "Business services", unemployed: 803},
{date: new Date("2007-12-01T00:00:00.000Z"), industry: "Construction", unemployed: 968},
{date: new Date("2007-12-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 521},
{date: new Date("2007-12-01T00:00:00.000Z"), industry: "Government", unemployed: 451},
{date: new Date("2007-12-01T00:00:00.000Z"), industry: "Finance", unemployed: 315},
{date: new Date("2007-12-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 326},
{date: new Date("2007-12-01T00:00:00.000Z"), industry: "Other", unemployed: 235},
{date: new Date("2007-12-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 210},
{date: new Date("2007-12-01T00:00:00.000Z"), industry: "Information", unemployed: 125},
{date: new Date("2007-12-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 96},
{date: new Date("2007-12-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 24},
{date: new Date("2008-01-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1120},
{date: new Date("2008-01-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 837},
{date: new Date("2008-01-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1176},
{date: new Date("2008-01-01T00:00:00.000Z"), industry: "Business services", unemployed: 893},
{date: new Date("2008-01-01T00:00:00.000Z"), industry: "Construction", unemployed: 1099},
{date: new Date("2008-01-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 576},
{date: new Date("2008-01-01T00:00:00.000Z"), industry: "Government", unemployed: 471},
{date: new Date("2008-01-01T00:00:00.000Z"), industry: "Finance", unemployed: 285},
{date: new Date("2008-01-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 338},
{date: new Date("2008-01-01T00:00:00.000Z"), industry: "Other", unemployed: 264},
{date: new Date("2008-01-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 271},
{date: new Date("2008-01-01T00:00:00.000Z"), industry: "Information", unemployed: 169},
{date: new Date("2008-01-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 113},
{date: new Date("2008-01-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 28},
{date: new Date("2008-02-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1007},
{date: new Date("2008-02-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 820},
{date: new Date("2008-02-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1056},
{date: new Date("2008-02-01T00:00:00.000Z"), industry: "Business services", unemployed: 866},
{date: new Date("2008-02-01T00:00:00.000Z"), industry: "Construction", unemployed: 1118},
{date: new Date("2008-02-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 562},
{date: new Date("2008-02-01T00:00:00.000Z"), industry: "Government", unemployed: 372},
{date: new Date("2008-02-01T00:00:00.000Z"), industry: "Finance", unemployed: 323},
{date: new Date("2008-02-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 340},
{date: new Date("2008-02-01T00:00:00.000Z"), industry: "Other", unemployed: 313},
{date: new Date("2008-02-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 289},
{date: new Date("2008-02-01T00:00:00.000Z"), industry: "Information", unemployed: 193},
{date: new Date("2008-02-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 135},
{date: new Date("2008-02-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 16},
{date: new Date("2008-03-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 992},
{date: new Date("2008-03-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 831},
{date: new Date("2008-03-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 944},
{date: new Date("2008-03-01T00:00:00.000Z"), industry: "Business services", unemployed: 876},
{date: new Date("2008-03-01T00:00:00.000Z"), industry: "Construction", unemployed: 1170},
{date: new Date("2008-03-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 609},
{date: new Date("2008-03-01T00:00:00.000Z"), industry: "Government", unemployed: 425},
{date: new Date("2008-03-01T00:00:00.000Z"), industry: "Finance", unemployed: 323},
{date: new Date("2008-03-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 346},
{date: new Date("2008-03-01T00:00:00.000Z"), industry: "Other", unemployed: 283},
{date: new Date("2008-03-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 267},
{date: new Date("2008-03-01T00:00:00.000Z"), industry: "Information", unemployed: 155},
{date: new Date("2008-03-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 175},
{date: new Date("2008-03-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 28},
{date: new Date("2008-04-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 919},
{date: new Date("2008-04-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 796},
{date: new Date("2008-04-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 874},
{date: new Date("2008-04-01T00:00:00.000Z"), industry: "Business services", unemployed: 736},
{date: new Date("2008-04-01T00:00:00.000Z"), industry: "Construction", unemployed: 1057},
{date: new Date("2008-04-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 551},
{date: new Date("2008-04-01T00:00:00.000Z"), industry: "Government", unemployed: 373},
{date: new Date("2008-04-01T00:00:00.000Z"), industry: "Finance", unemployed: 324},
{date: new Date("2008-04-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 338},
{date: new Date("2008-04-01T00:00:00.000Z"), industry: "Other", unemployed: 251},
{date: new Date("2008-04-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 245},
{date: new Date("2008-04-01T00:00:00.000Z"), industry: "Information", unemployed: 143},
{date: new Date("2008-04-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 108},
{date: new Date("2008-04-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 28},
{date: new Date("2008-05-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1049},
{date: new Date("2008-05-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 879},
{date: new Date("2008-05-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1074},
{date: new Date("2008-05-01T00:00:00.000Z"), industry: "Business services", unemployed: 829},
{date: new Date("2008-05-01T00:00:00.000Z"), industry: "Construction", unemployed: 809},
{date: new Date("2008-05-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 619},
{date: new Date("2008-05-01T00:00:00.000Z"), industry: "Government", unemployed: 461},
{date: new Date("2008-05-01T00:00:00.000Z"), industry: "Finance", unemployed: 361},
{date: new Date("2008-05-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 366},
{date: new Date("2008-05-01T00:00:00.000Z"), industry: "Other", unemployed: 275},
{date: new Date("2008-05-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 269},
{date: new Date("2008-05-01T00:00:00.000Z"), industry: "Information", unemployed: 170},
{date: new Date("2008-05-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 94},
{date: new Date("2008-05-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 28},
{date: new Date("2008-06-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1160},
{date: new Date("2008-06-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 862},
{date: new Date("2008-06-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1154},
{date: new Date("2008-06-01T00:00:00.000Z"), industry: "Business services", unemployed: 890},
{date: new Date("2008-06-01T00:00:00.000Z"), industry: "Construction", unemployed: 785},
{date: new Date("2008-06-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 669},
{date: new Date("2008-06-01T00:00:00.000Z"), industry: "Government", unemployed: 654},
{date: new Date("2008-06-01T00:00:00.000Z"), industry: "Finance", unemployed: 337},
{date: new Date("2008-06-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 364},
{date: new Date("2008-06-01T00:00:00.000Z"), industry: "Other", unemployed: 322},
{date: new Date("2008-06-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 329},
{date: new Date("2008-06-01T00:00:00.000Z"), industry: "Information", unemployed: 157},
{date: new Date("2008-06-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 86},
{date: new Date("2008-06-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 28},
{date: new Date("2008-07-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1329},
{date: new Date("2008-07-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 908},
{date: new Date("2008-07-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1172},
{date: new Date("2008-07-01T00:00:00.000Z"), industry: "Business services", unemployed: 866},
{date: new Date("2008-07-01T00:00:00.000Z"), industry: "Construction", unemployed: 783},
{date: new Date("2008-07-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 776},
{date: new Date("2008-07-01T00:00:00.000Z"), industry: "Government", unemployed: 770},
{date: new Date("2008-07-01T00:00:00.000Z"), industry: "Finance", unemployed: 350},
{date: new Date("2008-07-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 345},
{date: new Date("2008-07-01T00:00:00.000Z"), industry: "Other", unemployed: 352},
{date: new Date("2008-07-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 359},
{date: new Date("2008-07-01T00:00:00.000Z"), industry: "Information", unemployed: 141},
{date: new Date("2008-07-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 125},
{date: new Date("2008-07-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 13},
{date: new Date("2008-08-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1366},
{date: new Date("2008-08-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 960},
{date: new Date("2008-08-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1122},
{date: new Date("2008-08-01T00:00:00.000Z"), industry: "Business services", unemployed: 961},
{date: new Date("2008-08-01T00:00:00.000Z"), industry: "Construction", unemployed: 814},
{date: new Date("2008-08-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 844},
{date: new Date("2008-08-01T00:00:00.000Z"), industry: "Government", unemployed: 721},
{date: new Date("2008-08-01T00:00:00.000Z"), industry: "Finance", unemployed: 409},
{date: new Date("2008-08-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 378},
{date: new Date("2008-08-01T00:00:00.000Z"), industry: "Other", unemployed: 412},
{date: new Date("2008-08-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 309},
{date: new Date("2008-08-01T00:00:00.000Z"), industry: "Information", unemployed: 144},
{date: new Date("2008-08-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 111},
{date: new Date("2008-08-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 17},
{date: new Date("2008-09-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1277},
{date: new Date("2008-09-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 984},
{date: new Date("2008-09-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1029},
{date: new Date("2008-09-01T00:00:00.000Z"), industry: "Business services", unemployed: 951},
{date: new Date("2008-09-01T00:00:00.000Z"), industry: "Construction", unemployed: 970},
{date: new Date("2008-09-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 835},
{date: new Date("2008-09-01T00:00:00.000Z"), industry: "Government", unemployed: 573},
{date: new Date("2008-09-01T00:00:00.000Z"), industry: "Finance", unemployed: 380},
{date: new Date("2008-09-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 414},
{date: new Date("2008-09-01T00:00:00.000Z"), industry: "Other", unemployed: 374},
{date: new Date("2008-09-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 337},
{date: new Date("2008-09-01T00:00:00.000Z"), industry: "Information", unemployed: 166},
{date: new Date("2008-09-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 84},
{date: new Date("2008-09-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 25},
{date: new Date("2008-10-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1313},
{date: new Date("2008-10-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1007},
{date: new Date("2008-10-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1126},
{date: new Date("2008-10-01T00:00:00.000Z"), industry: "Business services", unemployed: 1052},
{date: new Date("2008-10-01T00:00:00.000Z"), industry: "Construction", unemployed: 1078},
{date: new Date("2008-10-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 797},
{date: new Date("2008-10-01T00:00:00.000Z"), industry: "Government", unemployed: 552},
{date: new Date("2008-10-01T00:00:00.000Z"), industry: "Finance", unemployed: 434},
{date: new Date("2008-10-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 396},
{date: new Date("2008-10-01T00:00:00.000Z"), industry: "Other", unemployed: 334},
{date: new Date("2008-10-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 316},
{date: new Date("2008-10-01T00:00:00.000Z"), industry: "Information", unemployed: 168},
{date: new Date("2008-10-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 97},
{date: new Date("2008-10-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 15},
{date: new Date("2008-11-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1397},
{date: new Date("2008-11-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1144},
{date: new Date("2008-11-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1283},
{date: new Date("2008-11-01T00:00:00.000Z"), industry: "Business services", unemployed: 992},
{date: new Date("2008-11-01T00:00:00.000Z"), industry: "Construction", unemployed: 1237},
{date: new Date("2008-11-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 748},
{date: new Date("2008-11-01T00:00:00.000Z"), industry: "Government", unemployed: 527},
{date: new Date("2008-11-01T00:00:00.000Z"), industry: "Finance", unemployed: 494},
{date: new Date("2008-11-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 411},
{date: new Date("2008-11-01T00:00:00.000Z"), industry: "Other", unemployed: 434},
{date: new Date("2008-11-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 331},
{date: new Date("2008-11-01T00:00:00.000Z"), industry: "Information", unemployed: 173},
{date: new Date("2008-11-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 119},
{date: new Date("2008-11-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 32},
{date: new Date("2008-12-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1535},
{date: new Date("2008-12-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1315},
{date: new Date("2008-12-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1210},
{date: new Date("2008-12-01T00:00:00.000Z"), industry: "Business services", unemployed: 1147},
{date: new Date("2008-12-01T00:00:00.000Z"), industry: "Construction", unemployed: 1438},
{date: new Date("2008-12-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 791},
{date: new Date("2008-12-01T00:00:00.000Z"), industry: "Government", unemployed: 511},
{date: new Date("2008-12-01T00:00:00.000Z"), industry: "Finance", unemployed: 540},
{date: new Date("2008-12-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 559},
{date: new Date("2008-12-01T00:00:00.000Z"), industry: "Other", unemployed: 367},
{date: new Date("2008-12-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 421},
{date: new Date("2008-12-01T00:00:00.000Z"), industry: "Information", unemployed: 219},
{date: new Date("2008-12-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 229},
{date: new Date("2008-12-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 46},
{date: new Date("2009-01-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1794},
{date: new Date("2009-01-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1711},
{date: new Date("2009-01-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1487},
{date: new Date("2009-01-01T00:00:00.000Z"), industry: "Business services", unemployed: 1445},
{date: new Date("2009-01-01T00:00:00.000Z"), industry: "Construction", unemployed: 1744},
{date: new Date("2009-01-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 792},
{date: new Date("2009-01-01T00:00:00.000Z"), industry: "Government", unemployed: 652},
{date: new Date("2009-01-01T00:00:00.000Z"), industry: "Finance", unemployed: 571},
{date: new Date("2009-01-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 659},
{date: new Date("2009-01-01T00:00:00.000Z"), industry: "Other", unemployed: 431},
{date: new Date("2009-01-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 522},
{date: new Date("2009-01-01T00:00:00.000Z"), industry: "Information", unemployed: 232},
{date: new Date("2009-01-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 245},
{date: new Date("2009-01-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 59},
{date: new Date("2009-02-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1847},
{date: new Date("2009-02-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1822},
{date: new Date("2009-02-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1477},
{date: new Date("2009-02-01T00:00:00.000Z"), industry: "Business services", unemployed: 1512},
{date: new Date("2009-02-01T00:00:00.000Z"), industry: "Construction", unemployed: 2025},
{date: new Date("2009-02-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 847},
{date: new Date("2009-02-01T00:00:00.000Z"), industry: "Government", unemployed: 563},
{date: new Date("2009-02-01T00:00:00.000Z"), industry: "Finance", unemployed: 637},
{date: new Date("2009-02-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 586},
{date: new Date("2009-02-01T00:00:00.000Z"), industry: "Other", unemployed: 453},
{date: new Date("2009-02-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 563},
{date: new Date("2009-02-01T00:00:00.000Z"), industry: "Information", unemployed: 224},
{date: new Date("2009-02-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 251},
{date: new Date("2009-02-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 63},
{date: new Date("2009-03-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1852},
{date: new Date("2009-03-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1912},
{date: new Date("2009-03-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1484},
{date: new Date("2009-03-01T00:00:00.000Z"), industry: "Business services", unemployed: 1597},
{date: new Date("2009-03-01T00:00:00.000Z"), industry: "Construction", unemployed: 1979},
{date: new Date("2009-03-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 931},
{date: new Date("2009-03-01T00:00:00.000Z"), industry: "Government", unemployed: 598},
{date: new Date("2009-03-01T00:00:00.000Z"), industry: "Finance", unemployed: 639},
{date: new Date("2009-03-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 625},
{date: new Date("2009-03-01T00:00:00.000Z"), industry: "Other", unemployed: 377},
{date: new Date("2009-03-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 558},
{date: new Date("2009-03-01T00:00:00.000Z"), industry: "Information", unemployed: 252},
{date: new Date("2009-03-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 241},
{date: new Date("2009-03-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 105},
{date: new Date("2009-04-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1833},
{date: new Date("2009-04-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1968},
{date: new Date("2009-04-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1322},
{date: new Date("2009-04-01T00:00:00.000Z"), industry: "Business services", unemployed: 1448},
{date: new Date("2009-04-01T00:00:00.000Z"), industry: "Construction", unemployed: 1737},
{date: new Date("2009-04-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 964},
{date: new Date("2009-04-01T00:00:00.000Z"), industry: "Government", unemployed: 575},
{date: new Date("2009-04-01T00:00:00.000Z"), industry: "Finance", unemployed: 561},
{date: new Date("2009-04-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 488},
{date: new Date("2009-04-01T00:00:00.000Z"), industry: "Other", unemployed: 403},
{date: new Date("2009-04-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 541},
{date: new Date("2009-04-01T00:00:00.000Z"), industry: "Information", unemployed: 320},
{date: new Date("2009-04-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 176},
{date: new Date("2009-04-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 125},
{date: new Date("2009-05-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1835},
{date: new Date("2009-05-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 2010},
{date: new Date("2009-05-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1599},
{date: new Date("2009-05-01T00:00:00.000Z"), industry: "Business services", unemployed: 1514},
{date: new Date("2009-05-01T00:00:00.000Z"), industry: "Construction", unemployed: 1768},
{date: new Date("2009-05-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 1005},
{date: new Date("2009-05-01T00:00:00.000Z"), industry: "Government", unemployed: 702},
{date: new Date("2009-05-01T00:00:00.000Z"), industry: "Finance", unemployed: 536},
{date: new Date("2009-05-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 530},
{date: new Date("2009-05-01T00:00:00.000Z"), industry: "Other", unemployed: 476},
{date: new Date("2009-05-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 506},
{date: new Date("2009-05-01T00:00:00.000Z"), industry: "Information", unemployed: 303},
{date: new Date("2009-05-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 136},
{date: new Date("2009-05-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 98},
{date: new Date("2009-06-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1863},
{date: new Date("2009-06-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 2010},
{date: new Date("2009-06-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1688},
{date: new Date("2009-06-01T00:00:00.000Z"), industry: "Business services", unemployed: 1580},
{date: new Date("2009-06-01T00:00:00.000Z"), industry: "Construction", unemployed: 1601},
{date: new Date("2009-06-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 1267},
{date: new Date("2009-06-01T00:00:00.000Z"), industry: "Government", unemployed: 991},
{date: new Date("2009-06-01T00:00:00.000Z"), industry: "Finance", unemployed: 513},
{date: new Date("2009-06-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 472},
{date: new Date("2009-06-01T00:00:00.000Z"), industry: "Other", unemployed: 557},
{date: new Date("2009-06-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 499},
{date: new Date("2009-06-01T00:00:00.000Z"), industry: "Information", unemployed: 347},
{date: new Date("2009-06-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 182},
{date: new Date("2009-06-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 100},
{date: new Date("2009-07-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1854},
{date: new Date("2009-07-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1988},
{date: new Date("2009-07-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1600},
{date: new Date("2009-07-01T00:00:00.000Z"), industry: "Business services", unemployed: 1531},
{date: new Date("2009-07-01T00:00:00.000Z"), industry: "Construction", unemployed: 1687},
{date: new Date("2009-07-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 1269},
{date: new Date("2009-07-01T00:00:00.000Z"), industry: "Government", unemployed: 1129},
{date: new Date("2009-07-01T00:00:00.000Z"), industry: "Finance", unemployed: 570},
{date: new Date("2009-07-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 552},
{date: new Date("2009-07-01T00:00:00.000Z"), industry: "Other", unemployed: 490},
{date: new Date("2009-07-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 511},
{date: new Date("2009-07-01T00:00:00.000Z"), industry: "Information", unemployed: 373},
{date: new Date("2009-07-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 180},
{date: new Date("2009-07-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 95},
{date: new Date("2009-08-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1794},
{date: new Date("2009-08-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1866},
{date: new Date("2009-08-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1636},
{date: new Date("2009-08-01T00:00:00.000Z"), industry: "Business services", unemployed: 1560},
{date: new Date("2009-08-01T00:00:00.000Z"), industry: "Construction", unemployed: 1542},
{date: new Date("2009-08-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 1239},
{date: new Date("2009-08-01T00:00:00.000Z"), industry: "Government", unemployed: 1118},
{date: new Date("2009-08-01T00:00:00.000Z"), industry: "Finance", unemployed: 566},
{date: new Date("2009-08-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 569},
{date: new Date("2009-08-01T00:00:00.000Z"), industry: "Other", unemployed: 528},
{date: new Date("2009-08-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 547},
{date: new Date("2009-08-01T00:00:00.000Z"), industry: "Information", unemployed: 358},
{date: new Date("2009-08-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 195},
{date: new Date("2009-08-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 93},
{date: new Date("2009-09-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1809},
{date: new Date("2009-09-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1876},
{date: new Date("2009-09-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1469},
{date: new Date("2009-09-01T00:00:00.000Z"), industry: "Business services", unemployed: 1596},
{date: new Date("2009-09-01T00:00:00.000Z"), industry: "Construction", unemployed: 1594},
{date: new Date("2009-09-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 1257},
{date: new Date("2009-09-01T00:00:00.000Z"), industry: "Government", unemployed: 928},
{date: new Date("2009-09-01T00:00:00.000Z"), industry: "Finance", unemployed: 657},
{date: new Date("2009-09-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 636},
{date: new Date("2009-09-01T00:00:00.000Z"), industry: "Other", unemployed: 462},
{date: new Date("2009-09-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 538},
{date: new Date("2009-09-01T00:00:00.000Z"), industry: "Information", unemployed: 362},
{date: new Date("2009-09-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 150},
{date: new Date("2009-09-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 76},
{date: new Date("2009-10-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1919},
{date: new Date("2009-10-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1884},
{date: new Date("2009-10-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1604},
{date: new Date("2009-10-01T00:00:00.000Z"), industry: "Business services", unemployed: 1488},
{date: new Date("2009-10-01T00:00:00.000Z"), industry: "Construction", unemployed: 1744},
{date: new Date("2009-10-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 1280},
{date: new Date("2009-10-01T00:00:00.000Z"), industry: "Government", unemployed: 785},
{date: new Date("2009-10-01T00:00:00.000Z"), industry: "Finance", unemployed: 646},
{date: new Date("2009-10-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 610},
{date: new Date("2009-10-01T00:00:00.000Z"), industry: "Other", unemployed: 541},
{date: new Date("2009-10-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 480},
{date: new Date("2009-10-01T00:00:00.000Z"), industry: "Information", unemployed: 261},
{date: new Date("2009-10-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 166},
{date: new Date("2009-10-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 84},
{date: new Date("2009-11-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1879},
{date: new Date("2009-11-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1882},
{date: new Date("2009-11-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1524},
{date: new Date("2009-11-01T00:00:00.000Z"), industry: "Business services", unemployed: 1514},
{date: new Date("2009-11-01T00:00:00.000Z"), industry: "Construction", unemployed: 1780},
{date: new Date("2009-11-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 1168},
{date: new Date("2009-11-01T00:00:00.000Z"), industry: "Government", unemployed: 748},
{date: new Date("2009-11-01T00:00:00.000Z"), industry: "Finance", unemployed: 619},
{date: new Date("2009-11-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 592},
{date: new Date("2009-11-01T00:00:00.000Z"), industry: "Other", unemployed: 491},
{date: new Date("2009-11-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 493},
{date: new Date("2009-11-01T00:00:00.000Z"), industry: "Information", unemployed: 243},
{date: new Date("2009-11-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 180},
{date: new Date("2009-11-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 96},
{date: new Date("2009-12-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 1851},
{date: new Date("2009-12-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1747},
{date: new Date("2009-12-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1624},
{date: new Date("2009-12-01T00:00:00.000Z"), industry: "Business services", unemployed: 1486},
{date: new Date("2009-12-01T00:00:00.000Z"), industry: "Construction", unemployed: 2044},
{date: new Date("2009-12-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 1183},
{date: new Date("2009-12-01T00:00:00.000Z"), industry: "Government", unemployed: 797},
{date: new Date("2009-12-01T00:00:00.000Z"), industry: "Finance", unemployed: 665},
{date: new Date("2009-12-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 609},
{date: new Date("2009-12-01T00:00:00.000Z"), industry: "Other", unemployed: 513},
{date: new Date("2009-12-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 539},
{date: new Date("2009-12-01T00:00:00.000Z"), industry: "Information", unemployed: 256},
{date: new Date("2009-12-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 292},
{date: new Date("2009-12-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 89},
{date: new Date("2010-01-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 2154},
{date: new Date("2010-01-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1918},
{date: new Date("2010-01-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1804},
{date: new Date("2010-01-01T00:00:00.000Z"), industry: "Business services", unemployed: 1614},
{date: new Date("2010-01-01T00:00:00.000Z"), industry: "Construction", unemployed: 2194},
{date: new Date("2010-01-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 1175},
{date: new Date("2010-01-01T00:00:00.000Z"), industry: "Government", unemployed: 948},
{date: new Date("2010-01-01T00:00:00.000Z"), industry: "Finance", unemployed: 623},
{date: new Date("2010-01-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 730},
{date: new Date("2010-01-01T00:00:00.000Z"), industry: "Other", unemployed: 609},
{date: new Date("2010-01-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 657},
{date: new Date("2010-01-01T00:00:00.000Z"), industry: "Information", unemployed: 313},
{date: new Date("2010-01-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 318},
{date: new Date("2010-01-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 68},
{date: new Date("2010-02-01T00:00:00.000Z"), industry: "Wholesale and Retail Trade", unemployed: 2071},
{date: new Date("2010-02-01T00:00:00.000Z"), industry: "Manufacturing", unemployed: 1814},
{date: new Date("2010-02-01T00:00:00.000Z"), industry: "Leisure and hospitality", unemployed: 1597},
{date: new Date("2010-02-01T00:00:00.000Z"), industry: "Business services", unemployed: 1740},
{date: new Date("2010-02-01T00:00:00.000Z"), industry: "Construction", unemployed: 2440},
{date: new Date("2010-02-01T00:00:00.000Z"), industry: "Education and Health", unemployed: 1200},
{date: new Date("2010-02-01T00:00:00.000Z"), industry: "Government", unemployed: 880},
{date: new Date("2010-02-01T00:00:00.000Z"), industry: "Finance", unemployed: 708},
{date: new Date("2010-02-01T00:00:00.000Z"), industry: "Self-employed", unemployed: 680},
{date: new Date("2010-02-01T00:00:00.000Z"), industry: "Other", unemployed: 603},
{date: new Date("2010-02-01T00:00:00.000Z"), industry: "Transportation and Utilities", unemployed: 591},
{date: new Date("2010-02-01T00:00:00.000Z"), industry: "Information", unemployed: 300},
{date: new Date("2010-02-01T00:00:00.000Z"), industry: "Agriculture", unemployed: 285},
{date: new Date("2010-02-01T00:00:00.000Z"), industry: "Mining and Extraction", unemployed: 79},
]