Skip to content
Snippets Groups Projects
covidtracking-dashboard.ipynb 1.36 MiB
Newer Older
{
 "cells": [
  {
   "cell_type": "code",
   "execution_count": 1,
   "metadata": {},
   "outputs": [],
   "source": [
    "from pathlib import Path\n",
    "\n",
    "import pandas as pd\n",
    "import altair as alt\n",
    "from IPython.display import display, HTML"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "metadata": {},
   "outputs": [],
   "source": [
    "html_credits=HTML('''\n",
    "<p style=\"font-size: smaller\">Data Sources: \n",
    "  <a href=\"https://covidtracking.com\">The COVID Tracking Project</a>\n",
    "<br>\n",
    "Analysis and Visualization:\n",
    "  <a href=\"https://renkulab.io/projects/covid-19/covid-19-public-data\">Covid-19 Public Data Collaboration Project</a>\n",
    "</p>''')"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "metadata": {
    "tags": [
     "parameters"
    ]
   },
   "source": [
    "data_path = '../data/covidtracking'"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "metadata": {},
   "outputs": [],
   "source": [
    "# Read population data\n",
    "pop_df = pd.read_csv(Path(data_path) / '../geodata/us_pop_fung_2019.csv').set_index('ST')\n",
    "\n",
    "# Read state-level data\n",
    "data_df = pd.read_json(Path(data_path) / 'states-daily.json')\n",
    "data_df['date'] = pd.to_datetime(data_df['date'], format=\"%Y%m%d\")\n",
    "data_df['ratio'] = data_df['positive']/data_df['total']\n",
    "\n",
    "# Compute daily differences\n",
    "tdf = data_df.sort_values(['state', 'date'], ascending=[True, False]).set_index(['state', 'date'])\n",
    "diffs_df = tdf[['positive', 'negative', 'death']].groupby(level='state').diff(periods=-1).dropna(how='all')\n",
    "tdf_diff=tdf.join(diffs_df, rsuffix='_diff').reset_index()\n",
    "\n",
    "# incidence rates\n",
    "tdf_diff = tdf_diff.set_index('state')\n",
    "tdf_diff['positive_diff_100k'] = (tdf_diff['positive_diff'] / pop_df['Population']) * 100000\n",
    "tdf_diff['death_diff_100k'] = (tdf_diff['death_diff'] / pop_df['Population']) * 100000\n",
    "tdf_diff = tdf_diff.reset_index()\n",
    "\n",
    "# \"Normalizing\" the totals\n",
    "tdf_diff['total_10'] = tdf_diff['total']/10.\n",
    "\n",
    "# Daily totals\n",
    "daily_totals = tdf_diff.groupby('date').sum()\n",
    "daily_totals.reset_index(level=0, inplace=True)\n",
    "\n",
    "# National daily totals\n",
    "nation_df = data_df.groupby('date').sum()\n",
    "nation_df['state']='All US'\n",
    "nation_df = nation_df.reset_index()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Covid-19 Cases in U.S.\n",
    "\n",
    "The case data from the U.S. is obtained from https://covidtracking.com, a public crowd-sourced covid-19 dataset. "
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### Growth trends"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 12,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "\n",
       "<div id=\"altair-viz-43ae24fb5f694620acb208f5c217b465\"></div>\n",
       "<script type=\"text/javascript\">\n",
       "  (function(spec, embedOpt){\n",
       "    const outputDiv = document.getElementById(\"altair-viz-43ae24fb5f694620acb208f5c217b465\");\n",
       "    const paths = {\n",
       "      \"vega\": \"https://cdn.jsdelivr.net/npm//vega@5?noext\",\n",
       "      \"vega-lib\": \"https://cdn.jsdelivr.net/npm//vega-lib?noext\",\n",
       "      \"vega-lite\": \"https://cdn.jsdelivr.net/npm//vega-lite@4.0.2?noext\",\n",
       "      \"vega-embed\": \"https://cdn.jsdelivr.net/npm//vega-embed@6?noext\",\n",
       "    };\n",
       "\n",
       "    function loadScript(lib) {\n",
       "      return new Promise(function(resolve, reject) {\n",
       "        var s = document.createElement('script');\n",
       "        s.src = paths[lib];\n",
       "        s.async = true;\n",
       "        s.onload = () => resolve(paths[lib]);\n",
       "        s.onerror = () => reject(`Error loading script: ${paths[lib]}`);\n",
       "        document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
       "      });\n",
       "    }\n",
       "\n",
       "    function showError(err) {\n",
       "      outputDiv.innerHTML = `<div class=\"error\" style=\"color:red;\">${err}</div>`;\n",
       "      throw err;\n",
       "    }\n",
       "\n",
       "    function displayChart(vegaEmbed) {\n",
       "      vegaEmbed(outputDiv, spec, embedOpt)\n",
       "        .catch(err => showError(`Javascript Error: ${err.message}<br>This usually means there's a typo in your chart specification. See the javascript console for the full traceback.`));\n",
       "    }\n",
       "\n",
       "    if(typeof define === \"function\" && define.amd) {\n",
       "      requirejs.config({paths});\n",
       "      require([\"vega-embed\"], displayChart, err => showError(`Error loading script: ${err.message}`));\n",
       "    } else if (typeof vegaEmbed === \"function\") {\n",
       "      displayChart(vegaEmbed);\n",
       "    } else {\n",
       "      loadScript(\"vega\")\n",
       "        .then(() => loadScript(\"vega-lite\"))\n",
       "        .then(() => loadScript(\"vega-embed\"))\n",
       "        .catch(showError)\n",
       "        .then(() => displayChart(vegaEmbed));\n",
       "    }\n",
       "  })({\"config\": {\"view\": {\"continuousWidth\": 400, \"continuousHeight\": 300}}, \"layer\": [{\"data\": {\"name\": \"data-cf6f9c8a0e99cbf4f70076b41ebc7306\"}, \"mark\": {\"type\": \"line\", \"interpolate\": \"basis\"}, \"encoding\": {\"color\": {\"type\": \"nominal\", \"field\": \"state\"}, \"tooltip\": [{\"type\": \"nominal\", \"field\": \"state\"}, {\"type\": \"quantitative\", \"field\": \"sinceDay0\"}, {\"type\": \"quantitative\", \"field\": \"death\"}, {\"type\": \"quantitative\", \"field\": \"positive\"}], \"x\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"Days Since 10th Death\"}, \"field\": \"sinceDay0\"}, \"y\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"Cumulative Deaths\"}, \"field\": \"death\", \"scale\": {\"type\": \"log\"}}}, \"height\": 500, \"title\": \"US States: Cumulative Deaths Since 10th Death\", \"width\": 800}, {\"data\": {\"name\": \"data-8dd537b73b2c173fea8cb9ec9eabdc90\"}, \"mark\": {\"type\": \"line\", \"clip\": true, \"opacity\": 0.2}, \"encoding\": {\"color\": {\"type\": \"nominal\", \"field\": \"doubling period\"}, \"tooltip\": [{\"type\": \"nominal\", \"field\": \"doubling period\"}], \"x\": {\"type\": \"quantitative\", \"field\": \"day\", \"scale\": {\"domain\": [1, 35]}}, \"y\": {\"type\": \"quantitative\", \"field\": \"case\", \"scale\": {\"domain\": [10, 10000], \"type\": \"log\"}}}}, {\"layer\": [{\"data\": {\"name\": \"data-ed084c13b8679930146712a7eed3296c\"}, \"mark\": {\"type\": \"text\", \"align\": \"left\", \"baseline\": \"middle\", \"dx\": 10}, \"encoding\": {\"color\": {\"type\": \"nominal\", \"field\": \"state\"}, \"text\": {\"type\": \"nominal\", \"field\": \"state\"}, \"x\": {\"type\": \"quantitative\", \"field\": \"sinceDay0\"}, \"y\": {\"type\": \"quantitative\", \"field\": \"death\"}}}, {\"data\": {\"name\": \"data-d7d4401f932869a4aec747d1ffc1bfec\"}, \"mark\": {\"type\": \"text\", \"align\": \"right\", \"baseline\": \"bottom\", \"dx\": 0, \"opacity\": 0.5, \"size\": 18}, \"encoding\": {\"text\": {\"type\": \"nominal\", \"field\": \"labelText\"}, \"x\": {\"type\": \"quantitative\", \"field\": \"labelX\"}, \"y\": {\"type\": \"quantitative\", \"field\": \"labelY\"}}}]}, {\"mark\": \"point\", \"encoding\": {\"opacity\": {\"value\": 0}, \"x\": {\"type\": \"quantitative\", \"field\": \"sinceDay0\"}}, \"selection\": {\"selector004\": {\"type\": \"single\", \"nearest\": true, \"on\": \"mouseover\", \"fields\": [\"sinceDay0\"]}}}, {\"data\": {\"name\": \"data-cf6f9c8a0e99cbf4f70076b41ebc7306\"}, \"mark\": {\"type\": \"text\", \"align\": \"center\", \"dx\": 3, \"dy\": -20}, \"encoding\": {\"color\": {\"type\": \"nominal\", \"field\": \"state\"}, \"text\": {\"condition\": {\"type\": \"quantitative\", \"field\": \"death\", \"selection\": \"selector004\"}, \"value\": \" \"}, \"tooltip\": [{\"type\": \"nominal\", \"field\": \"state\"}, {\"type\": \"quantitative\", \"field\": \"sinceDay0\"}, {\"type\": \"quantitative\", \"field\": \"death\"}, {\"type\": \"quantitative\", \"field\": \"positive\"}], \"x\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"Days Since 10th Death\"}, \"field\": \"sinceDay0\"}, \"y\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"Cumulative Deaths\"}, \"field\": \"death\", \"scale\": {\"type\": \"log\"}}}, \"height\": 500, \"title\": \"US States: Cumulative Deaths Since 10th Death\", \"width\": 800}], \"data\": {\"name\": \"data-cf6f9c8a0e99cbf4f70076b41ebc7306\"}, \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.0.2.json\", \"datasets\": {\"data-cf6f9c8a0e99cbf4f70076b41ebc7306\": [{\"index\": 169, \"date\": \"2020-03-31T00:00:00\", \"state\": \"AL\", \"positive\": 981.0, \"negative\": 6298.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"42eecba7755e229592355c2a117a0c76245f655a\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 13.0, \"hospitalized\": null, \"total\": 7279, \"totalTestResults\": 7279, \"posNeg\": 7279, \"fips\": 1, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 604.0, \"positiveIncrease\": 122.0, \"totalTestResultsIncrease\": 726.0, \"ratio\": 0.1347712597884325, \"sinceDay0\": 0}, {\"index\": 113, \"date\": \"2020-04-01T00:00:00\", \"state\": \"AL\", \"positive\": 1077.0, \"negative\": 6697.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9bd398e733a5ca5042bde1fd8ce2831fc248b0b1\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 26.0, \"hospitalized\": null, \"total\": 7774, \"totalTestResults\": 7774, \"posNeg\": 7774, \"fips\": 1, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 399.0, \"positiveIncrease\": 96.0, \"totalTestResultsIncrease\": 495.0, \"ratio\": 0.13853871880627733, \"sinceDay0\": 1}, {\"index\": 57, \"date\": \"2020-04-02T00:00:00\", \"state\": \"AL\", \"positive\": 1233.0, \"negative\": 7503.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1a78d31c95bd0d315fc61461107fcd8c66e53b43\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 32.0, \"hospitalized\": null, \"total\": 8736, \"totalTestResults\": 8736, \"posNeg\": 8736, \"fips\": 1, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 806.0, \"positiveIncrease\": 156.0, \"totalTestResultsIncrease\": 962.0, \"ratio\": 0.1411401098901099, \"sinceDay0\": 2}, {\"index\": 1, \"date\": \"2020-04-03T00:00:00\", \"state\": \"AL\", \"positive\": 1432.0, \"negative\": 8187.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"2321b8fce440dd33ac0feef0e923113ffffbf603\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 35.0, \"hospitalized\": null, \"total\": 9619, \"totalTestResults\": 9619, \"posNeg\": 9619, \"fips\": 1, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 684.0, \"positiveIncrease\": 199.0, \"totalTestResultsIncrease\": 883.0, \"ratio\": 0.14887202411893127, \"sinceDay0\": 3}, {\"index\": 114, \"date\": \"2020-04-01T00:00:00\", \"state\": \"AR\", \"positive\": 584.0, \"negative\": 7354.0, \"pending\": null, \"hospitalizedCurrently\": 56.0, \"hospitalizedCumulative\": 90.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 25.0, \"onVentilatorCumulative\": 32.0, \"recovered\": 42.0, \"hash\": \"eb0f33b592be1e182660fe530097a09b66431f2c\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 10.0, \"hospitalized\": 90.0, \"total\": 7938, \"totalTestResults\": 7938, \"posNeg\": 7938, \"fips\": 5, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 26.0, \"negativeIncrease\": 1395.0, \"positiveIncrease\": 61.0, \"totalTestResultsIncrease\": 1456.0, \"ratio\": 0.07357016880826404, \"sinceDay0\": 0}, {\"index\": 58, \"date\": \"2020-04-02T00:00:00\", \"state\": \"AR\", \"positive\": 643.0, \"negative\": 7880.0, \"pending\": null, \"hospitalizedCurrently\": 66.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 23.0, \"onVentilatorCumulative\": null, \"recovered\": 47.0, \"hash\": \"34259fa1839931debea61bd331ad6b244b1942b5\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 8523, \"totalTestResults\": 8523, \"posNeg\": 8523, \"fips\": 5, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 526.0, \"positiveIncrease\": 59.0, \"totalTestResultsIncrease\": 585.0, \"ratio\": 0.07544291915992021, \"sinceDay0\": 1}, {\"index\": 2, \"date\": \"2020-04-03T00:00:00\", \"state\": \"AR\", \"positive\": 704.0, \"negative\": 8995.0, \"pending\": null, \"hospitalizedCurrently\": 71.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 26.0, \"onVentilatorCumulative\": 39.0, \"recovered\": 60.0, \"hash\": \"1668b119de8dbd14c4334330a55a40591b632995\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 9699, \"totalTestResults\": 9699, \"posNeg\": 9699, \"fips\": 5, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1115.0, \"positiveIncrease\": 61.0, \"totalTestResultsIncrease\": 1176.0, \"ratio\": 0.07258480255696463, \"sinceDay0\": 2}, {\"index\": 396, \"date\": \"2020-03-27T00:00:00\", \"state\": \"AZ\", \"positive\": 736.0, \"negative\": 7455.0, \"pending\": 30.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ed32559e21a38aa4dcf186932bc2e858d1974669\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 13.0, \"hospitalized\": null, \"total\": 8221, \"totalTestResults\": 8191, \"posNeg\": 8191, \"fips\": 4, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 7108.0, \"positiveIncrease\": 159.0, \"totalTestResultsIncrease\": 7267.0, \"ratio\": 0.08952682155455541, \"sinceDay0\": 0}, {\"index\": 340, \"date\": \"2020-03-28T00:00:00\", \"state\": \"AZ\", \"positive\": 873.0, \"negative\": 7455.0, \"pending\": 21.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"06aad51da966e2299f0c0537e0cf4fbba4c6c696\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 15.0, \"hospitalized\": null, \"total\": 8349, \"totalTestResults\": 8328, \"posNeg\": 8328, \"fips\": 4, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 137.0, \"totalTestResultsIncrease\": 137.0, \"ratio\": 0.10456342076895436, \"sinceDay0\": 1}, {\"index\": 284, \"date\": \"2020-03-29T00:00:00\", \"state\": \"AZ\", \"positive\": 919.0, \"negative\": 12953.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 78.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 30.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"030af14227822ea13853568cdf2a79a864fc73d6\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 17.0, \"hospitalized\": 78.0, \"total\": 13872, \"totalTestResults\": 13872, \"posNeg\": 13872, \"fips\": 4, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 78.0, \"negativeIncrease\": 5498.0, \"positiveIncrease\": 46.0, \"totalTestResultsIncrease\": 5544.0, \"ratio\": 0.06624855824682814, \"sinceDay0\": 2}, {\"index\": 228, \"date\": \"2020-03-30T00:00:00\", \"state\": \"AZ\", \"positive\": 1157.0, \"negative\": 15602.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 78.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 30.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"7fed0e7f482053630e42fe6cde50397bc8aaeaac\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 20.0, \"hospitalized\": 78.0, \"total\": 16759, \"totalTestResults\": 16759, \"posNeg\": 16759, \"fips\": 4, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2649.0, \"positiveIncrease\": 238.0, \"totalTestResultsIncrease\": 2887.0, \"ratio\": 0.06903753207231936, \"sinceDay0\": 3}, {\"index\": 172, \"date\": \"2020-03-31T00:00:00\", \"state\": \"AZ\", \"positive\": 1289.0, \"negative\": 18082.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 78.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 30.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"7a61f6c2f0d045bd7450398a13971715a698bf8d\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 24.0, \"hospitalized\": 78.0, \"total\": 19371, \"totalTestResults\": 19371, \"posNeg\": 19371, \"fips\": 4, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2480.0, \"positiveIncrease\": 132.0, \"totalTestResultsIncrease\": 2612.0, \"ratio\": 0.0665427701202829, \"sinceDay0\": 4}, {\"index\": 116, \"date\": \"2020-04-01T00:00:00\", \"state\": \"AZ\", \"positive\": 1413.0, \"negative\": 19645.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 149.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 51.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5dd22577aa9da74dba6c60ec793ebf24511645e1\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 29.0, \"hospitalized\": 149.0, \"total\": 21058, \"totalTestResults\": 21058, \"posNeg\": 21058, \"fips\": 4, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 71.0, \"negativeIncrease\": 1563.0, \"positiveIncrease\": 124.0, \"totalTestResultsIncrease\": 1687.0, \"ratio\": 0.06710038940070281, \"sinceDay0\": 5}, {\"index\": 60, \"date\": \"2020-04-02T00:00:00\", \"state\": \"AZ\", \"positive\": 1598.0, \"negative\": 21111.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 228.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 83.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"51dcd56d6738e79b41c1c6d32c5454a7d2d1e2bf\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 32.0, \"hospitalized\": 228.0, \"total\": 22709, \"totalTestResults\": 22709, \"posNeg\": 22709, \"fips\": 4, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 79.0, \"negativeIncrease\": 1466.0, \"positiveIncrease\": 185.0, \"totalTestResultsIncrease\": 1651.0, \"ratio\": 0.07036857633537363, \"sinceDay0\": 6}, {\"index\": 4, \"date\": \"2020-04-03T00:00:00\", \"state\": \"AZ\", \"positive\": 1769.0, \"negative\": 22904.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 249.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 91.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"86d38836c9910dcfeb9ec4779c20c399d8da103d\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 41.0, \"hospitalized\": 249.0, \"total\": 24673, \"totalTestResults\": 24673, \"posNeg\": 24673, \"fips\": 4, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 21.0, \"negativeIncrease\": 1793.0, \"positiveIncrease\": 171.0, \"totalTestResultsIncrease\": 1964.0, \"ratio\": 0.07169780731974223, \"sinceDay0\": 7}, {\"index\": 957, \"date\": \"2020-03-17T00:00:00\", \"state\": \"CA\", \"positive\": 483.0, \"negative\": 7981.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"3a5a29b79b4583de68455525d065127db6a3e97b\", \"dateChecked\": \"2020-03-17T20:00:00Z\", \"death\": 11.0, \"hospitalized\": null, \"total\": 8464, \"totalTestResults\": 8464, \"posNeg\": 8464, \"fips\": 6, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 148.0, \"totalTestResultsIncrease\": 148.0, \"ratio\": 0.057065217391304345, \"sinceDay0\": 0}, {\"index\": 901, \"date\": \"2020-03-18T00:00:00\", \"state\": \"CA\", \"positive\": 611.0, \"negative\": 7981.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"646da42647f99037e2c2b31faf21a04c5b5ff197\", \"dateChecked\": \"2020-03-18T20:00:00Z\", \"death\": 13.0, \"hospitalized\": null, \"total\": 8592, \"totalTestResults\": 8592, \"posNeg\": 8592, \"fips\": 6, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 128.0, \"totalTestResultsIncrease\": 128.0, \"ratio\": 0.07111266294227188, \"sinceDay0\": 1}, {\"index\": 845, \"date\": \"2020-03-19T00:00:00\", \"state\": \"CA\", \"positive\": 924.0, \"negative\": 8787.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b9c67f8fde621d5bb8895c6a6fcbdcf8440ccf2a\", \"dateChecked\": \"2020-03-19T20:00:00Z\", \"death\": 18.0, \"hospitalized\": null, \"total\": 9711, \"totalTestResults\": 9711, \"posNeg\": 9711, \"fips\": 6, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 806.0, \"positiveIncrease\": 313.0, \"totalTestResultsIncrease\": 1119.0, \"ratio\": 0.09514983008958913, \"sinceDay0\": 2}, {\"index\": 789, \"date\": \"2020-03-20T00:00:00\", \"state\": \"CA\", \"positive\": 1063.0, \"negative\": 10424.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"22cfcbb820f66309386b4bdfdf47a806dd894a62\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 20.0, \"hospitalized\": null, \"total\": 11487, \"totalTestResults\": 11487, \"posNeg\": 11487, \"fips\": 6, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1637.0, \"positiveIncrease\": 139.0, \"totalTestResultsIncrease\": 1776.0, \"ratio\": 0.092539392356577, \"sinceDay0\": 3}, {\"index\": 733, \"date\": \"2020-03-21T00:00:00\", \"state\": \"CA\", \"positive\": 1279.0, \"negative\": 11249.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"49c4e45a8661e84906ca87575ab8d30e7c494b6c\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 24.0, \"hospitalized\": null, \"total\": 12528, \"totalTestResults\": 12528, \"posNeg\": 12528, \"fips\": 6, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 825.0, \"positiveIncrease\": 216.0, \"totalTestResultsIncrease\": 1041.0, \"ratio\": 0.10209131545338442, \"sinceDay0\": 4}, {\"index\": 677, \"date\": \"2020-03-22T00:00:00\", \"state\": \"CA\", \"positive\": 1536.0, \"negative\": 11304.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"894c0795f019e9dad5fb2ea4b76464bd93ca011e\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 27.0, \"hospitalized\": null, \"total\": 12840, \"totalTestResults\": 12840, \"posNeg\": 12840, \"fips\": 6, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 55.0, \"positiveIncrease\": 257.0, \"totalTestResultsIncrease\": 312.0, \"ratio\": 0.11962616822429907, \"sinceDay0\": 5}, {\"index\": 621, \"date\": \"2020-03-23T00:00:00\", \"state\": \"CA\", \"positive\": 1733.0, \"negative\": 12567.0, \"pending\": 12100.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"71c982ee815f7305f8cc4c93014774584620fa5f\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 27.0, \"hospitalized\": null, \"total\": 26400, \"totalTestResults\": 14300, \"posNeg\": 14300, \"fips\": 6, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1263.0, \"positiveIncrease\": 197.0, \"totalTestResultsIncrease\": 1460.0, \"ratio\": 0.0656439393939394, \"sinceDay0\": 6}, {\"index\": 565, \"date\": \"2020-03-24T00:00:00\", \"state\": \"CA\", \"positive\": 2102.0, \"negative\": 13452.0, \"pending\": 12100.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"de4019ee1e7e99d093947ecd2a91c6093439f221\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 40.0, \"hospitalized\": null, \"total\": 27654, \"totalTestResults\": 15554, \"posNeg\": 15554, \"fips\": 6, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 885.0, \"positiveIncrease\": 369.0, \"totalTestResultsIncrease\": 1254.0, \"ratio\": 0.0760107036956679, \"sinceDay0\": 7}, {\"index\": 509, \"date\": \"2020-03-25T00:00:00\", \"state\": \"CA\", \"positive\": 2355.0, \"negative\": 15921.0, \"pending\": 48600.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8d9cf944b6bf56c413644ce7729ef18efa3d75a0\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 53.0, \"hospitalized\": null, \"total\": 66876, \"totalTestResults\": 18276, \"posNeg\": 18276, \"fips\": 6, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2469.0, \"positiveIncrease\": 253.0, \"totalTestResultsIncrease\": 2722.0, \"ratio\": 0.03521442670016149, \"sinceDay0\": 8}, {\"index\": 453, \"date\": \"2020-03-26T00:00:00\", \"state\": \"CA\", \"positive\": 3006.0, \"negative\": 17380.0, \"pending\": 57400.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d073989819811eaa4edd1a4f71a3716c44b653ac\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 65.0, \"hospitalized\": null, \"total\": 77786, \"totalTestResults\": 20386, \"posNeg\": 20386, \"fips\": 6, \"deathIncrease\": 12.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1459.0, \"positiveIncrease\": 651.0, \"totalTestResultsIncrease\": 2110.0, \"ratio\": 0.038644486154320826, \"sinceDay0\": 9}, {\"index\": 397, \"date\": \"2020-03-27T00:00:00\", \"state\": \"CA\", \"positive\": 3879.0, \"negative\": 17380.0, \"pending\": 57400.0, \"hospitalizedCurrently\": 746.0, \"hospitalizedCumulative\": 746.0, \"inIcuCurrently\": 200.0, \"inIcuCumulative\": 200.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"10bb2a3981dc15348851c537abdb117a3e09d2a3\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 78.0, \"hospitalized\": 746.0, \"total\": 78659, \"totalTestResults\": 21259, \"posNeg\": 21259, \"fips\": 6, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 746.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 873.0, \"totalTestResultsIncrease\": 873.0, \"ratio\": 0.04931412807180361, \"sinceDay0\": 10}, {\"index\": 341, \"date\": \"2020-03-28T00:00:00\", \"state\": \"CA\", \"positive\": 4643.0, \"negative\": 20549.0, \"pending\": 64400.0, \"hospitalizedCurrently\": 1034.0, \"hospitalizedCumulative\": 1034.0, \"inIcuCurrently\": 410.0, \"inIcuCumulative\": 410.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8c30beb89dd131ed8a1aacaa4d70b47e58810777\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 101.0, \"hospitalized\": 1034.0, \"total\": 89592, \"totalTestResults\": 25192, \"posNeg\": 25192, \"fips\": 6, \"deathIncrease\": 23.0, \"hospitalizedIncrease\": 288.0, \"negativeIncrease\": 3169.0, \"positiveIncrease\": 764.0, \"totalTestResultsIncrease\": 3933.0, \"ratio\": 0.051823823555674615, \"sinceDay0\": 11}, {\"index\": 285, \"date\": \"2020-03-29T00:00:00\", \"state\": \"CA\", \"positive\": 5708.0, \"negative\": 20549.0, \"pending\": 64400.0, \"hospitalizedCurrently\": 1034.0, \"hospitalizedCumulative\": 1034.0, \"inIcuCurrently\": 410.0, \"inIcuCumulative\": 410.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1b6fd0782f7e0f6178ea2f83a468c5d2471cc0d7\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 123.0, \"hospitalized\": 1034.0, \"total\": 90657, \"totalTestResults\": 26257, \"posNeg\": 26257, \"fips\": 6, \"deathIncrease\": 22.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 1065.0, \"totalTestResultsIncrease\": 1065.0, \"ratio\": 0.0629625952767023, \"sinceDay0\": 12}, {\"index\": 229, \"date\": \"2020-03-30T00:00:00\", \"state\": \"CA\", \"positive\": 6447.0, \"negative\": 20549.0, \"pending\": 64400.0, \"hospitalizedCurrently\": 1432.0, \"hospitalizedCumulative\": 1432.0, \"inIcuCurrently\": 597.0, \"inIcuCumulative\": 597.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b2fd37c8b374d544e8f30c2b619be88799980737\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 133.0, \"hospitalized\": 1432.0, \"total\": 91396, \"totalTestResults\": 26996, \"posNeg\": 26996, \"fips\": 6, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 398.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 739.0, \"totalTestResultsIncrease\": 739.0, \"ratio\": 0.07053919208718105, \"sinceDay0\": 13}, {\"index\": 173, \"date\": \"2020-03-31T00:00:00\", \"state\": \"CA\", \"positive\": 7482.0, \"negative\": 21772.0, \"pending\": 57400.0, \"hospitalizedCurrently\": 1617.0, \"hospitalizedCumulative\": 1617.0, \"inIcuCurrently\": 657.0, \"inIcuCumulative\": 657.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8aa120a4c2d14e4da8b37e1148edb1eec68c9797\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 153.0, \"hospitalized\": 1617.0, \"total\": 86654, \"totalTestResults\": 29254, \"posNeg\": 29254, \"fips\": 6, \"deathIncrease\": 20.0, \"hospitalizedIncrease\": 185.0, \"negativeIncrease\": 1223.0, \"positiveIncrease\": 1035.0, \"totalTestResultsIncrease\": 2258.0, \"ratio\": 0.08634338864911026, \"sinceDay0\": 14}, {\"index\": 117, \"date\": \"2020-04-01T00:00:00\", \"state\": \"CA\", \"positive\": 8155.0, \"negative\": 21772.0, \"pending\": 57400.0, \"hospitalizedCurrently\": 1855.0, \"hospitalizedCumulative\": 1855.0, \"inIcuCurrently\": 774.0, \"inIcuCumulative\": 774.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"6fb93efce94c15c30e753005c45c7b45e390198c\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 171.0, \"hospitalized\": 1855.0, \"total\": 87327, \"totalTestResults\": 29927, \"posNeg\": 29927, \"fips\": 6, \"deathIncrease\": 18.0, \"hospitalizedIncrease\": 238.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 673.0, \"totalTestResultsIncrease\": 673.0, \"ratio\": 0.09338463476358973, \"sinceDay0\": 15}, {\"index\": 61, \"date\": \"2020-04-02T00:00:00\", \"state\": \"CA\", \"positive\": 9191.0, \"negative\": 23809.0, \"pending\": 59500.0, \"hospitalizedCurrently\": 1922.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": 816.0, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"99877fe91b05bb13daef3f63c02c50d2a271e7f5\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 203.0, \"hospitalized\": null, \"total\": 92500, \"totalTestResults\": 33000, \"posNeg\": 33000, \"fips\": 6, \"deathIncrease\": 32.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2037.0, \"positiveIncrease\": 1036.0, \"totalTestResultsIncrease\": 3073.0, \"ratio\": 0.09936216216216216, \"sinceDay0\": 16}, {\"index\": 5, \"date\": \"2020-04-03T00:00:00\", \"state\": \"CA\", \"positive\": 10701.0, \"negative\": 24599.0, \"pending\": 59500.0, \"hospitalizedCurrently\": 2188.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": 901.0, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"67f105bfa3690e07b85e362a0c6c43aa796aba45\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 237.0, \"hospitalized\": null, \"total\": 94800, \"totalTestResults\": 35300, \"posNeg\": 35300, \"fips\": 6, \"deathIncrease\": 34.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 790.0, \"positiveIncrease\": 1510.0, \"totalTestResultsIncrease\": 2300.0, \"ratio\": 0.11287974683544304, \"sinceDay0\": 17}, {\"index\": 510, \"date\": \"2020-03-25T00:00:00\", \"state\": \"CO\", \"positive\": 912.0, \"negative\": 6789.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 84.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8c313a278c9f6cf6f983d33ae981c70da8f94b76\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 11.0, \"hospitalized\": 84.0, \"total\": 7701, \"totalTestResults\": 7701, \"posNeg\": 7701, \"fips\": 8, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 12.0, \"negativeIncrease\": 1285.0, \"positiveIncrease\": 192.0, \"totalTestResultsIncrease\": 1477.0, \"ratio\": 0.11842617841838722, \"sinceDay0\": 0}, {\"index\": 454, \"date\": \"2020-03-26T00:00:00\", \"state\": \"CO\", \"positive\": 1086.0, \"negative\": 6978.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 148.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"cbe89fafefaf1d9173be314f959f33e567cf4dd2\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 19.0, \"hospitalized\": 148.0, \"total\": 8064, \"totalTestResults\": 8064, \"posNeg\": 8064, \"fips\": 8, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 64.0, \"negativeIncrease\": 189.0, \"positiveIncrease\": 174.0, \"totalTestResultsIncrease\": 363.0, \"ratio\": 0.13467261904761904, \"sinceDay0\": 1}, {\"index\": 398, \"date\": \"2020-03-27T00:00:00\", \"state\": \"CO\", \"positive\": 1430.0, \"negative\": 8692.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 184.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9429f394429920c07d58b96d744275aaed7bb88b\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 24.0, \"hospitalized\": 184.0, \"total\": 10122, \"totalTestResults\": 10122, \"posNeg\": 10122, \"fips\": 8, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 36.0, \"negativeIncrease\": 1714.0, \"positiveIncrease\": 344.0, \"totalTestResultsIncrease\": 2058.0, \"ratio\": 0.14127642758348152, \"sinceDay0\": 2}, {\"index\": 342, \"date\": \"2020-03-28T00:00:00\", \"state\": \"CO\", \"positive\": 1734.0, \"negative\": 9942.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 239.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"037a22a41313b25a40b92f4113fa04f784d3b5c1\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 31.0, \"hospitalized\": 239.0, \"total\": 11676, \"totalTestResults\": 11676, \"posNeg\": 11676, \"fips\": 8, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 55.0, \"negativeIncrease\": 1250.0, \"positiveIncrease\": 304.0, \"totalTestResultsIncrease\": 1554.0, \"ratio\": 0.1485097636176773, \"sinceDay0\": 3}, {\"index\": 286, \"date\": \"2020-03-29T00:00:00\", \"state\": \"CO\", \"positive\": 2061.0, \"negative\": 11215.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 274.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"73715d6db63053b6e3b672daf90f74bd2164eef6\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 44.0, \"hospitalized\": 274.0, \"total\": 13276, \"totalTestResults\": 13276, \"posNeg\": 13276, \"fips\": 8, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 35.0, \"negativeIncrease\": 1273.0, \"positiveIncrease\": 327.0, \"totalTestResultsIncrease\": 1600.0, \"ratio\": 0.15524254293461887, \"sinceDay0\": 4}, {\"index\": 230, \"date\": \"2020-03-30T00:00:00\", \"state\": \"CO\", \"positive\": 2627.0, \"negative\": 12737.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 414.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"2f09674b8bfb4f141d2ef246cfc410dd972a1efc\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 51.0, \"hospitalized\": 414.0, \"total\": 15364, \"totalTestResults\": 15364, \"posNeg\": 15364, \"fips\": 8, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 140.0, \"negativeIncrease\": 1522.0, \"positiveIncrease\": 566.0, \"totalTestResultsIncrease\": 2088.0, \"ratio\": 0.17098411871908356, \"sinceDay0\": 5}, {\"index\": 174, \"date\": \"2020-03-31T00:00:00\", \"state\": \"CO\", \"positive\": 2627.0, \"negative\": 12737.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 414.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"94036534fc5ae0cbc3e63e2576bdb553dda374c1\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 51.0, \"hospitalized\": 414.0, \"total\": 15364, \"totalTestResults\": 15364, \"posNeg\": 15364, \"fips\": 8, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.17098411871908356, \"sinceDay0\": 6}, {\"index\": 118, \"date\": \"2020-04-01T00:00:00\", \"state\": \"CO\", \"positive\": 2966.0, \"negative\": 13883.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 509.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a3ee849de14da82b70a71d32f063b1237b9dff2b\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 69.0, \"hospitalized\": 509.0, \"total\": 16849, \"totalTestResults\": 16849, \"posNeg\": 16849, \"fips\": 8, \"deathIncrease\": 18.0, \"hospitalizedIncrease\": 95.0, \"negativeIncrease\": 1146.0, \"positiveIncrease\": 339.0, \"totalTestResultsIncrease\": 1485.0, \"ratio\": 0.17603418600510415, \"sinceDay0\": 7}, {\"index\": 62, \"date\": \"2020-04-02T00:00:00\", \"state\": \"CO\", \"positive\": 3342.0, \"negative\": 15303.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 620.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"87f72739eeb827250a64fd310d95871229e9020f\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 80.0, \"hospitalized\": 620.0, \"total\": 18645, \"totalTestResults\": 18645, \"posNeg\": 18645, \"fips\": 8, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 111.0, \"negativeIncrease\": 1420.0, \"positiveIncrease\": 376.0, \"totalTestResultsIncrease\": 1796.0, \"ratio\": 0.17924376508447304, \"sinceDay0\": 8}, {\"index\": 6, \"date\": \"2020-04-03T00:00:00\", \"state\": \"CO\", \"positive\": 3728.0, \"negative\": 16683.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 710.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"34cd672827b7383da28377a0761440041fae9232\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 97.0, \"hospitalized\": 710.0, \"total\": 20411, \"totalTestResults\": 20411, \"posNeg\": 20411, \"fips\": 8, \"deathIncrease\": 17.0, \"hospitalizedIncrease\": 90.0, \"negativeIncrease\": 1380.0, \"positiveIncrease\": 386.0, \"totalTestResultsIncrease\": 1766.0, \"ratio\": 0.18264661212091518, \"sinceDay0\": 9}, {\"index\": 623, \"date\": \"2020-03-23T00:00:00\", \"state\": \"CT\", \"positive\": 415.0, \"negative\": 4085.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 54.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"2518c62f7473aa16f7d4006600fa46f294a5365e\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 10.0, \"hospitalized\": 54.0, \"total\": 4500, \"totalTestResults\": 4500, \"posNeg\": 4500, \"fips\": 9, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 11.0, \"negativeIncrease\": 1208.0, \"positiveIncrease\": 192.0, \"totalTestResultsIncrease\": 1400.0, \"ratio\": 0.09222222222222222, \"sinceDay0\": 0}, {\"index\": 567, \"date\": \"2020-03-24T00:00:00\", \"state\": \"CT\", \"positive\": 618.0, \"negative\": 4682.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 71.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"612d0cb8b3d8f54b99ab9aeb2e9cfd65b7f5e923\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 12.0, \"hospitalized\": 71.0, \"total\": 5300, \"totalTestResults\": 5300, \"posNeg\": 5300, \"fips\": 9, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 17.0, \"negativeIncrease\": 597.0, \"positiveIncrease\": 203.0, \"totalTestResultsIncrease\": 800.0, \"ratio\": 0.11660377358490566, \"sinceDay0\": 1}, {\"index\": 511, \"date\": \"2020-03-25T00:00:00\", \"state\": \"CT\", \"positive\": 875.0, \"negative\": 5023.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 113.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"7fd69cdd6c25f9c6b2da4c3feb12f0ac36c44c16\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 19.0, \"hospitalized\": 113.0, \"total\": 5898, \"totalTestResults\": 5898, \"posNeg\": 5898, \"fips\": 9, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 42.0, \"negativeIncrease\": 341.0, \"positiveIncrease\": 257.0, \"totalTestResultsIncrease\": 598.0, \"ratio\": 0.14835537470328924, \"sinceDay0\": 2}, {\"index\": 455, \"date\": \"2020-03-26T00:00:00\", \"state\": \"CT\", \"positive\": 1012.0, \"negative\": 5625.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 125.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"051ee3a0ff5962ca5aa0f29cad1950bc8408c88a\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 21.0, \"hospitalized\": 125.0, \"total\": 6637, \"totalTestResults\": 6637, \"posNeg\": 6637, \"fips\": 9, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 12.0, \"negativeIncrease\": 602.0, \"positiveIncrease\": 137.0, \"totalTestResultsIncrease\": 739.0, \"ratio\": 0.15247852945607956, \"sinceDay0\": 3}, {\"index\": 399, \"date\": \"2020-03-27T00:00:00\", \"state\": \"CT\", \"positive\": 1291.0, \"negative\": 7109.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 173.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"3c8514200b49122389594ce0362801f8667bfc67\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 27.0, \"hospitalized\": 173.0, \"total\": 8400, \"totalTestResults\": 8400, \"posNeg\": 8400, \"fips\": 9, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 48.0, \"negativeIncrease\": 1484.0, \"positiveIncrease\": 279.0, \"totalTestResultsIncrease\": 1763.0, \"ratio\": 0.15369047619047618, \"sinceDay0\": 4}, {\"index\": 343, \"date\": \"2020-03-28T00:00:00\", \"state\": \"CT\", \"positive\": 1291.0, \"negative\": 7109.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 173.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"86371e1868776142a360e113c0677d283d829a84\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 27.0, \"hospitalized\": 173.0, \"total\": 8400, \"totalTestResults\": 8400, \"posNeg\": 8400, \"fips\": 9, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.15369047619047618, \"sinceDay0\": 5}, {\"index\": 287, \"date\": \"2020-03-29T00:00:00\", \"state\": \"CT\", \"positive\": 1993.0, \"negative\": 9907.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 404.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"81670eca1c3cba6fb7e9c07bec78ea6eeba53e4e\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 34.0, \"hospitalized\": 404.0, \"total\": 11900, \"totalTestResults\": 11900, \"posNeg\": 11900, \"fips\": 9, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 231.0, \"negativeIncrease\": 2798.0, \"positiveIncrease\": 702.0, \"totalTestResultsIncrease\": 3500.0, \"ratio\": 0.16747899159663865, \"sinceDay0\": 6}, {\"index\": 231, \"date\": \"2020-03-30T00:00:00\", \"state\": \"CT\", \"positive\": 2571.0, \"negative\": 12029.0, \"pending\": null, \"hospitalizedCurrently\": 517.0, \"hospitalizedCumulative\": 517.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d485d42512127c98051f824a384ea55685212a39\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 36.0, \"hospitalized\": 517.0, \"total\": 14600, \"totalTestResults\": 14600, \"posNeg\": 14600, \"fips\": 9, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 113.0, \"negativeIncrease\": 2122.0, \"positiveIncrease\": 578.0, \"totalTestResultsIncrease\": 2700.0, \"ratio\": 0.1760958904109589, \"sinceDay0\": 7}, {\"index\": 175, \"date\": \"2020-03-31T00:00:00\", \"state\": \"CT\", \"positive\": 3128.0, \"negative\": 13029.0, \"pending\": null, \"hospitalizedCurrently\": 608.0, \"hospitalizedCumulative\": 608.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"cc7f9b9641974587a09bd4816bc59a78cd471641\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 69.0, \"hospitalized\": 608.0, \"total\": 16157, \"totalTestResults\": 16157, \"posNeg\": 16157, \"fips\": 9, \"deathIncrease\": 33.0, \"hospitalizedIncrease\": 91.0, \"negativeIncrease\": 1000.0, \"positiveIncrease\": 557.0, \"totalTestResultsIncrease\": 1557.0, \"ratio\": 0.19360029708485485, \"sinceDay0\": 8}, {\"index\": 119, \"date\": \"2020-04-01T00:00:00\", \"state\": \"CT\", \"positive\": 3557.0, \"negative\": 13043.0, \"pending\": null, \"hospitalizedCurrently\": 766.0, \"hospitalizedCumulative\": 766.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f749f0110af60be2bb7eda83cf543c95cfbfac5d\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 85.0, \"hospitalized\": 766.0, \"total\": 16600, \"totalTestResults\": 16600, \"posNeg\": 16600, \"fips\": 9, \"deathIncrease\": 16.0, \"hospitalizedIncrease\": 158.0, \"negativeIncrease\": 14.0, \"positiveIncrease\": 429.0, \"totalTestResultsIncrease\": 443.0, \"ratio\": 0.21427710843373493, \"sinceDay0\": 9}, {\"index\": 63, \"date\": \"2020-04-02T00:00:00\", \"state\": \"CT\", \"positive\": 3824.0, \"negative\": 14476.0, \"pending\": null, \"hospitalizedCurrently\": 827.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"bbaf84bc79e98252465e76199b3d66cb58316223\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 112.0, \"hospitalized\": null, \"total\": 18300, \"totalTestResults\": 18300, \"posNeg\": 18300, \"fips\": 9, \"deathIncrease\": 27.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1433.0, \"positiveIncrease\": 267.0, \"totalTestResultsIncrease\": 1700.0, \"ratio\": 0.20896174863387978, \"sinceDay0\": 10}, {\"index\": 7, \"date\": \"2020-04-03T00:00:00\", \"state\": \"CT\", \"positive\": 4914.0, \"negative\": 15101.0, \"pending\": null, \"hospitalizedCurrently\": 909.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1951d0ca03e6ab2d9bffc4856b060402c69ea7e6\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 131.0, \"hospitalized\": null, \"total\": 20015, \"totalTestResults\": 20015, \"posNeg\": 20015, \"fips\": 9, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 625.0, \"positiveIncrease\": 1090.0, \"totalTestResultsIncrease\": 1715.0, \"ratio\": 0.24551586310267298, \"sinceDay0\": 11}, {\"index\": 120, \"date\": \"2020-04-01T00:00:00\", \"state\": \"DC\", \"positive\": 586.0, \"negative\": 3262.0, \"pending\": 2.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 142.0, \"hash\": \"8a7aef6408b5c008467ada52ef83bc9e47d8af28\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 11.0, \"hospitalized\": null, \"total\": 3850, \"totalTestResults\": 3848, \"posNeg\": 3848, \"fips\": 11, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 91.0, \"totalTestResultsIncrease\": 91.0, \"ratio\": 0.1522077922077922, \"sinceDay0\": 0}, {\"index\": 64, \"date\": \"2020-04-02T00:00:00\", \"state\": \"DC\", \"positive\": 653.0, \"negative\": 4417.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 173.0, \"hash\": \"bb0f0a7da39336cefc7629d9814ca0bd2a83e358\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 5070, \"totalTestResults\": 5070, \"posNeg\": 5070, \"fips\": 11, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1155.0, \"positiveIncrease\": 67.0, \"totalTestResultsIncrease\": 1222.0, \"ratio\": 0.12879684418145956, \"sinceDay0\": 1}, {\"index\": 8, \"date\": \"2020-04-03T00:00:00\", \"state\": \"DC\", \"positive\": 757.0, \"negative\": 4827.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 206.0, \"hash\": \"fbf3f83530b301cee1d7dc47fd0719b435edc428\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 15.0, \"hospitalized\": null, \"total\": 5584, \"totalTestResults\": 5584, \"posNeg\": 5584, \"fips\": 11, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 410.0, \"positiveIncrease\": 104.0, \"totalTestResultsIncrease\": 514.0, \"ratio\": 0.13556590257879655, \"sinceDay0\": 2}, {\"index\": 177, \"date\": \"2020-03-31T00:00:00\", \"state\": \"DE\", \"positive\": 319.0, \"negative\": 3696.0, \"pending\": null, \"hospitalizedCurrently\": 57.0, \"hospitalizedCumulative\": 64.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 22.0, \"hash\": \"0c6d62603ac04630bbfa9dc6e129f4f9d58307d5\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 10.0, \"hospitalized\": 64.0, \"total\": 4015, \"totalTestResults\": 4015, \"posNeg\": 4015, \"fips\": 10, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 19.0, \"negativeIncrease\": 1480.0, \"positiveIncrease\": 55.0, \"totalTestResultsIncrease\": 1535.0, \"ratio\": 0.07945205479452055, \"sinceDay0\": 0}, {\"index\": 121, \"date\": \"2020-04-01T00:00:00\", \"state\": \"DE\", \"positive\": 368.0, \"negative\": 4015.0, \"pending\": null, \"hospitalizedCurrently\": 51.0, \"hospitalizedCumulative\": 57.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 49.0, \"hash\": \"baa25d2006bd8abfc80790eac0381985836fa4f4\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 11.0, \"hospitalized\": 57.0, \"total\": 4383, \"totalTestResults\": 4383, \"posNeg\": 4383, \"fips\": 10, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": -7.0, \"negativeIncrease\": 319.0, \"positiveIncrease\": 49.0, \"totalTestResultsIncrease\": 368.0, \"ratio\": 0.0839607574720511, \"sinceDay0\": 1}, {\"index\": 65, \"date\": \"2020-04-02T00:00:00\", \"state\": \"DE\", \"positive\": 393.0, \"negative\": 4566.0, \"pending\": null, \"hospitalizedCurrently\": 56.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 49.0, \"hash\": \"ed433f1aae9fc98fb0f7510f5bbd3f0bd9cdf5ab\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 4959, \"totalTestResults\": 4959, \"posNeg\": 4959, \"fips\": 10, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 551.0, \"positiveIncrease\": 25.0, \"totalTestResultsIncrease\": 576.0, \"ratio\": 0.07924984875983061, \"sinceDay0\": 2}, {\"index\": 9, \"date\": \"2020-04-03T00:00:00\", \"state\": \"DE\", \"positive\": 450.0, \"negative\": 4995.0, \"pending\": null, \"hospitalizedCurrently\": 63.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 71.0, \"hash\": \"b840b5921e6e7a1adc67cdefd1c22f4e046d277a\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 14.0, \"hospitalized\": null, \"total\": 5445, \"totalTestResults\": 5445, \"posNeg\": 5445, \"fips\": 10, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 429.0, \"positiveIncrease\": 57.0, \"totalTestResultsIncrease\": 486.0, \"ratio\": 0.08264462809917356, \"sinceDay0\": 3}, {\"index\": 794, \"date\": \"2020-03-20T00:00:00\", \"state\": \"FL\", \"positive\": 520.0, \"negative\": 1870.0, \"pending\": 1026.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"18f30f4aef61df1aa3a4a339482c5ad20ea478ed\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 10.0, \"hospitalized\": null, \"total\": 3416, \"totalTestResults\": 2390, \"posNeg\": 2390, \"fips\": 12, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 337.0, \"positiveIncrease\": 130.0, \"totalTestResultsIncrease\": 467.0, \"ratio\": 0.1522248243559719, \"sinceDay0\": 0}, {\"index\": 738, \"date\": \"2020-03-21T00:00:00\", \"state\": \"FL\", \"positive\": 658.0, \"negative\": 6579.0, \"pending\": 1002.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 158.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9fcedaea4a2b5e2daad7c2ef3cae3d7c4a66d46c\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 12.0, \"hospitalized\": 158.0, \"total\": 8239, \"totalTestResults\": 7237, \"posNeg\": 7237, \"fips\": 12, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 158.0, \"negativeIncrease\": 4709.0, \"positiveIncrease\": 138.0, \"totalTestResultsIncrease\": 4847.0, \"ratio\": 0.07986406117247238, \"sinceDay0\": 1}, {\"index\": 682, \"date\": \"2020-03-22T00:00:00\", \"state\": \"FL\", \"positive\": 830.0, \"negative\": 7990.0, \"pending\": 963.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 185.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4e90c613758e8eb9c13d69d3d68c462bba4cb68f\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 13.0, \"hospitalized\": 185.0, \"total\": 9783, \"totalTestResults\": 8820, \"posNeg\": 8820, \"fips\": 12, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 27.0, \"negativeIncrease\": 1411.0, \"positiveIncrease\": 172.0, \"totalTestResultsIncrease\": 1583.0, \"ratio\": 0.08484105080241235, \"sinceDay0\": 2}, {\"index\": 626, \"date\": \"2020-03-23T00:00:00\", \"state\": \"FL\", \"positive\": 1171.0, \"negative\": 11063.0, \"pending\": 860.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 217.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"fefea265e78e4106c70c1907bee630dd8b5d76ad\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 14.0, \"hospitalized\": 217.0, \"total\": 13094, \"totalTestResults\": 12234, \"posNeg\": 12234, \"fips\": 12, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 32.0, \"negativeIncrease\": 3073.0, \"positiveIncrease\": 341.0, \"totalTestResultsIncrease\": 3414.0, \"ratio\": 0.08943027340766764, \"sinceDay0\": 3}, {\"index\": 570, \"date\": \"2020-03-24T00:00:00\", \"state\": \"FL\", \"positive\": 1412.0, \"negative\": 13127.0, \"pending\": 1008.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 259.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"01f224778b595c53a53b114c66966c5987214220\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 18.0, \"hospitalized\": 259.0, \"total\": 15547, \"totalTestResults\": 14539, \"posNeg\": 14539, \"fips\": 12, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 42.0, \"negativeIncrease\": 2064.0, \"positiveIncrease\": 241.0, \"totalTestResultsIncrease\": 2305.0, \"ratio\": 0.09082138033061041, \"sinceDay0\": 4}, {\"index\": 514, \"date\": \"2020-03-25T00:00:00\", \"state\": \"FL\", \"positive\": 1682.0, \"negative\": 15374.0, \"pending\": 1233.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 316.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"3824a66b112cf25a03e7e1701dc1af01026bd711\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 22.0, \"hospitalized\": 316.0, \"total\": 18289, \"totalTestResults\": 17056, \"posNeg\": 17056, \"fips\": 12, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 57.0, \"negativeIncrease\": 2247.0, \"positiveIncrease\": 270.0, \"totalTestResultsIncrease\": 2517.0, \"ratio\": 0.09196784952703811, \"sinceDay0\": 5}, {\"index\": 458, \"date\": \"2020-03-26T00:00:00\", \"state\": \"FL\", \"positive\": 2355.0, \"negative\": 23741.0, \"pending\": 1443.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 406.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1290ba6a489ffe158fa4333c279e73b7c728543e\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 28.0, \"hospitalized\": 406.0, \"total\": 27539, \"totalTestResults\": 26096, \"posNeg\": 26096, \"fips\": 12, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 90.0, \"negativeIncrease\": 8367.0, \"positiveIncrease\": 673.0, \"totalTestResultsIncrease\": 9040.0, \"ratio\": 0.08551508769381604, \"sinceDay0\": 6}, {\"index\": 402, \"date\": \"2020-03-27T00:00:00\", \"state\": \"FL\", \"positive\": 2765.0, \"negative\": 28186.0, \"pending\": 1517.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 456.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b93ab29f799aa9d89c0f98c7f427278725445572\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 34.0, \"hospitalized\": 456.0, \"total\": 32468, \"totalTestResults\": 30951, \"posNeg\": 30951, \"fips\": 12, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 50.0, \"negativeIncrease\": 4445.0, \"positiveIncrease\": 410.0, \"totalTestResultsIncrease\": 4855.0, \"ratio\": 0.08516077368485894, \"sinceDay0\": 7}, {\"index\": 346, \"date\": \"2020-03-28T00:00:00\", \"state\": \"FL\", \"positive\": 3763.0, \"negative\": 35366.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 526.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"14cf93a61518d7efeec334a7c7fb1c959060c9f8\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 54.0, \"hospitalized\": 526.0, \"total\": 39129, \"totalTestResults\": 39129, \"posNeg\": 39129, \"fips\": 12, \"deathIncrease\": 20.0, \"hospitalizedIncrease\": 70.0, \"negativeIncrease\": 7180.0, \"positiveIncrease\": 998.0, \"totalTestResultsIncrease\": 8178.0, \"ratio\": 0.09616908175521992, \"sinceDay0\": 8}, {\"index\": 290, \"date\": \"2020-03-29T00:00:00\", \"state\": \"FL\", \"positive\": 4246.0, \"negative\": 39070.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 594.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"39553e3ec095e3143e776031465d2e90ade6c787\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 56.0, \"hospitalized\": 594.0, \"total\": 43316, \"totalTestResults\": 43316, \"posNeg\": 43316, \"fips\": 12, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 68.0, \"negativeIncrease\": 3704.0, \"positiveIncrease\": 483.0, \"totalTestResultsIncrease\": 4187.0, \"ratio\": 0.09802382491458121, \"sinceDay0\": 9}, {\"index\": 234, \"date\": \"2020-03-30T00:00:00\", \"state\": \"FL\", \"positive\": 5473.0, \"negative\": 48225.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 652.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9a3e8154ce0eca0c63b55151a437a020a79406e3\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 63.0, \"hospitalized\": 652.0, \"total\": 53698, \"totalTestResults\": 53698, \"posNeg\": 53698, \"fips\": 12, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 58.0, \"negativeIncrease\": 9155.0, \"positiveIncrease\": 1227.0, \"totalTestResultsIncrease\": 10382.0, \"ratio\": 0.10192185928712429, \"sinceDay0\": 10}, {\"index\": 178, \"date\": \"2020-03-31T00:00:00\", \"state\": \"FL\", \"positive\": 6338.0, \"negative\": 54285.0, \"pending\": 1163.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 823.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c0d094c60a3352b108e4b759b45b066bd56cc068\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 77.0, \"hospitalized\": 823.0, \"total\": 61786, \"totalTestResults\": 60623, \"posNeg\": 60623, \"fips\": 12, \"deathIncrease\": 14.0, \"hospitalizedIncrease\": 171.0, \"negativeIncrease\": 6060.0, \"positiveIncrease\": 865.0, \"totalTestResultsIncrease\": 6925.0, \"ratio\": 0.10257987246301752, \"sinceDay0\": 11}, {\"index\": 122, \"date\": \"2020-04-01T00:00:00\", \"state\": \"FL\", \"positive\": 6955.0, \"negative\": 59529.0, \"pending\": 1235.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 949.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d9a24f33db59e2a7276a3019ee2e37f41f9bfb06\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 87.0, \"hospitalized\": 949.0, \"total\": 67719, \"totalTestResults\": 66484, \"posNeg\": 66484, \"fips\": 12, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 126.0, \"negativeIncrease\": 5244.0, \"positiveIncrease\": 617.0, \"totalTestResultsIncrease\": 5861.0, \"ratio\": 0.10270382019817186, \"sinceDay0\": 12}, {\"index\": 66, \"date\": \"2020-04-02T00:00:00\", \"state\": \"FL\", \"positive\": 8010.0, \"negative\": 69286.0, \"pending\": 1285.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1123.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"174161bf2644248219c4f77323f7aa378fc8d409\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 128.0, \"hospitalized\": 1123.0, \"total\": 78581, \"totalTestResults\": 77296, \"posNeg\": 77296, \"fips\": 12, \"deathIncrease\": 41.0, \"hospitalizedIncrease\": 174.0, \"negativeIncrease\": 9757.0, \"positiveIncrease\": 1055.0, \"totalTestResultsIncrease\": 10812.0, \"ratio\": 0.10193303724818976, \"sinceDay0\": 13}, {\"index\": 10, \"date\": \"2020-04-03T00:00:00\", \"state\": \"FL\", \"positive\": 9585.0, \"negative\": 82137.0, \"pending\": 1225.0, \"hospitalizedCurrently\": 1215.0, \"hospitalizedCumulative\": 1287.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"fd0c37309c79ae95c06c48e43ce956652814c5e5\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 163.0, \"hospitalized\": 1287.0, \"total\": 92947, \"totalTestResults\": 91722, \"posNeg\": 91722, \"fips\": 12, \"deathIncrease\": 35.0, \"hospitalizedIncrease\": 164.0, \"negativeIncrease\": 12851.0, \"positiveIncrease\": 1575.0, \"totalTestResultsIncrease\": 14426.0, \"ratio\": 0.10312328531313544, \"sinceDay0\": 14}, {\"index\": 851, \"date\": \"2020-03-19T00:00:00\", \"state\": \"GA\", \"positive\": 287.0, \"negative\": 1544.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5b54c8e2862e3541c6cb2a4a0a6d3fc93891f218\", \"dateChecked\": \"2020-03-19T20:00:00Z\", \"death\": 10.0, \"hospitalized\": null, \"total\": 1831, \"totalTestResults\": 1831, \"posNeg\": 1831, \"fips\": 13, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 233.0, \"positiveIncrease\": 90.0, \"totalTestResultsIncrease\": 323.0, \"ratio\": 0.1567449481157837, \"sinceDay0\": 0}, {\"index\": 795, \"date\": \"2020-03-20T00:00:00\", \"state\": \"GA\", \"positive\": 420.0, \"negative\": 1966.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c1099b472676eb4813360be325975832eeeecc23\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 13.0, \"hospitalized\": null, \"total\": 2386, \"totalTestResults\": 2386, \"posNeg\": 2386, \"fips\": 13, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 422.0, \"positiveIncrease\": 133.0, \"totalTestResultsIncrease\": 555.0, \"ratio\": 0.1760268231349539, \"sinceDay0\": 1}, {\"index\": 739, \"date\": \"2020-03-21T00:00:00\", \"state\": \"GA\", \"positive\": 507.0, \"negative\": 2557.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"fa63ec9c063c79b907568e755be9a52e3851b5e5\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 14.0, \"hospitalized\": null, \"total\": 3064, \"totalTestResults\": 3064, \"posNeg\": 3064, \"fips\": 13, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 591.0, \"positiveIncrease\": 87.0, \"totalTestResultsIncrease\": 678.0, \"ratio\": 0.16546997389033943, \"sinceDay0\": 2}, {\"index\": 683, \"date\": \"2020-03-22T00:00:00\", \"state\": \"GA\", \"positive\": 600.0, \"negative\": 3420.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"69702dd23d01e4995145ae809b89338c1dd848e2\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 23.0, \"hospitalized\": null, \"total\": 4020, \"totalTestResults\": 4020, \"posNeg\": 4020, \"fips\": 13, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 863.0, \"positiveIncrease\": 93.0, \"totalTestResultsIncrease\": 956.0, \"ratio\": 0.14925373134328357, \"sinceDay0\": 3}, {\"index\": 627, \"date\": \"2020-03-23T00:00:00\", \"state\": \"GA\", \"positive\": 772.0, \"negative\": 4297.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0f7832c9c3f96874233ce85032ac2f2d78f66eb8\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 25.0, \"hospitalized\": null, \"total\": 5069, \"totalTestResults\": 5069, \"posNeg\": 5069, \"fips\": 13, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 877.0, \"positiveIncrease\": 172.0, \"totalTestResultsIncrease\": 1049.0, \"ratio\": 0.152298283685145, \"sinceDay0\": 4}, {\"index\": 571, \"date\": \"2020-03-24T00:00:00\", \"state\": \"GA\", \"positive\": 1026.0, \"negative\": 4458.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"837865a88d570829d28bd06b24a4d97e5e901ddb\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 32.0, \"hospitalized\": null, \"total\": 5484, \"totalTestResults\": 5484, \"posNeg\": 5484, \"fips\": 13, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 161.0, \"positiveIncrease\": 254.0, \"totalTestResultsIncrease\": 415.0, \"ratio\": 0.18708971553610504, \"sinceDay0\": 5}, {\"index\": 515, \"date\": \"2020-03-25T00:00:00\", \"state\": \"GA\", \"positive\": 1247.0, \"negative\": 4932.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 394.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0608d7952fefcad2df075352ee28eb32e13426be\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 40.0, \"hospitalized\": 394.0, \"total\": 6179, \"totalTestResults\": 6179, \"posNeg\": 6179, \"fips\": 13, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 394.0, \"negativeIncrease\": 474.0, \"positiveIncrease\": 221.0, \"totalTestResultsIncrease\": 695.0, \"ratio\": 0.20181259103414792, \"sinceDay0\": 6}, {\"index\": 459, \"date\": \"2020-03-26T00:00:00\", \"state\": \"GA\", \"positive\": 1525.0, \"negative\": 7401.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 473.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5bd7f61bc12b4e207e0ceda50e5fe469273a6b44\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 48.0, \"hospitalized\": 473.0, \"total\": 8926, \"totalTestResults\": 8926, \"posNeg\": 8926, \"fips\": 13, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 79.0, \"negativeIncrease\": 2469.0, \"positiveIncrease\": 278.0, \"totalTestResultsIncrease\": 2747.0, \"ratio\": 0.17084920457091643, \"sinceDay0\": 7}, {\"index\": 403, \"date\": \"2020-03-27T00:00:00\", \"state\": \"GA\", \"positive\": 2001.0, \"negative\": 7864.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 566.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b85e11000166a29096d95a7188bd6313144ef7fe\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 64.0, \"hospitalized\": 566.0, \"total\": 9865, \"totalTestResults\": 9865, \"posNeg\": 9865, \"fips\": 13, \"deathIncrease\": 16.0, \"hospitalizedIncrease\": 93.0, \"negativeIncrease\": 463.0, \"positiveIncrease\": 476.0, \"totalTestResultsIncrease\": 939.0, \"ratio\": 0.20283831728332488, \"sinceDay0\": 8}, {\"index\": 347, \"date\": \"2020-03-28T00:00:00\", \"state\": \"GA\", \"positive\": 2366.0, \"negative\": 8685.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 617.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"202f88e65247b72d32891c53d6d6c15fd209d322\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 69.0, \"hospitalized\": 617.0, \"total\": 11051, \"totalTestResults\": 11051, \"posNeg\": 11051, \"fips\": 13, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 51.0, \"negativeIncrease\": 821.0, \"positiveIncrease\": 365.0, \"totalTestResultsIncrease\": 1186.0, \"ratio\": 0.21409827164962447, \"sinceDay0\": 9}, {\"index\": 291, \"date\": \"2020-03-29T00:00:00\", \"state\": \"GA\", \"positive\": 2651.0, \"negative\": 9913.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 666.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8fd5124a5d60c405bdada62747c232a41e2f9111\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 80.0, \"hospitalized\": 666.0, \"total\": 12564, \"totalTestResults\": 12564, \"posNeg\": 12564, \"fips\": 13, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 49.0, \"negativeIncrease\": 1228.0, \"positiveIncrease\": 285.0, \"totalTestResultsIncrease\": 1513.0, \"ratio\": 0.21099968163005411, \"sinceDay0\": 10}, {\"index\": 235, \"date\": \"2020-03-30T00:00:00\", \"state\": \"GA\", \"positive\": 2809.0, \"negative\": 9915.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 707.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"25ceba85ecebfa065b3994c5a0511a721902a2a5\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 87.0, \"hospitalized\": 707.0, \"total\": 12724, \"totalTestResults\": 12724, \"posNeg\": 12724, \"fips\": 13, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 41.0, \"negativeIncrease\": 2.0, \"positiveIncrease\": 158.0, \"totalTestResultsIncrease\": 160.0, \"ratio\": 0.2207639107198994, \"sinceDay0\": 11}, {\"index\": 179, \"date\": \"2020-03-31T00:00:00\", \"state\": \"GA\", \"positive\": 3929.0, \"negative\": 12252.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 833.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"59e2183e84ee35f0e1c3432ef7380d6b2ba4f740\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 111.0, \"hospitalized\": 833.0, \"total\": 16181, \"totalTestResults\": 16181, \"posNeg\": 16181, \"fips\": 13, \"deathIncrease\": 24.0, \"hospitalizedIncrease\": 126.0, \"negativeIncrease\": 2337.0, \"positiveIncrease\": 1120.0, \"totalTestResultsIncrease\": 3457.0, \"ratio\": 0.24281564798220134, \"sinceDay0\": 12}, {\"index\": 123, \"date\": \"2020-04-01T00:00:00\", \"state\": \"GA\", \"positive\": 4638.0, \"negative\": 15688.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 952.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d6147a1075561f5d68ac98a7cb4dedb3e75bcd4c\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 139.0, \"hospitalized\": 952.0, \"total\": 20326, \"totalTestResults\": 20326, \"posNeg\": 20326, \"fips\": 13, \"deathIncrease\": 28.0, \"hospitalizedIncrease\": 119.0, \"negativeIncrease\": 3436.0, \"positiveIncrease\": 709.0, \"totalTestResultsIncrease\": 4145.0, \"ratio\": 0.22818065531831153, \"sinceDay0\": 13}, {\"index\": 67, \"date\": \"2020-04-02T00:00:00\", \"state\": \"GA\", \"positive\": 5348.0, \"negative\": 17609.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1056.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"15b36e0f73598e9edefa4eb26b735231587f472d\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 163.0, \"hospitalized\": 1056.0, \"total\": 22957, \"totalTestResults\": 22957, \"posNeg\": 22957, \"fips\": 13, \"deathIncrease\": 24.0, \"hospitalizedIncrease\": 104.0, \"negativeIncrease\": 1921.0, \"positiveIncrease\": 710.0, \"totalTestResultsIncrease\": 2631.0, \"ratio\": 0.2329572679357059, \"sinceDay0\": 14}, {\"index\": 11, \"date\": \"2020-04-03T00:00:00\", \"state\": \"GA\", \"positive\": 5831.0, \"negative\": 19434.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1158.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c82f88637af7d0c85b2360390bb2386b0da43065\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 184.0, \"hospitalized\": 1158.0, \"total\": 25265, \"totalTestResults\": 25265, \"posNeg\": 25265, \"fips\": 13, \"deathIncrease\": 21.0, \"hospitalizedIncrease\": 102.0, \"negativeIncrease\": 1825.0, \"positiveIncrease\": 483.0, \"totalTestResultsIncrease\": 2308.0, \"ratio\": 0.23079358796754404, \"sinceDay0\": 15}, {\"index\": 70, \"date\": \"2020-04-02T00:00:00\", \"state\": \"IA\", \"positive\": 614.0, \"negative\": 8054.0, \"pending\": null, \"hospitalizedCurrently\": 74.0, \"hospitalizedCumulative\": 120.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 46.0, \"hash\": \"1f5c0a22d84a29b633b8b5a1fd1154e5b7a69bd9\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 11.0, \"hospitalized\": 120.0, \"total\": 8668, \"totalTestResults\": 8668, \"posNeg\": 8668, \"fips\": 19, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 21.0, \"negativeIncrease\": 750.0, \"positiveIncrease\": 65.0, \"totalTestResultsIncrease\": 815.0, \"ratio\": 0.07083525611444393, \"sinceDay0\": 0}, {\"index\": 14, \"date\": \"2020-04-03T00:00:00\", \"state\": \"IA\", \"positive\": 699.0, \"negative\": 8754.0, \"pending\": null, \"hospitalizedCurrently\": 80.0, \"hospitalizedCumulative\": 138.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 188.0, \"hash\": \"feb894b5b255cf3a6496c9856b448a6307f9b022\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 11.0, \"hospitalized\": 138.0, \"total\": 9453, \"totalTestResults\": 9453, \"posNeg\": 9453, \"fips\": 19, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 18.0, \"negativeIncrease\": 700.0, \"positiveIncrease\": 85.0, \"totalTestResultsIncrease\": 785.0, \"ratio\": 0.07394477943509997, \"sinceDay0\": 1}, {\"index\": 632, \"date\": \"2020-03-23T00:00:00\", \"state\": \"IL\", \"positive\": 1273.0, \"negative\": 8583.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0d6671c3e7d63029f51e664df09115c8458b7875\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 9856, \"totalTestResults\": 9856, \"posNeg\": 9856, \"fips\": 17, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1312.0, \"positiveIncrease\": 224.0, \"totalTestResultsIncrease\": 1536.0, \"ratio\": 0.1291599025974026, \"sinceDay0\": 0}, {\"index\": 576, \"date\": \"2020-03-24T00:00:00\", \"state\": \"IL\", \"positive\": 1535.0, \"negative\": 9934.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9c757789b4681fc36efffd962d3e75fb4ee6374f\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 16.0, \"hospitalized\": null, \"total\": 11469, \"totalTestResults\": 11469, \"posNeg\": 11469, \"fips\": 17, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1351.0, \"positiveIncrease\": 262.0, \"totalTestResultsIncrease\": 1613.0, \"ratio\": 0.13383904438050398, \"sinceDay0\": 1}, {\"index\": 520, \"date\": \"2020-03-25T00:00:00\", \"state\": \"IL\", \"positive\": 1865.0, \"negative\": 12344.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"de4c69056480e6111af2b8aeb434f5f8d597b170\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 19.0, \"hospitalized\": null, \"total\": 14209, \"totalTestResults\": 14209, \"posNeg\": 14209, \"fips\": 17, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2410.0, \"positiveIncrease\": 330.0, \"totalTestResultsIncrease\": 2740.0, \"ratio\": 0.13125483848265185, \"sinceDay0\": 2}, {\"index\": 464, \"date\": \"2020-03-26T00:00:00\", \"state\": \"IL\", \"positive\": 2538.0, \"negative\": 14093.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ede372266e78d0a0ceff08d95ac84932e0fcfc7d\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 26.0, \"hospitalized\": null, \"total\": 16631, \"totalTestResults\": 16631, \"posNeg\": 16631, \"fips\": 17, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1749.0, \"positiveIncrease\": 673.0, \"totalTestResultsIncrease\": 2422.0, \"ratio\": 0.15260657807708497, \"sinceDay0\": 3}, {\"index\": 408, \"date\": \"2020-03-27T00:00:00\", \"state\": \"IL\", \"positive\": 3026.0, \"negative\": 18516.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"65f47d4e133e84caba214c7a0efd4f69e51ceb5a\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 34.0, \"hospitalized\": null, \"total\": 21542, \"totalTestResults\": 21542, \"posNeg\": 21542, \"fips\": 17, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4423.0, \"positiveIncrease\": 488.0, \"totalTestResultsIncrease\": 4911.0, \"ratio\": 0.14046977996472007, \"sinceDay0\": 4}, {\"index\": 352, \"date\": \"2020-03-28T00:00:00\", \"state\": \"IL\", \"positive\": 3491.0, \"negative\": 22000.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"073372a26378c93d1b5b6ee7307fb9c030f82f2d\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 47.0, \"hospitalized\": null, \"total\": 25491, \"totalTestResults\": 25491, \"posNeg\": 25491, \"fips\": 17, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3484.0, \"positiveIncrease\": 465.0, \"totalTestResultsIncrease\": 3949.0, \"ratio\": 0.13695029618296653, \"sinceDay0\": 5}, {\"index\": 296, \"date\": \"2020-03-29T00:00:00\", \"state\": \"IL\", \"positive\": 4596.0, \"negative\": 23166.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"bd7639325f1e033630241a08bc0e4cfebae48436\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 65.0, \"hospitalized\": null, \"total\": 27762, \"totalTestResults\": 27762, \"posNeg\": 27762, \"fips\": 17, \"deathIncrease\": 18.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1166.0, \"positiveIncrease\": 1105.0, \"totalTestResultsIncrease\": 2271.0, \"ratio\": 0.16555003241841365, \"sinceDay0\": 6}, {\"index\": 240, \"date\": \"2020-03-30T00:00:00\", \"state\": \"IL\", \"positive\": 5057.0, \"negative\": 25389.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"49eda929cdc14ecc7beeaffc5a03863b651175f5\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 73.0, \"hospitalized\": null, \"total\": 30446, \"totalTestResults\": 30446, \"posNeg\": 30446, \"fips\": 17, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2223.0, \"positiveIncrease\": 461.0, \"totalTestResultsIncrease\": 2684.0, \"ratio\": 0.16609735269000853, \"sinceDay0\": 7}, {\"index\": 184, \"date\": \"2020-03-31T00:00:00\", \"state\": \"IL\", \"positive\": 5994.0, \"negative\": 29231.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"979983c53f3fef1cf573ae3a61de7f9166197b17\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 99.0, \"hospitalized\": null, \"total\": 35225, \"totalTestResults\": 35225, \"posNeg\": 35225, \"fips\": 17, \"deathIncrease\": 26.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3842.0, \"positiveIncrease\": 937.0, \"totalTestResultsIncrease\": 4779.0, \"ratio\": 0.17016323633782826, \"sinceDay0\": 8}, {\"index\": 128, \"date\": \"2020-04-01T00:00:00\", \"state\": \"IL\", \"positive\": 6980.0, \"negative\": 33404.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"026b984139faebf730612961db2541ecac874f45\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 141.0, \"hospitalized\": null, \"total\": 40384, \"totalTestResults\": 40384, \"posNeg\": 40384, \"fips\": 17, \"deathIncrease\": 42.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4173.0, \"positiveIncrease\": 986.0, \"totalTestResultsIncrease\": 5159.0, \"ratio\": 0.1728407290015848, \"sinceDay0\": 9}, {\"index\": 72, \"date\": \"2020-04-02T00:00:00\", \"state\": \"IL\", \"positive\": 7695.0, \"negative\": 35961.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1a8b1e0bab7743ed9c982d78d0d7844622a6d6a3\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 157.0, \"hospitalized\": null, \"total\": 43656, \"totalTestResults\": 43656, \"posNeg\": 43656, \"fips\": 17, \"deathIncrease\": 16.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2557.0, \"positiveIncrease\": 715.0, \"totalTestResultsIncrease\": 3272.0, \"ratio\": 0.17626443100604727, \"sinceDay0\": 10}, {\"index\": 16, \"date\": \"2020-04-03T00:00:00\", \"state\": \"IL\", \"positive\": 8904.0, \"negative\": 39144.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5393eb554824524a4a63bbec9c795869c7869414\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 210.0, \"hospitalized\": null, \"total\": 48048, \"totalTestResults\": 48048, \"posNeg\": 48048, \"fips\": 17, \"deathIncrease\": 53.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3183.0, \"positiveIncrease\": 1209.0, \"totalTestResultsIncrease\": 4392.0, \"ratio\": 0.1853146853146853, \"sinceDay0\": 11}, {\"index\": 577, \"date\": \"2020-03-24T00:00:00\", \"state\": \"IN\", \"positive\": 365.0, \"negative\": 2566.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d20aff6badc212807b7cd5db58fc6d2b08795e49\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 12.0, \"hospitalized\": 1.0, \"total\": 2931, \"totalTestResults\": 2931, \"posNeg\": 2931, \"fips\": 18, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 865.0, \"positiveIncrease\": 106.0, \"totalTestResultsIncrease\": 971.0, \"ratio\": 0.1245308768338451, \"sinceDay0\": 0}, {\"index\": 521, \"date\": \"2020-03-25T00:00:00\", \"state\": \"IN\", \"positive\": 477.0, \"negative\": 2879.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1a6af9e7ccb688e3321a736a824bb1fe799b7ef8\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 14.0, \"hospitalized\": 1.0, \"total\": 3356, \"totalTestResults\": 3356, \"posNeg\": 3356, \"fips\": 18, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 313.0, \"positiveIncrease\": 112.0, \"totalTestResultsIncrease\": 425.0, \"ratio\": 0.14213349225268176, \"sinceDay0\": 1}, {\"index\": 465, \"date\": \"2020-03-26T00:00:00\", \"state\": \"IN\", \"positive\": 645.0, \"negative\": 4006.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d09dec87fbea244ee83df1fb0d61288197978934\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 17.0, \"hospitalized\": null, \"total\": 4651, \"totalTestResults\": 4651, \"posNeg\": 4651, \"fips\": 18, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1127.0, \"positiveIncrease\": 168.0, \"totalTestResultsIncrease\": 1295.0, \"ratio\": 0.13867985379488282, \"sinceDay0\": 2}, {\"index\": 409, \"date\": \"2020-03-27T00:00:00\", \"state\": \"IN\", \"positive\": 981.0, \"negative\": 5955.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"3708ffb8604728a20d1032f73b6da67ee72ea866\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 24.0, \"hospitalized\": null, \"total\": 6936, \"totalTestResults\": 6936, \"posNeg\": 6936, \"fips\": 18, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1949.0, \"positiveIncrease\": 336.0, \"totalTestResultsIncrease\": 2285.0, \"ratio\": 0.14143598615916955, \"sinceDay0\": 3}, {\"index\": 353, \"date\": \"2020-03-28T00:00:00\", \"state\": \"IN\", \"positive\": 1232.0, \"negative\": 7175.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"bb33e7862d580175dc4ae2bfe3b91be2dd68c719\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 31.0, \"hospitalized\": null, \"total\": 8407, \"totalTestResults\": 8407, \"posNeg\": 8407, \"fips\": 18, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1220.0, \"positiveIncrease\": 251.0, \"totalTestResultsIncrease\": 1471.0, \"ratio\": 0.14654454621149043, \"sinceDay0\": 4}, {\"index\": 297, \"date\": \"2020-03-29T00:00:00\", \"state\": \"IN\", \"positive\": 1514.0, \"negative\": 8316.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"7218f7ee5dcf63b69f6d3a8be6ab8404ecd588c4\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 32.0, \"hospitalized\": null, \"total\": 9830, \"totalTestResults\": 9830, \"posNeg\": 9830, \"fips\": 18, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1141.0, \"positiveIncrease\": 282.0, \"totalTestResultsIncrease\": 1423.0, \"ratio\": 0.1540183112919634, \"sinceDay0\": 5}, {\"index\": 241, \"date\": \"2020-03-30T00:00:00\", \"state\": \"IN\", \"positive\": 1786.0, \"negative\": 9872.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1eb08f6c84c1646c1611f46dfcb77c86a50479fc\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 35.0, \"hospitalized\": null, \"total\": 11658, \"totalTestResults\": 11658, \"posNeg\": 11658, \"fips\": 18, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1556.0, \"positiveIncrease\": 272.0, \"totalTestResultsIncrease\": 1828.0, \"ratio\": 0.1531995196431635, \"sinceDay0\": 6}, {\"index\": 185, \"date\": \"2020-03-31T00:00:00\", \"state\": \"IN\", \"positive\": 2159.0, \"negative\": 11214.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"76b4fbd00067fbb532bb2d0c63800ffa814d75c9\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 49.0, \"hospitalized\": null, \"total\": 13373, \"totalTestResults\": 13373, \"posNeg\": 13373, \"fips\": 18, \"deathIncrease\": 14.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1342.0, \"positiveIncrease\": 373.0, \"totalTestResultsIncrease\": 1715.0, \"ratio\": 0.16144470201151573, \"sinceDay0\": 7}, {\"index\": 129, \"date\": \"2020-04-01T00:00:00\", \"state\": \"IN\", \"positive\": 2565.0, \"negative\": 11810.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"fcc053001d98ddb6739b2610781931fbb476aac3\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 65.0, \"hospitalized\": null, \"total\": 14375, \"totalTestResults\": 14375, \"posNeg\": 14375, \"fips\": 18, \"deathIncrease\": 16.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 596.0, \"positiveIncrease\": 406.0, \"totalTestResultsIncrease\": 1002.0, \"ratio\": 0.17843478260869566, \"sinceDay0\": 8}, {\"index\": 73, \"date\": \"2020-04-02T00:00:00\", \"state\": \"IN\", \"positive\": 3039.0, \"negative\": 13246.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"7efa7f48655167cc1d748ae1740c9b97dd06a209\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 78.0, \"hospitalized\": null, \"total\": 16285, \"totalTestResults\": 16285, \"posNeg\": 16285, \"fips\": 18, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1436.0, \"positiveIncrease\": 474.0, \"totalTestResultsIncrease\": 1910.0, \"ratio\": 0.18661344795824378, \"sinceDay0\": 9}, {\"index\": 17, \"date\": \"2020-04-03T00:00:00\", \"state\": \"IN\", \"positive\": 3437.0, \"negative\": 14398.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b6a582ed478dfba401e4a56efe6e9e4a1b532d04\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 102.0, \"hospitalized\": null, \"total\": 17835, \"totalTestResults\": 17835, \"posNeg\": 17835, \"fips\": 18, \"deathIncrease\": 24.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1152.0, \"positiveIncrease\": 398.0, \"totalTestResultsIncrease\": 1550.0, \"ratio\": 0.19271096159237455, \"sinceDay0\": 10}, {\"index\": 130, \"date\": \"2020-04-01T00:00:00\", \"state\": \"KS\", \"positive\": 482.0, \"negative\": 5411.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 114.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d8abbc3a45478014e68bb1033ec072f19a68ec6a\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 10.0, \"hospitalized\": 114.0, \"total\": 5893, \"totalTestResults\": 5893, \"posNeg\": 5893, \"fips\": 20, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 35.0, \"negativeIncrease\": 415.0, \"positiveIncrease\": 54.0, \"totalTestResultsIncrease\": 469.0, \"ratio\": 0.08179195655862888, \"sinceDay0\": 0}, {\"index\": 74, \"date\": \"2020-04-02T00:00:00\", \"state\": \"KS\", \"positive\": 552.0, \"negative\": 6059.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 138.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e1d064496cc599d8997422f5393e363895fed048\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 13.0, \"hospitalized\": 138.0, \"total\": 6611, \"totalTestResults\": 6611, \"posNeg\": 6611, \"fips\": 20, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 24.0, \"negativeIncrease\": 648.0, \"positiveIncrease\": 70.0, \"totalTestResultsIncrease\": 718.0, \"ratio\": 0.0834972016336409, \"sinceDay0\": 1}, {\"index\": 18, \"date\": \"2020-04-03T00:00:00\", \"state\": \"KS\", \"positive\": 620.0, \"negative\": 6454.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 151.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"423f188ae5bf45319e336f75b49a3708bdbc8494\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 17.0, \"hospitalized\": 151.0, \"total\": 7074, \"totalTestResults\": 7074, \"posNeg\": 7074, \"fips\": 20, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 13.0, \"negativeIncrease\": 395.0, \"positiveIncrease\": 68.0, \"totalTestResultsIncrease\": 463.0, \"ratio\": 0.08764489680520215, \"sinceDay0\": 2}, {\"index\": 187, \"date\": \"2020-03-31T00:00:00\", \"state\": \"KY\", \"positive\": 480.0, \"negative\": 6330.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"37e85814eaa2e8744faaf12a5995d3a1d5958614\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 11.0, \"hospitalized\": null, \"total\": 6810, \"totalTestResults\": 6810, \"posNeg\": 6810, \"fips\": 21, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 751.0, \"positiveIncrease\": 41.0, \"totalTestResultsIncrease\": 792.0, \"ratio\": 0.07048458149779736, \"sinceDay0\": 0}, {\"index\": 131, \"date\": \"2020-04-01T00:00:00\", \"state\": \"KY\", \"positive\": 591.0, \"negative\": 6965.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d401a0f0702a3e7442668504f89d9bbf0fd9db08\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 17.0, \"hospitalized\": null, \"total\": 7556, \"totalTestResults\": 7556, \"posNeg\": 7556, \"fips\": 21, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 635.0, \"positiveIncrease\": 111.0, \"totalTestResultsIncrease\": 746.0, \"ratio\": 0.07821598729486501, \"sinceDay0\": 1}, {\"index\": 75, \"date\": \"2020-04-02T00:00:00\", \"state\": \"KY\", \"positive\": 680.0, \"negative\": 7220.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9ab2e64fd49a2aba449f469559e03c171789906f\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 20.0, \"hospitalized\": null, \"total\": 7900, \"totalTestResults\": 7900, \"posNeg\": 7900, \"fips\": 21, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 255.0, \"positiveIncrease\": 89.0, \"totalTestResultsIncrease\": 344.0, \"ratio\": 0.08607594936708861, \"sinceDay0\": 2}, {\"index\": 19, \"date\": \"2020-04-03T00:00:00\", \"state\": \"KY\", \"positive\": 770.0, \"negative\": 12034.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b7ec08543b9b2324d60694f6721979dc00c54543\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 31.0, \"hospitalized\": null, \"total\": 12804, \"totalTestResults\": 12804, \"posNeg\": 12804, \"fips\": 21, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4814.0, \"positiveIncrease\": 90.0, \"totalTestResultsIncrease\": 4904.0, \"ratio\": 0.06013745704467354, \"sinceDay0\": 3}, {\"index\": 804, \"date\": \"2020-03-20T00:00:00\", \"state\": \"LA\", \"positive\": 479.0, \"negative\": 568.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e67536ea67b77d8ca65be412882b0f4d055238f5\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 1047, \"totalTestResults\": 1047, \"posNeg\": 1047, \"fips\": 22, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 110.0, \"positiveIncrease\": 132.0, \"totalTestResultsIncrease\": 242.0, \"ratio\": 0.4574976122254059, \"sinceDay0\": 0}, {\"index\": 748, \"date\": \"2020-03-21T00:00:00\", \"state\": \"LA\", \"positive\": 585.0, \"negative\": 2180.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f7c6c177e7b1f643227b1bc755f63bbb75468835\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 16.0, \"hospitalized\": null, \"total\": 2765, \"totalTestResults\": 2765, \"posNeg\": 2765, \"fips\": 22, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1612.0, \"positiveIncrease\": 106.0, \"totalTestResultsIncrease\": 1718.0, \"ratio\": 0.2115732368896926, \"sinceDay0\": 1}, {\"index\": 692, \"date\": \"2020-03-22T00:00:00\", \"state\": \"LA\", \"positive\": 837.0, \"negative\": 2661.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c89220ae4e2b0931fb785ec35f44887bf5a5355b\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 20.0, \"hospitalized\": null, \"total\": 3498, \"totalTestResults\": 3498, \"posNeg\": 3498, \"fips\": 22, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 481.0, \"positiveIncrease\": 252.0, \"totalTestResultsIncrease\": 733.0, \"ratio\": 0.23927958833619212, \"sinceDay0\": 2}, {\"index\": 636, \"date\": \"2020-03-23T00:00:00\", \"state\": \"LA\", \"positive\": 1172.0, \"negative\": 4776.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"fd499be556bb029c4bc349ac19373d9ba7b95fcd\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 34.0, \"hospitalized\": null, \"total\": 5948, \"totalTestResults\": 5948, \"posNeg\": 5948, \"fips\": 22, \"deathIncrease\": 14.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2115.0, \"positiveIncrease\": 335.0, \"totalTestResultsIncrease\": 2450.0, \"ratio\": 0.19704102219233355, \"sinceDay0\": 3}, {\"index\": 580, \"date\": \"2020-03-24T00:00:00\", \"state\": \"LA\", \"positive\": 1388.0, \"negative\": 7215.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 271.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c443054e2ff12e070077b14d3071b89ea08d7346\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 46.0, \"hospitalized\": 271.0, \"total\": 8603, \"totalTestResults\": 8603, \"posNeg\": 8603, \"fips\": 22, \"deathIncrease\": 12.0, \"hospitalizedIncrease\": 271.0, \"negativeIncrease\": 2439.0, \"positiveIncrease\": 216.0, \"totalTestResultsIncrease\": 2655.0, \"ratio\": 0.161339067767058, \"sinceDay0\": 4}, {\"index\": 524, \"date\": \"2020-03-25T00:00:00\", \"state\": \"LA\", \"positive\": 1795.0, \"negative\": 9656.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 491.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 163.0, \"recovered\": null, \"hash\": \"b9c6d4f81c9f0b6777df7bd4190349d006d90222\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 65.0, \"hospitalized\": 491.0, \"total\": 11451, \"totalTestResults\": 11451, \"posNeg\": 11451, \"fips\": 22, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 220.0, \"negativeIncrease\": 2441.0, \"positiveIncrease\": 407.0, \"totalTestResultsIncrease\": 2848.0, \"ratio\": 0.15675486857043053, \"sinceDay0\": 5}, {\"index\": 468, \"date\": \"2020-03-26T00:00:00\", \"state\": \"LA\", \"positive\": 2305.0, \"negative\": 15724.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 676.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 239.0, \"recovered\": null, \"hash\": \"a3dd3f994877e467e4b0eede332659cfeca99714\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 83.0, \"hospitalized\": 676.0, \"total\": 18029, \"totalTestResults\": 18029, \"posNeg\": 18029, \"fips\": 22, \"deathIncrease\": 18.0, \"hospitalizedIncrease\": 185.0, \"negativeIncrease\": 6068.0, \"positiveIncrease\": 510.0, \"totalTestResultsIncrease\": 6578.0, \"ratio\": 0.12784957568362082, \"sinceDay0\": 6}, {\"index\": 412, \"date\": \"2020-03-27T00:00:00\", \"state\": \"LA\", \"positive\": 2746.0, \"negative\": 18613.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 773.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 270.0, \"recovered\": null, \"hash\": \"8403ec4e8479f56c60ee105634c0b15796c301c3\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 119.0, \"hospitalized\": 773.0, \"total\": 21359, \"totalTestResults\": 21359, \"posNeg\": 21359, \"fips\": 22, \"deathIncrease\": 36.0, \"hospitalizedIncrease\": 97.0, \"negativeIncrease\": 2889.0, \"positiveIncrease\": 441.0, \"totalTestResultsIncrease\": 3330.0, \"ratio\": 0.12856407135165504, \"sinceDay0\": 7}, {\"index\": 356, \"date\": \"2020-03-28T00:00:00\", \"state\": \"LA\", \"positive\": 3315.0, \"negative\": 21846.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 927.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 336.0, \"recovered\": null, \"hash\": \"4a0d79bda0eb000ea91e7c858e929eb0342be5af\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 137.0, \"hospitalized\": 927.0, \"total\": 25161, \"totalTestResults\": 25161, \"posNeg\": 25161, \"fips\": 22, \"deathIncrease\": 18.0, \"hospitalizedIncrease\": 154.0, \"negativeIncrease\": 3233.0, \"positiveIncrease\": 569.0, \"totalTestResultsIncrease\": 3802.0, \"ratio\": 0.13175152020984857, \"sinceDay0\": 8}, {\"index\": 300, \"date\": \"2020-03-29T00:00:00\", \"state\": \"LA\", \"positive\": 3540.0, \"negative\": 24331.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1127.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 380.0, \"recovered\": null, \"hash\": \"c7306243e89fb0a9690d4531ca9ba00b354540bd\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 151.0, \"hospitalized\": 1127.0, \"total\": 27871, \"totalTestResults\": 27871, \"posNeg\": 27871, \"fips\": 22, \"deathIncrease\": 14.0, \"hospitalizedIncrease\": 200.0, \"negativeIncrease\": 2485.0, \"positiveIncrease\": 225.0, \"totalTestResultsIncrease\": 2710.0, \"ratio\": 0.12701374188224318, \"sinceDay0\": 9}, {\"index\": 244, \"date\": \"2020-03-30T00:00:00\", \"state\": \"LA\", \"positive\": 4025.0, \"negative\": 30008.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1185.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 385.0, \"recovered\": null, \"hash\": \"83cdef3008fd6d32b51fc602cee4e1df98d1e7e0\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 185.0, \"hospitalized\": 1185.0, \"total\": 34033, \"totalTestResults\": 34033, \"posNeg\": 34033, \"fips\": 22, \"deathIncrease\": 34.0, \"hospitalizedIncrease\": 58.0, \"negativeIncrease\": 5677.0, \"positiveIncrease\": 485.0, \"totalTestResultsIncrease\": 6162.0, \"ratio\": 0.11826756383510123, \"sinceDay0\": 10}, {\"index\": 188, \"date\": \"2020-03-31T00:00:00\", \"state\": \"LA\", \"positive\": 5237.0, \"negative\": 33730.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1355.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 438.0, \"recovered\": null, \"hash\": \"9afe3b0050bd01d1928766a6d12d65c23f10d0b9\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 239.0, \"hospitalized\": 1355.0, \"total\": 38967, \"totalTestResults\": 38967, \"posNeg\": 38967, \"fips\": 22, \"deathIncrease\": 54.0, \"hospitalizedIncrease\": 170.0, \"negativeIncrease\": 3722.0, \"positiveIncrease\": 1212.0, \"totalTestResultsIncrease\": 4934.0, \"ratio\": 0.13439577078040393, \"sinceDay0\": 11}, {\"index\": 132, \"date\": \"2020-04-01T00:00:00\", \"state\": \"LA\", \"positive\": 6424.0, \"negative\": 39352.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1498.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 490.0, \"recovered\": null, \"hash\": \"3e4974bc6afa3064f7b37913b0497195237d9651\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 273.0, \"hospitalized\": 1498.0, \"total\": 45776, \"totalTestResults\": 45776, \"posNeg\": 45776, \"fips\": 22, \"deathIncrease\": 34.0, \"hospitalizedIncrease\": 143.0, \"negativeIncrease\": 5622.0, \"positiveIncrease\": 1187.0, \"totalTestResultsIncrease\": 6809.0, \"ratio\": 0.14033554701153442, \"sinceDay0\": 12}, {\"index\": 76, \"date\": \"2020-04-02T00:00:00\", \"state\": \"LA\", \"positive\": 9150.0, \"negative\": 41936.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1639.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 507.0, \"recovered\": null, \"hash\": \"00bc323a6acfed050d7eb6527cbc2edd1bea6eb7\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 310.0, \"hospitalized\": 1639.0, \"total\": 51086, \"totalTestResults\": 51086, \"posNeg\": 51086, \"fips\": 22, \"deathIncrease\": 37.0, \"hospitalizedIncrease\": 141.0, \"negativeIncrease\": 2584.0, \"positiveIncrease\": 2726.0, \"totalTestResultsIncrease\": 5310.0, \"ratio\": 0.17910973652272638, \"sinceDay0\": 13}, {\"index\": 20, \"date\": \"2020-04-03T00:00:00\", \"state\": \"LA\", \"positive\": 10297.0, \"negative\": 43348.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1707.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 535.0, \"recovered\": null, \"hash\": \"0694f8cf6531a993f01c11a566a18087757b24d2\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 370.0, \"hospitalized\": 1707.0, \"total\": 53645, \"totalTestResults\": 53645, \"posNeg\": 53645, \"fips\": 22, \"deathIncrease\": 60.0, \"hospitalizedIncrease\": 68.0, \"negativeIncrease\": 1412.0, \"positiveIncrease\": 1147.0, \"totalTestResultsIncrease\": 2559.0, \"ratio\": 0.19194705937179607, \"sinceDay0\": 14}, {\"index\": 581, \"date\": \"2020-03-24T00:00:00\", \"state\": \"MA\", \"positive\": 1159.0, \"negative\": 12590.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 94.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"7dba190b6c130ef5b8427912adbcf550a3e63368\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 11.0, \"hospitalized\": 94.0, \"total\": 13749, \"totalTestResults\": 13749, \"posNeg\": 13749, \"fips\": 25, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 15.0, \"negativeIncrease\": 4445.0, \"positiveIncrease\": 382.0, \"totalTestResultsIncrease\": 4827.0, \"ratio\": 0.08429703978471162, \"sinceDay0\": 0}, {\"index\": 525, \"date\": \"2020-03-25T00:00:00\", \"state\": \"MA\", \"positive\": 1838.0, \"negative\": 17956.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 103.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"95bb4fdcf8938f1681915e4ab6cd29914ed60b24\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 15.0, \"hospitalized\": 103.0, \"total\": 19794, \"totalTestResults\": 19794, \"posNeg\": 19794, \"fips\": 25, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 9.0, \"negativeIncrease\": 5366.0, \"positiveIncrease\": 679.0, \"totalTestResultsIncrease\": 6045.0, \"ratio\": 0.0928564211377185, \"sinceDay0\": 1}, {\"index\": 469, \"date\": \"2020-03-26T00:00:00\", \"state\": \"MA\", \"positive\": 2417.0, \"negative\": 21204.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 219.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"83a4a37ff66f38e205b0b18839828d141802f5c1\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 25.0, \"hospitalized\": 219.0, \"total\": 23621, \"totalTestResults\": 23621, \"posNeg\": 23621, \"fips\": 25, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 116.0, \"negativeIncrease\": 3248.0, \"positiveIncrease\": 579.0, \"totalTestResultsIncrease\": 3827.0, \"ratio\": 0.10232420303966809, \"sinceDay0\": 2}, {\"index\": 413, \"date\": \"2020-03-27T00:00:00\", \"state\": \"MA\", \"positive\": 3240.0, \"negative\": 26131.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 219.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"016484cf6143f06b89bdb98758e558945940304e\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 35.0, \"hospitalized\": 219.0, \"total\": 29371, \"totalTestResults\": 29371, \"posNeg\": 29371, \"fips\": 25, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4927.0, \"positiveIncrease\": 823.0, \"totalTestResultsIncrease\": 5750.0, \"ratio\": 0.1103128936706275, \"sinceDay0\": 3}, {\"index\": 357, \"date\": \"2020-03-28T00:00:00\", \"state\": \"MA\", \"positive\": 4257.0, \"negative\": 30792.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 350.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c038ffa81528722c23a2ffffda17f2495a188ded\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 44.0, \"hospitalized\": 350.0, \"total\": 35049, \"totalTestResults\": 35049, \"posNeg\": 35049, \"fips\": 25, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 131.0, \"negativeIncrease\": 4661.0, \"positiveIncrease\": 1017.0, \"totalTestResultsIncrease\": 5678.0, \"ratio\": 0.12145852948728922, \"sinceDay0\": 4}, {\"index\": 301, \"date\": \"2020-03-29T00:00:00\", \"state\": \"MA\", \"positive\": 4955.0, \"negative\": 34111.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 399.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1de5b22e00296e1b0a1fea40b858c4f6d2eeb1b0\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 48.0, \"hospitalized\": 399.0, \"total\": 39066, \"totalTestResults\": 39066, \"posNeg\": 39066, \"fips\": 25, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 49.0, \"negativeIncrease\": 3319.0, \"positiveIncrease\": 698.0, \"totalTestResultsIncrease\": 4017.0, \"ratio\": 0.1268366354374648, \"sinceDay0\": 5}, {\"index\": 245, \"date\": \"2020-03-30T00:00:00\", \"state\": \"MA\", \"positive\": 5752.0, \"negative\": 37041.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 453.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"559b7707f9c7203da0ea8c07a2bfc9577d331c97\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 56.0, \"hospitalized\": 453.0, \"total\": 42793, \"totalTestResults\": 42793, \"posNeg\": 42793, \"fips\": 25, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 54.0, \"negativeIncrease\": 2930.0, \"positiveIncrease\": 797.0, \"totalTestResultsIncrease\": 3727.0, \"ratio\": 0.13441450704554483, \"sinceDay0\": 6}, {\"index\": 189, \"date\": \"2020-03-31T00:00:00\", \"state\": \"MA\", \"positive\": 6620.0, \"negative\": 40315.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 562.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b113daa2aa839e30f1f3605f00483292aa39a60e\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 89.0, \"hospitalized\": 562.0, \"total\": 46935, \"totalTestResults\": 46935, \"posNeg\": 46935, \"fips\": 25, \"deathIncrease\": 33.0, \"hospitalizedIncrease\": 109.0, \"negativeIncrease\": 3274.0, \"positiveIncrease\": 868.0, \"totalTestResultsIncrease\": 4142.0, \"ratio\": 0.14104612762330884, \"sinceDay0\": 7}, {\"index\": 133, \"date\": \"2020-04-01T00:00:00\", \"state\": \"MA\", \"positive\": 7738.0, \"negative\": 44000.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 682.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"70ea3d599c7c506eafd12cbed1d23daa16709040\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 122.0, \"hospitalized\": 682.0, \"total\": 51738, \"totalTestResults\": 51738, \"posNeg\": 51738, \"fips\": 25, \"deathIncrease\": 33.0, \"hospitalizedIncrease\": 120.0, \"negativeIncrease\": 3685.0, \"positiveIncrease\": 1118.0, \"totalTestResultsIncrease\": 4803.0, \"ratio\": 0.14956125091808728, \"sinceDay0\": 8}, {\"index\": 77, \"date\": \"2020-04-02T00:00:00\", \"state\": \"MA\", \"positive\": 8966.0, \"negative\": 47642.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 813.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"79d0614d1b714ae75a41b332ec20fb5cbecebab8\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 154.0, \"hospitalized\": 813.0, \"total\": 56608, \"totalTestResults\": 56608, \"posNeg\": 56608, \"fips\": 25, \"deathIncrease\": 32.0, \"hospitalizedIncrease\": 131.0, \"negativeIncrease\": 3642.0, \"positiveIncrease\": 1228.0, \"totalTestResultsIncrease\": 4870.0, \"ratio\": 0.15838750706613905, \"sinceDay0\": 9}, {\"index\": 21, \"date\": \"2020-04-03T00:00:00\", \"state\": \"MA\", \"positive\": 10402.0, \"negative\": 52560.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 966.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b7bee14b9475ba25ad0b28497d483cec03221230\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 192.0, \"hospitalized\": 966.0, \"total\": 62962, \"totalTestResults\": 62962, \"posNeg\": 62962, \"fips\": 25, \"deathIncrease\": 38.0, \"hospitalizedIncrease\": 153.0, \"negativeIncrease\": 4918.0, \"positiveIncrease\": 1436.0, \"totalTestResultsIncrease\": 6354.0, \"ratio\": 0.16521076204694896, \"sinceDay0\": 10}, {\"index\": 302, \"date\": \"2020-03-29T00:00:00\", \"state\": \"MD\", \"positive\": 1239.0, \"negative\": 12354.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 277.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"43e502f79bd427c342c79c2281412b86f1c174e1\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 10.0, \"hospitalized\": 277.0, \"total\": 13593, \"totalTestResults\": 13593, \"posNeg\": 13593, \"fips\": 24, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 51.0, \"negativeIncrease\": 838.0, \"positiveIncrease\": 247.0, \"totalTestResultsIncrease\": 1085.0, \"ratio\": 0.09114985654380932, \"sinceDay0\": 0}, {\"index\": 246, \"date\": \"2020-03-30T00:00:00\", \"state\": \"MD\", \"positive\": 1413.0, \"negative\": 13316.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 353.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ea51bd505bfb1c35306ee4e4b22abdad5d2820d8\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 15.0, \"hospitalized\": 353.0, \"total\": 14729, \"totalTestResults\": 14729, \"posNeg\": 14729, \"fips\": 24, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 76.0, \"negativeIncrease\": 962.0, \"positiveIncrease\": 174.0, \"totalTestResultsIncrease\": 1136.0, \"ratio\": 0.09593319302057166, \"sinceDay0\": 1}, {\"index\": 190, \"date\": \"2020-03-31T00:00:00\", \"state\": \"MD\", \"positive\": 1660.0, \"negative\": 14868.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 429.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d7bfec3c323983994ff111c9de7dc7addc251550\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 18.0, \"hospitalized\": 429.0, \"total\": 16528, \"totalTestResults\": 16528, \"posNeg\": 16528, \"fips\": 24, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 76.0, \"negativeIncrease\": 1552.0, \"positiveIncrease\": 247.0, \"totalTestResultsIncrease\": 1799.0, \"ratio\": 0.10043562439496612, \"sinceDay0\": 2}, {\"index\": 134, \"date\": \"2020-04-01T00:00:00\", \"state\": \"MD\", \"positive\": 1985.0, \"negative\": 17233.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 522.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"37fdabd80821d81988b5e5a11005bbe7e3a77a5f\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 31.0, \"hospitalized\": 522.0, \"total\": 19218, \"totalTestResults\": 19218, \"posNeg\": 19218, \"fips\": 24, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 93.0, \"negativeIncrease\": 2365.0, \"positiveIncrease\": 325.0, \"totalTestResultsIncrease\": 2690.0, \"ratio\": 0.10328858361952337, \"sinceDay0\": 3}, {\"index\": 78, \"date\": \"2020-04-02T00:00:00\", \"state\": \"MD\", \"positive\": 2331.0, \"negative\": 18890.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 582.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 81.0, \"hash\": \"ecc07bae25f936e57b3850a6ce3bcb5de2a72e94\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 36.0, \"hospitalized\": 582.0, \"total\": 21221, \"totalTestResults\": 21221, \"posNeg\": 21221, \"fips\": 24, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 60.0, \"negativeIncrease\": 1657.0, \"positiveIncrease\": 346.0, \"totalTestResultsIncrease\": 2003.0, \"ratio\": 0.10984402243061119, \"sinceDay0\": 4}, {\"index\": 22, \"date\": \"2020-04-03T00:00:00\", \"state\": \"MD\", \"positive\": 2758.0, \"negative\": 20932.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 664.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 159.0, \"hash\": \"748f7091af15d9ca085a92ba09b7390f763b6eb5\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 42.0, \"hospitalized\": 664.0, \"total\": 23690, \"totalTestResults\": 23690, \"posNeg\": 23690, \"fips\": 24, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 82.0, \"negativeIncrease\": 2042.0, \"positiveIncrease\": 427.0, \"totalTestResultsIncrease\": 2469.0, \"ratio\": 0.11642043056141832, \"sinceDay0\": 5}, {\"index\": 640, \"date\": \"2020-03-23T00:00:00\", \"state\": \"MI\", \"positive\": 1328.0, \"negative\": 2069.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b3d92249498258b511c3e0096b4740313fcc50e7\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 15.0, \"hospitalized\": null, \"total\": 3397, \"totalTestResults\": 3397, \"posNeg\": 3397, \"fips\": 26, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 293.0, \"totalTestResultsIncrease\": 293.0, \"ratio\": 0.3909331763320577, \"sinceDay0\": 0}, {\"index\": 584, \"date\": \"2020-03-24T00:00:00\", \"state\": \"MI\", \"positive\": 1791.0, \"negative\": 2069.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"51b4853b99e397722bba7993d875ce4f9cf72d4c\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 24.0, \"hospitalized\": null, \"total\": 3860, \"totalTestResults\": 3860, \"posNeg\": 3860, \"fips\": 26, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 463.0, \"totalTestResultsIncrease\": 463.0, \"ratio\": 0.4639896373056995, \"sinceDay0\": 1}, {\"index\": 528, \"date\": \"2020-03-25T00:00:00\", \"state\": \"MI\", \"positive\": 2294.0, \"negative\": 2069.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a9f71d967c982eca5345379d53b1d83b96be4e15\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 43.0, \"hospitalized\": null, \"total\": 4363, \"totalTestResults\": 4363, \"posNeg\": 4363, \"fips\": 26, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 503.0, \"totalTestResultsIncrease\": 503.0, \"ratio\": 0.5257850103140042, \"sinceDay0\": 2}, {\"index\": 472, \"date\": \"2020-03-26T00:00:00\", \"state\": \"MI\", \"positive\": 2856.0, \"negative\": 6550.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"310c71abd72cba718d14795224e4119494c942b2\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 60.0, \"hospitalized\": null, \"total\": 9406, \"totalTestResults\": 9406, \"posNeg\": 9406, \"fips\": 26, \"deathIncrease\": 17.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4481.0, \"positiveIncrease\": 562.0, \"totalTestResultsIncrease\": 5043.0, \"ratio\": 0.30363597703593453, \"sinceDay0\": 3}, {\"index\": 416, \"date\": \"2020-03-27T00:00:00\", \"state\": \"MI\", \"positive\": 3657.0, \"negative\": 6550.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9a88e637206f03a02622b999c68fa4e0b400b417\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 92.0, \"hospitalized\": null, \"total\": 10207, \"totalTestResults\": 10207, \"posNeg\": 10207, \"fips\": 26, \"deathIncrease\": 32.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 801.0, \"totalTestResultsIncrease\": 801.0, \"ratio\": 0.3582835309101597, \"sinceDay0\": 4}, {\"index\": 360, \"date\": \"2020-03-28T00:00:00\", \"state\": \"MI\", \"positive\": 3657.0, \"negative\": 9109.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"19385f58abdb5af8402070c8c995ced4e4a7dd67\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 92.0, \"hospitalized\": null, \"total\": 12766, \"totalTestResults\": 12766, \"posNeg\": 12766, \"fips\": 26, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2559.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 2559.0, \"ratio\": 0.2864640451198496, \"sinceDay0\": 5}, {\"index\": 304, \"date\": \"2020-03-29T00:00:00\", \"state\": \"MI\", \"positive\": 5486.0, \"negative\": 11893.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c8453def420acac39ac418e88b3fa6143a8907e7\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 132.0, \"hospitalized\": null, \"total\": 17379, \"totalTestResults\": 17379, \"posNeg\": 17379, \"fips\": 26, \"deathIncrease\": 40.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2784.0, \"positiveIncrease\": 1829.0, \"totalTestResultsIncrease\": 4613.0, \"ratio\": 0.3156683353472582, \"sinceDay0\": 6}, {\"index\": 248, \"date\": \"2020-03-30T00:00:00\", \"state\": \"MI\", \"positive\": 6498.0, \"negative\": 11893.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1f7c04934f736a642fad67de889c8616b7d6c0bf\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 184.0, \"hospitalized\": null, \"total\": 18391, \"totalTestResults\": 18391, \"posNeg\": 18391, \"fips\": 26, \"deathIncrease\": 52.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 1012.0, \"totalTestResultsIncrease\": 1012.0, \"ratio\": 0.35332499592191835, \"sinceDay0\": 7}, {\"index\": 192, \"date\": \"2020-03-31T00:00:00\", \"state\": \"MI\", \"positive\": 7615.0, \"negative\": 11893.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9c0cc8c0bb411d253f820471b33fd6f20fc98c35\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 259.0, \"hospitalized\": null, \"total\": 19508, \"totalTestResults\": 19508, \"posNeg\": 19508, \"fips\": 26, \"deathIncrease\": 75.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 1117.0, \"totalTestResultsIncrease\": 1117.0, \"ratio\": 0.3903526758253024, \"sinceDay0\": 8}, {\"index\": 136, \"date\": \"2020-04-01T00:00:00\", \"state\": \"MI\", \"positive\": 9334.0, \"negative\": 11893.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"654f19f58224826f0114ad7d33661d9d8880ad78\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 337.0, \"hospitalized\": null, \"total\": 21227, \"totalTestResults\": 21227, \"posNeg\": 21227, \"fips\": 26, \"deathIncrease\": 78.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 1719.0, \"totalTestResultsIncrease\": 1719.0, \"ratio\": 0.4397229942997126, \"sinceDay0\": 9}, {\"index\": 80, \"date\": \"2020-04-02T00:00:00\", \"state\": \"MI\", \"positive\": 10791.0, \"negative\": 11893.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"6f2458a7d5643a87a271e0b9bb088a7bff260de3\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 417.0, \"hospitalized\": null, \"total\": 22684, \"totalTestResults\": 22684, \"posNeg\": 22684, \"fips\": 26, \"deathIncrease\": 80.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 1457.0, \"totalTestResultsIncrease\": 1457.0, \"ratio\": 0.475709751366602, \"sinceDay0\": 10}, {\"index\": 24, \"date\": \"2020-04-03T00:00:00\", \"state\": \"MI\", \"positive\": 12744.0, \"negative\": 11893.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"301039b85ad63d7b9da1b36f9694f4c768754044\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 479.0, \"hospitalized\": null, \"total\": 24637, \"totalTestResults\": 24637, \"posNeg\": 24637, \"fips\": 26, \"deathIncrease\": 62.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 1953.0, \"totalTestResultsIncrease\": 1953.0, \"ratio\": 0.5172707716036855, \"sinceDay0\": 11}, {\"index\": 249, \"date\": \"2020-03-30T00:00:00\", \"state\": \"MN\", \"positive\": 576.0, \"negative\": 18246.0, \"pending\": null, \"hospitalizedCurrently\": 56.0, \"hospitalizedCumulative\": 92.0, \"inIcuCurrently\": 24.0, \"inIcuCumulative\": 24.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f4fd6f4736f788b58399563a48e0a4a14c120ff4\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 10.0, \"hospitalized\": 92.0, \"total\": 18822, \"totalTestResults\": 18822, \"posNeg\": 18822, \"fips\": 27, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 17.0, \"negativeIncrease\": 1092.0, \"positiveIncrease\": 73.0, \"totalTestResultsIncrease\": 1165.0, \"ratio\": 0.030602486452024225, \"sinceDay0\": 0}, {\"index\": 193, \"date\": \"2020-03-31T00:00:00\", \"state\": \"MN\", \"positive\": 629.0, \"negative\": 19151.0, \"pending\": null, \"hospitalizedCurrently\": 56.0, \"hospitalizedCumulative\": 112.0, \"inIcuCurrently\": 26.0, \"inIcuCumulative\": 26.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"cb5ae95ed3bb94c2e6a93343b3be56544a28c7e0\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 12.0, \"hospitalized\": 112.0, \"total\": 19780, \"totalTestResults\": 19780, \"posNeg\": 19780, \"fips\": 27, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 20.0, \"negativeIncrease\": 905.0, \"positiveIncrease\": 53.0, \"totalTestResultsIncrease\": 958.0, \"ratio\": 0.03179979777553084, \"sinceDay0\": 1}, {\"index\": 137, \"date\": \"2020-04-01T00:00:00\", \"state\": \"MN\", \"positive\": 689.0, \"negative\": 20502.0, \"pending\": null, \"hospitalizedCurrently\": 54.0, \"hospitalizedCumulative\": 122.0, \"inIcuCurrently\": 27.0, \"inIcuCumulative\": 27.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f3620fcfc12dce927a8e2f46922b59df0e351756\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 17.0, \"hospitalized\": 122.0, \"total\": 21191, \"totalTestResults\": 21191, \"posNeg\": 21191, \"fips\": 27, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 10.0, \"negativeIncrease\": 1351.0, \"positiveIncrease\": 60.0, \"totalTestResultsIncrease\": 1411.0, \"ratio\": 0.032513803029588034, \"sinceDay0\": 2}, {\"index\": 81, \"date\": \"2020-04-02T00:00:00\", \"state\": \"MN\", \"positive\": 742.0, \"negative\": 21652.0, \"pending\": null, \"hospitalizedCurrently\": 75.0, \"hospitalizedCumulative\": 138.0, \"inIcuCurrently\": 38.0, \"inIcuCumulative\": 38.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"af6b7633af8e8dd204b0ba17fe37e8ade6cd0abb\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 18.0, \"hospitalized\": 138.0, \"total\": 22394, \"totalTestResults\": 22394, \"posNeg\": 22394, \"fips\": 27, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 16.0, \"negativeIncrease\": 1150.0, \"positiveIncrease\": 53.0, \"totalTestResultsIncrease\": 1203.0, \"ratio\": 0.03313387514512816, \"sinceDay0\": 3}, {\"index\": 25, \"date\": \"2020-04-03T00:00:00\", \"state\": \"MN\", \"positive\": 789.0, \"negative\": 23438.0, \"pending\": null, \"hospitalizedCurrently\": 86.0, \"hospitalizedCumulative\": 156.0, \"inIcuCurrently\": 40.0, \"inIcuCumulative\": 40.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"6c45e5c1cc14d97b2d8c49fc1e64ae7a7ebb3861\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 22.0, \"hospitalized\": 156.0, \"total\": 24227, \"totalTestResults\": 24227, \"posNeg\": 24227, \"fips\": 27, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 18.0, \"negativeIncrease\": 1786.0, \"positiveIncrease\": 47.0, \"totalTestResultsIncrease\": 1833.0, \"ratio\": 0.03256697073513023, \"sinceDay0\": 4}, {\"index\": 362, \"date\": \"2020-03-28T00:00:00\", \"state\": \"MO\", \"positive\": 838.0, \"negative\": 10082.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e3f4b93a6ae042958eb8189a70db6a5157dcbfbe\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 10.0, \"hospitalized\": null, \"total\": 10920, \"totalTestResults\": 10920, \"posNeg\": 10920, \"fips\": 29, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 9713.0, \"positiveIncrease\": 169.0, \"totalTestResultsIncrease\": 9882.0, \"ratio\": 0.07673992673992674, \"sinceDay0\": 0}, {\"index\": 306, \"date\": \"2020-03-29T00:00:00\", \"state\": \"MO\", \"positive\": 838.0, \"negative\": 11547.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c9427dccdae92e441cee6fbb2787ea3a231dc686\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 10.0, \"hospitalized\": null, \"total\": 12385, \"totalTestResults\": 12385, \"posNeg\": 12385, \"fips\": 29, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1465.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 1465.0, \"ratio\": 0.06766249495357288, \"sinceDay0\": 1}, {\"index\": 250, \"date\": \"2020-03-30T00:00:00\", \"state\": \"MO\", \"positive\": 1031.0, \"negative\": 13204.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"932b312edc6f1709cc6feaa4afd9e492c17be555\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 13.0, \"hospitalized\": null, \"total\": 14235, \"totalTestResults\": 14235, \"posNeg\": 14235, \"fips\": 29, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1657.0, \"positiveIncrease\": 193.0, \"totalTestResultsIncrease\": 1850.0, \"ratio\": 0.0724271162627327, \"sinceDay0\": 2}, {\"index\": 194, \"date\": \"2020-03-31T00:00:00\", \"state\": \"MO\", \"positive\": 1327.0, \"negative\": 14614.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4fc56f79bf2224a97947093ebb74ae8bf0a5c36f\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 14.0, \"hospitalized\": null, \"total\": 15941, \"totalTestResults\": 15941, \"posNeg\": 15941, \"fips\": 29, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1410.0, \"positiveIncrease\": 296.0, \"totalTestResultsIncrease\": 1706.0, \"ratio\": 0.08324446396085565, \"sinceDay0\": 3}, {\"index\": 138, \"date\": \"2020-04-01T00:00:00\", \"state\": \"MO\", \"positive\": 1581.0, \"negative\": 15846.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"dc97aa93ab282b95a3c23db92cd5efdf0b46ac22\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 18.0, \"hospitalized\": null, \"total\": 17427, \"totalTestResults\": 17427, \"posNeg\": 17427, \"fips\": 29, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1232.0, \"positiveIncrease\": 254.0, \"totalTestResultsIncrease\": 1486.0, \"ratio\": 0.0907212945429506, \"sinceDay0\": 4}, {\"index\": 82, \"date\": \"2020-04-02T00:00:00\", \"state\": \"MO\", \"positive\": 1834.0, \"negative\": 17849.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"db61b660ddb54194c33a182e92605bcbeccb7e37\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 19.0, \"hospitalized\": null, \"total\": 19683, \"totalTestResults\": 19683, \"posNeg\": 19683, \"fips\": 29, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2003.0, \"positiveIncrease\": 253.0, \"totalTestResultsIncrease\": 2256.0, \"ratio\": 0.09317685312198344, \"sinceDay0\": 5}, {\"index\": 26, \"date\": \"2020-04-03T00:00:00\", \"state\": \"MO\", \"positive\": 2113.0, \"negative\": 19357.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4b8f07be28b3788c1fbf8838dfb55730f628b262\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 19.0, \"hospitalized\": null, \"total\": 21470, \"totalTestResults\": 21470, \"posNeg\": 21470, \"fips\": 29, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1508.0, \"positiveIncrease\": 279.0, \"totalTestResultsIncrease\": 1787.0, \"ratio\": 0.0984163949697252, \"sinceDay0\": 6}, {\"index\": 364, \"date\": \"2020-03-28T00:00:00\", \"state\": \"MS\", \"positive\": 663.0, \"negative\": 2560.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 219.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"6abee145ef8e88027852840cb9a48bc1ad203737\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 13.0, \"hospitalized\": 219.0, \"total\": 3223, \"totalTestResults\": 3223, \"posNeg\": 3223, \"fips\": 28, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 34.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 84.0, \"totalTestResultsIncrease\": 84.0, \"ratio\": 0.20570896680111697, \"sinceDay0\": 0}, {\"index\": 308, \"date\": \"2020-03-29T00:00:00\", \"state\": \"MS\", \"positive\": 758.0, \"negative\": 2560.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 235.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"7e0258b174e76d4043c8b6164aa265e2ea9b1f53\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 14.0, \"hospitalized\": 235.0, \"total\": 3318, \"totalTestResults\": 3318, \"posNeg\": 3318, \"fips\": 28, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 16.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 95.0, \"totalTestResultsIncrease\": 95.0, \"ratio\": 0.22845087402049427, \"sinceDay0\": 1}, {\"index\": 252, \"date\": \"2020-03-30T00:00:00\", \"state\": \"MS\", \"positive\": 847.0, \"negative\": 2989.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 195.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"306cc9d00ab15c39bbba409f447156bbece99bfe\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 16.0, \"hospitalized\": 195.0, \"total\": 3836, \"totalTestResults\": 3836, \"posNeg\": 3836, \"fips\": 28, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": -40.0, \"negativeIncrease\": 429.0, \"positiveIncrease\": 89.0, \"totalTestResultsIncrease\": 518.0, \"ratio\": 0.2208029197080292, \"sinceDay0\": 2}, {\"index\": 196, \"date\": \"2020-03-31T00:00:00\", \"state\": \"MS\", \"positive\": 937.0, \"negative\": 3537.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 211.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b44e85184d9a95e733dd5b77766d46986a09876a\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 20.0, \"hospitalized\": 211.0, \"total\": 4474, \"totalTestResults\": 4474, \"posNeg\": 4474, \"fips\": 28, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 16.0, \"negativeIncrease\": 548.0, \"positiveIncrease\": 90.0, \"totalTestResultsIncrease\": 638.0, \"ratio\": 0.2094322753687975, \"sinceDay0\": 3}, {\"index\": 140, \"date\": \"2020-04-01T00:00:00\", \"state\": \"MS\", \"positive\": 1073.0, \"negative\": 3712.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 332.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"03c61b979c5d42a05f6620424c0f7090acc01647\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 22.0, \"hospitalized\": 332.0, \"total\": 4785, \"totalTestResults\": 4785, \"posNeg\": 4785, \"fips\": 28, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 121.0, \"negativeIncrease\": 175.0, \"positiveIncrease\": 136.0, \"totalTestResultsIncrease\": 311.0, \"ratio\": 0.22424242424242424, \"sinceDay0\": 4}, {\"index\": 84, \"date\": \"2020-04-02T00:00:00\", \"state\": \"MS\", \"positive\": 1177.0, \"negative\": 4753.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 360.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"3fcf47375c2d49eb03ea205131eac0e18c42a29d\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 26.0, \"hospitalized\": 360.0, \"total\": 5930, \"totalTestResults\": 5930, \"posNeg\": 5930, \"fips\": 28, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 28.0, \"negativeIncrease\": 1041.0, \"positiveIncrease\": 104.0, \"totalTestResultsIncrease\": 1145.0, \"ratio\": 0.1984822934232715, \"sinceDay0\": 5}, {\"index\": 28, \"date\": \"2020-04-03T00:00:00\", \"state\": \"MS\", \"positive\": 1358.0, \"negative\": 4753.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 420.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8fa26347da7a40d2568c9ec1881dcb83d4ba139c\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 29.0, \"hospitalized\": 420.0, \"total\": 6111, \"totalTestResults\": 6111, \"posNeg\": 6111, \"fips\": 28, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 60.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 181.0, \"totalTestResultsIncrease\": 181.0, \"ratio\": 0.2222222222222222, \"sinceDay0\": 6}, {\"index\": 142, \"date\": \"2020-04-01T00:00:00\", \"state\": \"NC\", \"positive\": 1584.0, \"negative\": 24659.0, \"pending\": null, \"hospitalizedCurrently\": 204.0, \"hospitalizedCumulative\": 204.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e7d16063de0c0d172e6b3c63e9fa5886f5f3311f\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 10.0, \"hospitalized\": 204.0, \"total\": 26243, \"totalTestResults\": 26243, \"posNeg\": 26243, \"fips\": 37, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 47.0, \"negativeIncrease\": 3051.0, \"positiveIncrease\": 86.0, \"totalTestResultsIncrease\": 3137.0, \"ratio\": 0.06035895286362077, \"sinceDay0\": 0}, {\"index\": 86, \"date\": \"2020-04-02T00:00:00\", \"state\": \"NC\", \"positive\": 1857.0, \"negative\": 26822.0, \"pending\": null, \"hospitalizedCurrently\": 184.0, \"hospitalizedCumulative\": 204.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"fc6505af359bdeaf2b3e4eb74c3845c86659e04c\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 16.0, \"hospitalized\": 204.0, \"total\": 28679, \"totalTestResults\": 28679, \"posNeg\": 28679, \"fips\": 37, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2163.0, \"positiveIncrease\": 273.0, \"totalTestResultsIncrease\": 2436.0, \"ratio\": 0.0647512116879947, \"sinceDay0\": 1}, {\"index\": 30, \"date\": \"2020-04-03T00:00:00\", \"state\": \"NC\", \"positive\": 2093.0, \"negative\": 29505.0, \"pending\": null, \"hospitalizedCurrently\": 184.0, \"hospitalizedCumulative\": 259.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"853296f9cd640052947f0851f15fca08782be536\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 19.0, \"hospitalized\": 259.0, \"total\": 31598, \"totalTestResults\": 31598, \"posNeg\": 31598, \"fips\": 37, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 55.0, \"negativeIncrease\": 2683.0, \"positiveIncrease\": 236.0, \"totalTestResultsIncrease\": 2919.0, \"ratio\": 0.06623836951705804, \"sinceDay0\": 2}, {\"index\": 818, \"date\": \"2020-03-20T00:00:00\", \"state\": \"NJ\", \"positive\": 890.0, \"negative\": 264.0, \"pending\": 86.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"42bf8537b56da3791417f26b573d6c19e37af697\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 11.0, \"hospitalized\": null, \"total\": 1240, \"totalTestResults\": 1154, \"posNeg\": 1154, \"fips\": 34, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 54.0, \"positiveIncrease\": 148.0, \"totalTestResultsIncrease\": 202.0, \"ratio\": 0.717741935483871, \"sinceDay0\": 0}, {\"index\": 762, \"date\": \"2020-03-21T00:00:00\", \"state\": \"NJ\", \"positive\": 1327.0, \"negative\": 294.0, \"pending\": 40.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"619c8150d5592b43e0b0c8a542f3ce57862c85b9\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 16.0, \"hospitalized\": null, \"total\": 1661, \"totalTestResults\": 1621, \"posNeg\": 1621, \"fips\": 34, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 30.0, \"positiveIncrease\": 437.0, \"totalTestResultsIncrease\": 467.0, \"ratio\": 0.7989163154726069, \"sinceDay0\": 1}, {\"index\": 706, \"date\": \"2020-03-22T00:00:00\", \"state\": \"NJ\", \"positive\": 1914.0, \"negative\": 327.0, \"pending\": 49.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"facc3296d95ab4cdeff98dca4f6628c0c6c8a193\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 20.0, \"hospitalized\": null, \"total\": 2290, \"totalTestResults\": 2241, \"posNeg\": 2241, \"fips\": 34, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 33.0, \"positiveIncrease\": 587.0, \"totalTestResultsIncrease\": 620.0, \"ratio\": 0.8358078602620087, \"sinceDay0\": 2}, {\"index\": 650, \"date\": \"2020-03-23T00:00:00\", \"state\": \"NJ\", \"positive\": 2844.0, \"negative\": 359.0, \"pending\": 94.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"31b24615de8d15c0b6de14c1d8d6d4f06708f56f\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 27.0, \"hospitalized\": null, \"total\": 3297, \"totalTestResults\": 3203, \"posNeg\": 3203, \"fips\": 34, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 32.0, \"positiveIncrease\": 930.0, \"totalTestResultsIncrease\": 962.0, \"ratio\": 0.8626023657870792, \"sinceDay0\": 3}, {\"index\": 594, \"date\": \"2020-03-24T00:00:00\", \"state\": \"NJ\", \"positive\": 3675.0, \"negative\": 8325.0, \"pending\": 45.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"3298b6676fb93503cc4695dfd502db188db72854\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 44.0, \"hospitalized\": null, \"total\": 12045, \"totalTestResults\": 12000, \"posNeg\": 12000, \"fips\": 34, \"deathIncrease\": 17.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 7966.0, \"positiveIncrease\": 831.0, \"totalTestResultsIncrease\": 8797.0, \"ratio\": 0.30510585305105853, \"sinceDay0\": 4}, {\"index\": 538, \"date\": \"2020-03-25T00:00:00\", \"state\": \"NJ\", \"positive\": 4402.0, \"negative\": 10452.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"db32961abdc494e4610cb9201238755c5dbe9c9d\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 62.0, \"hospitalized\": null, \"total\": 14854, \"totalTestResults\": 14854, \"posNeg\": 14854, \"fips\": 34, \"deathIncrease\": 18.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2127.0, \"positiveIncrease\": 727.0, \"totalTestResultsIncrease\": 2854.0, \"ratio\": 0.2963511512050626, \"sinceDay0\": 5}, {\"index\": 482, \"date\": \"2020-03-26T00:00:00\", \"state\": \"NJ\", \"positive\": 6876.0, \"negative\": 13661.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"71a03230e8915d5c02cdc6c56ad1fb7e389070b8\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 81.0, \"hospitalized\": null, \"total\": 20537, \"totalTestResults\": 20537, \"posNeg\": 20537, \"fips\": 34, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3209.0, \"positiveIncrease\": 2474.0, \"totalTestResultsIncrease\": 5683.0, \"ratio\": 0.33481034230900325, \"sinceDay0\": 6}, {\"index\": 426, \"date\": \"2020-03-27T00:00:00\", \"state\": \"NJ\", \"positive\": 8825.0, \"negative\": 16547.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4f710137c0893063153d8fe5d0e84c4ea0db8bc4\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 108.0, \"hospitalized\": null, \"total\": 25372, \"totalTestResults\": 25372, \"posNeg\": 25372, \"fips\": 34, \"deathIncrease\": 27.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2886.0, \"positiveIncrease\": 1949.0, \"totalTestResultsIncrease\": 4835.0, \"ratio\": 0.3478243733249251, \"sinceDay0\": 7}, {\"index\": 370, \"date\": \"2020-03-28T00:00:00\", \"state\": \"NJ\", \"positive\": 11124.0, \"negative\": 19386.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c6cebd8484d76c0eb029b134ec375b577bb3c0fa\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 140.0, \"hospitalized\": null, \"total\": 30510, \"totalTestResults\": 30510, \"posNeg\": 30510, \"fips\": 34, \"deathIncrease\": 32.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2839.0, \"positiveIncrease\": 2299.0, \"totalTestResultsIncrease\": 5138.0, \"ratio\": 0.36460176991150445, \"sinceDay0\": 8}, {\"index\": 314, \"date\": \"2020-03-29T00:00:00\", \"state\": \"NJ\", \"positive\": 13386.0, \"negative\": 22216.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"818cb76f7734f5c5a61d07feec6d212f8717396e\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 161.0, \"hospitalized\": null, \"total\": 35602, \"totalTestResults\": 35602, \"posNeg\": 35602, \"fips\": 34, \"deathIncrease\": 21.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2830.0, \"positiveIncrease\": 2262.0, \"totalTestResultsIncrease\": 5092.0, \"ratio\": 0.3759901129150048, \"sinceDay0\": 9}, {\"index\": 258, \"date\": \"2020-03-30T00:00:00\", \"state\": \"NJ\", \"positive\": 16636.0, \"negative\": 25224.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0d0e43bb75f7d3018b323178e9b3ff278f6f6451\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 198.0, \"hospitalized\": null, \"total\": 41860, \"totalTestResults\": 41860, \"posNeg\": 41860, \"fips\": 34, \"deathIncrease\": 37.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3008.0, \"positiveIncrease\": 3250.0, \"totalTestResultsIncrease\": 6258.0, \"ratio\": 0.3974199713330148, \"sinceDay0\": 10}, {\"index\": 202, \"date\": \"2020-03-31T00:00:00\", \"state\": \"NJ\", \"positive\": 18696.0, \"negative\": 27077.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f358cd5dac93690b31a9d665dcb3fb4b046eca97\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 267.0, \"hospitalized\": null, \"total\": 45773, \"totalTestResults\": 45773, \"posNeg\": 45773, \"fips\": 34, \"deathIncrease\": 69.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1853.0, \"positiveIncrease\": 2060.0, \"totalTestResultsIncrease\": 3913.0, \"ratio\": 0.4084503965219671, \"sinceDay0\": 11}, {\"index\": 146, \"date\": \"2020-04-01T00:00:00\", \"state\": \"NJ\", \"positive\": 22255.0, \"negative\": 30387.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c70a3b11fb70789f402a5509b3c0000548c2587b\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 355.0, \"hospitalized\": null, \"total\": 52642, \"totalTestResults\": 52642, \"posNeg\": 52642, \"fips\": 34, \"deathIncrease\": 88.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3310.0, \"positiveIncrease\": 3559.0, \"totalTestResultsIncrease\": 6869.0, \"ratio\": 0.42276129326393375, \"sinceDay0\": 12}, {\"index\": 90, \"date\": \"2020-04-02T00:00:00\", \"state\": \"NJ\", \"positive\": 25590.0, \"negative\": 33520.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1350231ad51ae6e7e6b55243f9566d17a5460703\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 537.0, \"hospitalized\": null, \"total\": 59110, \"totalTestResults\": 59110, \"posNeg\": 59110, \"fips\": 34, \"deathIncrease\": 182.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3133.0, \"positiveIncrease\": 3335.0, \"totalTestResultsIncrease\": 6468.0, \"ratio\": 0.43292167145998983, \"sinceDay0\": 13}, {\"index\": 34, \"date\": \"2020-04-03T00:00:00\", \"state\": \"NJ\", \"positive\": 29895.0, \"negative\": 37608.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f3e8ae961e46883c951b2ac5ddd22f46055c6af3\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 646.0, \"hospitalized\": null, \"total\": 67503, \"totalTestResults\": 67503, \"posNeg\": 67503, \"fips\": 34, \"deathIncrease\": 109.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4088.0, \"positiveIncrease\": 4305.0, \"totalTestResultsIncrease\": 8393.0, \"ratio\": 0.442869205813075, \"sinceDay0\": 14}, {\"index\": 484, \"date\": \"2020-03-26T00:00:00\", \"state\": \"NV\", \"positive\": 420.0, \"negative\": 4697.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8439b92c8ef2ecd1b055e3ed1acbab7bedd90001\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 10.0, \"hospitalized\": null, \"total\": 5117, \"totalTestResults\": 5117, \"posNeg\": 5117, \"fips\": 32, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 446.0, \"positiveIncrease\": 99.0, \"totalTestResultsIncrease\": 545.0, \"ratio\": 0.08207934336525308, \"sinceDay0\": 0}, {\"index\": 428, \"date\": \"2020-03-27T00:00:00\", \"state\": \"NV\", \"positive\": 535.0, \"negative\": 6161.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c45254e1c7f4cc7635c3cc42cc996a47b745d36c\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 10.0, \"hospitalized\": null, \"total\": 6696, \"totalTestResults\": 6696, \"posNeg\": 6696, \"fips\": 32, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1464.0, \"positiveIncrease\": 115.0, \"totalTestResultsIncrease\": 1579.0, \"ratio\": 0.0798984468339307, \"sinceDay0\": 1}, {\"index\": 372, \"date\": \"2020-03-28T00:00:00\", \"state\": \"NV\", \"positive\": 621.0, \"negative\": 7901.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"38aee6610ca54e785d7593c3916d7256e0ac2a9b\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 10.0, \"hospitalized\": null, \"total\": 8522, \"totalTestResults\": 8522, \"posNeg\": 8522, \"fips\": 32, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1740.0, \"positiveIncrease\": 86.0, \"totalTestResultsIncrease\": 1826.0, \"ratio\": 0.07287021825862473, \"sinceDay0\": 2}, {\"index\": 316, \"date\": \"2020-03-29T00:00:00\", \"state\": \"NV\", \"positive\": 738.0, \"negative\": 8412.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0c74530736aea27f85556493e8fa89eb8b417763\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 14.0, \"hospitalized\": null, \"total\": 9150, \"totalTestResults\": 9150, \"posNeg\": 9150, \"fips\": 32, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 511.0, \"positiveIncrease\": 117.0, \"totalTestResultsIncrease\": 628.0, \"ratio\": 0.08065573770491803, \"sinceDay0\": 3}, {\"index\": 260, \"date\": \"2020-03-30T00:00:00\", \"state\": \"NV\", \"positive\": 1008.0, \"negative\": 10207.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"34628b797fa0cbc9196833ea89dc685929e71e86\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 15.0, \"hospitalized\": null, \"total\": 11215, \"totalTestResults\": 11215, \"posNeg\": 11215, \"fips\": 32, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1795.0, \"positiveIncrease\": 270.0, \"totalTestResultsIncrease\": 2065.0, \"ratio\": 0.08987962550156041, \"sinceDay0\": 4}, {\"index\": 204, \"date\": \"2020-03-31T00:00:00\", \"state\": \"NV\", \"positive\": 1113.0, \"negative\": 10681.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"75bc5c5fe829f18065e4706cf35ef2994fb69f7b\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 17.0, \"hospitalized\": null, \"total\": 11794, \"totalTestResults\": 11794, \"posNeg\": 11794, \"fips\": 32, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 474.0, \"positiveIncrease\": 105.0, \"totalTestResultsIncrease\": 579.0, \"ratio\": 0.09437001865355266, \"sinceDay0\": 5}, {\"index\": 148, \"date\": \"2020-04-01T00:00:00\", \"state\": \"NV\", \"positive\": 1279.0, \"negative\": 11519.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"99ca8c448bcd3a57ffe6454db6a4b2533447a96b\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 26.0, \"hospitalized\": null, \"total\": 12798, \"totalTestResults\": 12798, \"posNeg\": 12798, \"fips\": 32, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 838.0, \"positiveIncrease\": 166.0, \"totalTestResultsIncrease\": 1004.0, \"ratio\": 0.09993749023284888, \"sinceDay0\": 6}, {\"index\": 92, \"date\": \"2020-04-02T00:00:00\", \"state\": \"NV\", \"positive\": 1458.0, \"negative\": 12588.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ac281047995939a05d81fab70153c5a347c9a93f\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 38.0, \"hospitalized\": null, \"total\": 14046, \"totalTestResults\": 14046, \"posNeg\": 14046, \"fips\": 32, \"deathIncrease\": 12.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1069.0, \"positiveIncrease\": 179.0, \"totalTestResultsIncrease\": 1248.0, \"ratio\": 0.10380179410508329, \"sinceDay0\": 7}, {\"index\": 36, \"date\": \"2020-04-03T00:00:00\", \"state\": \"NV\", \"positive\": 1514.0, \"negative\": 13018.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b06428c9678bd268d2992c491635ac82ec96bf35\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 43.0, \"hospitalized\": null, \"total\": 14532, \"totalTestResults\": 14532, \"posNeg\": 14532, \"fips\": 32, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 430.0, \"positiveIncrease\": 56.0, \"totalTestResultsIncrease\": 486.0, \"ratio\": 0.10418387007982384, \"sinceDay0\": 8}, {\"index\": 933, \"date\": \"2020-03-18T00:00:00\", \"state\": \"NY\", \"positive\": 2382.0, \"negative\": 12215.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"65a08e6a0f81bd2c4bbc9988a17f0892d2ec4d35\", \"dateChecked\": \"2020-03-18T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 14597, \"totalTestResults\": 14597, \"posNeg\": 14597, \"fips\": 36, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 6709.0, \"positiveIncrease\": 682.0, \"totalTestResultsIncrease\": 7391.0, \"ratio\": 0.1631842159347811, \"sinceDay0\": 0}, {\"index\": 877, \"date\": \"2020-03-19T00:00:00\", \"state\": \"NY\", \"positive\": 4152.0, \"negative\": 18132.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"2eabc9b73139066e3613021b1e9c9deaf8af733c\", \"dateChecked\": \"2020-03-19T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 22284, \"totalTestResults\": 22284, \"posNeg\": 22284, \"fips\": 36, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5917.0, \"positiveIncrease\": 1770.0, \"totalTestResultsIncrease\": 7687.0, \"ratio\": 0.18632202477113624, \"sinceDay0\": 1}, {\"index\": 821, \"date\": \"2020-03-20T00:00:00\", \"state\": \"NY\", \"positive\": 7102.0, \"negative\": 25325.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5293b5c5920709d4f3cf66b901621a61a47d0d23\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 35.0, \"hospitalized\": null, \"total\": 32427, \"totalTestResults\": 32427, \"posNeg\": 32427, \"fips\": 36, \"deathIncrease\": 23.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 7193.0, \"positiveIncrease\": 2950.0, \"totalTestResultsIncrease\": 10143.0, \"ratio\": 0.21901501834890677, \"sinceDay0\": 2}, {\"index\": 765, \"date\": \"2020-03-21T00:00:00\", \"state\": \"NY\", \"positive\": 10356.0, \"negative\": 35081.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1603.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"eb983c3fb4fc2d7f3c2c1250578379f502787c29\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 44.0, \"hospitalized\": 1603.0, \"total\": 45437, \"totalTestResults\": 45437, \"posNeg\": 45437, \"fips\": 36, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 1603.0, \"negativeIncrease\": 9756.0, \"positiveIncrease\": 3254.0, \"totalTestResultsIncrease\": 13010.0, \"ratio\": 0.2279199771111649, \"sinceDay0\": 3}, {\"index\": 709, \"date\": \"2020-03-22T00:00:00\", \"state\": \"NY\", \"positive\": 15168.0, \"negative\": 46233.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1974.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0df3f76e6407f511b0c5bf4f5647cce8f407250e\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 114.0, \"hospitalized\": 1974.0, \"total\": 61401, \"totalTestResults\": 61401, \"posNeg\": 61401, \"fips\": 36, \"deathIncrease\": 70.0, \"hospitalizedIncrease\": 371.0, \"negativeIncrease\": 11152.0, \"positiveIncrease\": 4812.0, \"totalTestResultsIncrease\": 15964.0, \"ratio\": 0.24703180729955537, \"sinceDay0\": 4}, {\"index\": 653, \"date\": \"2020-03-23T00:00:00\", \"state\": \"NY\", \"positive\": 20875.0, \"negative\": 57414.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 2635.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"40440cdc2bc6ecd1d88040f01ebbdcb130a33257\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 114.0, \"hospitalized\": 2635.0, \"total\": 78289, \"totalTestResults\": 78289, \"posNeg\": 78289, \"fips\": 36, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 661.0, \"negativeIncrease\": 11181.0, \"positiveIncrease\": 5707.0, \"totalTestResultsIncrease\": 16888.0, \"ratio\": 0.2666402687478445, \"sinceDay0\": 5}, {\"index\": 597, \"date\": \"2020-03-24T00:00:00\", \"state\": \"NY\", \"positive\": 25665.0, \"negative\": 65605.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 3234.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ea3323c8187b8ff5574d3576f83791e01dd1521f\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 210.0, \"hospitalized\": 3234.0, \"total\": 91270, \"totalTestResults\": 91270, \"posNeg\": 91270, \"fips\": 36, \"deathIncrease\": 96.0, \"hospitalizedIncrease\": 599.0, \"negativeIncrease\": 8191.0, \"positiveIncrease\": 4790.0, \"totalTestResultsIncrease\": 12981.0, \"ratio\": 0.2811986413936671, \"sinceDay0\": 6}, {\"index\": 541, \"date\": \"2020-03-25T00:00:00\", \"state\": \"NY\", \"positive\": 30811.0, \"negative\": 72668.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 3805.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"332b18596170cd3e35617cfba48a5723aa2ec8f3\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 285.0, \"hospitalized\": 3805.0, \"total\": 103479, \"totalTestResults\": 103479, \"posNeg\": 103479, \"fips\": 36, \"deathIncrease\": 75.0, \"hospitalizedIncrease\": 571.0, \"negativeIncrease\": 7063.0, \"positiveIncrease\": 5146.0, \"totalTestResultsIncrease\": 12209.0, \"ratio\": 0.2977512345500053, \"sinceDay0\": 7}, {\"index\": 485, \"date\": \"2020-03-26T00:00:00\", \"state\": \"NY\", \"positive\": 37258.0, \"negative\": 84846.0, \"pending\": null, \"hospitalizedCurrently\": 5327.0, \"hospitalizedCumulative\": 6844.0, \"inIcuCurrently\": 1290.0, \"inIcuCumulative\": 1290.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c9e5180c39aab68a5662116651d17a05f4e4b966\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 385.0, \"hospitalized\": 6844.0, \"total\": 122104, \"totalTestResults\": 122104, \"posNeg\": 122104, \"fips\": 36, \"deathIncrease\": 100.0, \"hospitalizedIncrease\": 3039.0, \"negativeIncrease\": 12178.0, \"positiveIncrease\": 6447.0, \"totalTestResultsIncrease\": 18625.0, \"ratio\": 0.3051333289654721, \"sinceDay0\": 8}, {\"index\": 429, \"date\": \"2020-03-27T00:00:00\", \"state\": \"NY\", \"positive\": 44635.0, \"negative\": 101118.0, \"pending\": null, \"hospitalizedCurrently\": 6481.0, \"hospitalizedCumulative\": 8526.0, \"inIcuCurrently\": 1583.0, \"inIcuCumulative\": 1583.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 2045.0, \"hash\": \"d7f2dd3fcfbabebfdaeaa0a19e5db38d94fb112a\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 519.0, \"hospitalized\": 8526.0, \"total\": 145753, \"totalTestResults\": 145753, \"posNeg\": 145753, \"fips\": 36, \"deathIncrease\": 134.0, \"hospitalizedIncrease\": 1682.0, \"negativeIncrease\": 16272.0, \"positiveIncrease\": 7377.0, \"totalTestResultsIncrease\": 23649.0, \"ratio\": 0.3062372644130824, \"sinceDay0\": 9}, {\"index\": 373, \"date\": \"2020-03-28T00:00:00\", \"state\": \"NY\", \"positive\": 52318.0, \"negative\": 103616.0, \"pending\": null, \"hospitalizedCurrently\": 7328.0, \"hospitalizedCumulative\": 10054.0, \"inIcuCurrently\": 1755.0, \"inIcuCumulative\": 1755.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 2726.0, \"hash\": \"7592db95575a5d4ef226ff6014283d8d85a0db52\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 728.0, \"hospitalized\": 10054.0, \"total\": 155934, \"totalTestResults\": 155934, \"posNeg\": 155934, \"fips\": 36, \"deathIncrease\": 209.0, \"hospitalizedIncrease\": 1528.0, \"negativeIncrease\": 2498.0, \"positiveIncrease\": 7683.0, \"totalTestResultsIncrease\": 10181.0, \"ratio\": 0.33551374299383074, \"sinceDay0\": 10}, {\"index\": 317, \"date\": \"2020-03-29T00:00:00\", \"state\": \"NY\", \"positive\": 59513.0, \"negative\": 112847.0, \"pending\": null, \"hospitalizedCurrently\": 8503.0, \"hospitalizedCumulative\": 12075.0, \"inIcuCurrently\": 2037.0, \"inIcuCumulative\": 2037.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 3572.0, \"hash\": \"b5656122e28105ae4788a0d68eabb1ef68a06287\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 965.0, \"hospitalized\": 12075.0, \"total\": 172360, \"totalTestResults\": 172360, \"posNeg\": 172360, \"fips\": 36, \"deathIncrease\": 237.0, \"hospitalizedIncrease\": 2021.0, \"negativeIncrease\": 9231.0, \"positiveIncrease\": 7195.0, \"totalTestResultsIncrease\": 16426.0, \"ratio\": 0.34528312833604086, \"sinceDay0\": 11}, {\"index\": 261, \"date\": \"2020-03-30T00:00:00\", \"state\": \"NY\", \"positive\": 66497.0, \"negative\": 119971.0, \"pending\": null, \"hospitalizedCurrently\": 9517.0, \"hospitalizedCumulative\": 13721.0, \"inIcuCurrently\": 2352.0, \"inIcuCumulative\": 2352.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 4204.0, \"hash\": \"a749060bc47c2573b505c13198673b348ed3cc2b\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 1218.0, \"hospitalized\": 13721.0, \"total\": 186468, \"totalTestResults\": 186468, \"posNeg\": 186468, \"fips\": 36, \"deathIncrease\": 253.0, \"hospitalizedIncrease\": 1646.0, \"negativeIncrease\": 7124.0, \"positiveIncrease\": 6984.0, \"totalTestResultsIncrease\": 14108.0, \"ratio\": 0.35661346719008086, \"sinceDay0\": 12}, {\"index\": 205, \"date\": \"2020-03-31T00:00:00\", \"state\": \"NY\", \"positive\": 75795.0, \"negative\": 129391.0, \"pending\": null, \"hospitalizedCurrently\": 10929.0, \"hospitalizedCumulative\": 15904.0, \"inIcuCurrently\": 2710.0, \"inIcuCumulative\": 2710.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 4975.0, \"hash\": \"a3afdea93fae4daf8073978749d736d46e9134c6\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 1550.0, \"hospitalized\": 15904.0, \"total\": 205186, \"totalTestResults\": 205186, \"posNeg\": 205186, \"fips\": 36, \"deathIncrease\": 332.0, \"hospitalizedIncrease\": 2183.0, \"negativeIncrease\": 9420.0, \"positiveIncrease\": 9298.0, \"totalTestResultsIncrease\": 18718.0, \"ratio\": 0.3693965475227355, \"sinceDay0\": 13}, {\"index\": 149, \"date\": \"2020-04-01T00:00:00\", \"state\": \"NY\", \"positive\": 83712.0, \"negative\": 137168.0, \"pending\": null, \"hospitalizedCurrently\": 12226.0, \"hospitalizedCumulative\": 18368.0, \"inIcuCurrently\": 3022.0, \"inIcuCumulative\": 3022.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 6142.0, \"hash\": \"bc022c8f01dbc1a4d1f046ebce21c18a7b42cfa6\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 1941.0, \"hospitalized\": 18368.0, \"total\": 220880, \"totalTestResults\": 220880, \"posNeg\": 220880, \"fips\": 36, \"deathIncrease\": 391.0, \"hospitalizedIncrease\": 2464.0, \"negativeIncrease\": 7777.0, \"positiveIncrease\": 7917.0, \"totalTestResultsIncrease\": 15694.0, \"ratio\": 0.3789931184353495, \"sinceDay0\": 14}, {\"index\": 93, \"date\": \"2020-04-02T00:00:00\", \"state\": \"NY\", \"positive\": 92381.0, \"negative\": 146584.0, \"pending\": null, \"hospitalizedCurrently\": 13383.0, \"hospitalizedCumulative\": 20817.0, \"inIcuCurrently\": 3396.0, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 7434.0, \"hash\": \"764d0566c27be04c416c502640d5fffbcb8cad26\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 2373.0, \"hospitalized\": 20817.0, \"total\": 238965, \"totalTestResults\": 238965, \"posNeg\": 238965, \"fips\": 36, \"deathIncrease\": 432.0, \"hospitalizedIncrease\": 2449.0, \"negativeIncrease\": 9416.0, \"positiveIncrease\": 8669.0, \"totalTestResultsIncrease\": 18085.0, \"ratio\": 0.3865879940577072, \"sinceDay0\": 15}, {\"index\": 37, \"date\": \"2020-04-03T00:00:00\", \"state\": \"NY\", \"positive\": 102863.0, \"negative\": 168139.0, \"pending\": null, \"hospitalizedCurrently\": 14810.0, \"hospitalizedCumulative\": 23696.0, \"inIcuCurrently\": 3731.0, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 8886.0, \"hash\": \"accc00cef8483cff65936c97844fa6aa44976324\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 2935.0, \"hospitalized\": 23696.0, \"total\": 271002, \"totalTestResults\": 271002, \"posNeg\": 271002, \"fips\": 36, \"deathIncrease\": 562.0, \"hospitalizedIncrease\": 2879.0, \"negativeIncrease\": 21555.0, \"positiveIncrease\": 10482.0, \"totalTestResultsIncrease\": 32037.0, \"ratio\": 0.3795654644615169, \"sinceDay0\": 16}, {\"index\": 542, \"date\": \"2020-03-25T00:00:00\", \"state\": \"OH\", \"positive\": 704.0, \"negative\": 14060.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 182.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 74.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"37f081a41326a68ac5070d7ed52344f4839699b4\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 10.0, \"hospitalized\": 182.0, \"total\": 14764, \"totalTestResults\": 14764, \"posNeg\": 14764, \"fips\": 39, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 37.0, \"negativeIncrease\": 13920.0, \"positiveIncrease\": 140.0, \"totalTestResultsIncrease\": 14060.0, \"ratio\": 0.047683554592251425, \"sinceDay0\": 0}, {\"index\": 486, \"date\": \"2020-03-26T00:00:00\", \"state\": \"OH\", \"positive\": 867.0, \"negative\": 16449.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 223.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 91.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ec54f23b722a56fc6cb60ec0603c774a574b1b58\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 15.0, \"hospitalized\": 223.0, \"total\": 17316, \"totalTestResults\": 17316, \"posNeg\": 17316, \"fips\": 39, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 41.0, \"negativeIncrease\": 2389.0, \"positiveIncrease\": 163.0, \"totalTestResultsIncrease\": 2552.0, \"ratio\": 0.05006930006930007, \"sinceDay0\": 1}, {\"index\": 430, \"date\": \"2020-03-27T00:00:00\", \"state\": \"OH\", \"positive\": 1137.0, \"negative\": 19012.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 276.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 107.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"775347bbd54dbd3e3235391c7d2d5eb4c87cab2c\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 19.0, \"hospitalized\": 276.0, \"total\": 20149, \"totalTestResults\": 20149, \"posNeg\": 20149, \"fips\": 39, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 53.0, \"negativeIncrease\": 2563.0, \"positiveIncrease\": 270.0, \"totalTestResultsIncrease\": 2833.0, \"ratio\": 0.05642959948384535, \"sinceDay0\": 2}, {\"index\": 374, \"date\": \"2020-03-28T00:00:00\", \"state\": \"OH\", \"positive\": 1406.0, \"negative\": 19012.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 344.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 123.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e1ae2e6533d6476a00dce3fdf53a9d06d6df11c3\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 25.0, \"hospitalized\": 344.0, \"total\": 20418, \"totalTestResults\": 20418, \"posNeg\": 20418, \"fips\": 39, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 68.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 269.0, \"totalTestResultsIncrease\": 269.0, \"ratio\": 0.06886080909001861, \"sinceDay0\": 3}, {\"index\": 318, \"date\": \"2020-03-29T00:00:00\", \"state\": \"OH\", \"positive\": 1653.0, \"negative\": 19012.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 403.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 139.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"10c9da94683ad45dfb568422d04af2604ade7ca3\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 29.0, \"hospitalized\": 403.0, \"total\": 20665, \"totalTestResults\": 20665, \"posNeg\": 20665, \"fips\": 39, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 59.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 247.0, \"totalTestResultsIncrease\": 247.0, \"ratio\": 0.07999032180014518, \"sinceDay0\": 4}, {\"index\": 262, \"date\": \"2020-03-30T00:00:00\", \"state\": \"OH\", \"positive\": 1933.0, \"negative\": 25342.0, \"pending\": null, \"hospitalizedCurrently\": 312.0, \"hospitalizedCumulative\": 475.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 163.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4919c330ab80341299bf33ea25f67dd58a96dd17\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 39.0, \"hospitalized\": 475.0, \"total\": 27275, \"totalTestResults\": 27275, \"posNeg\": 27275, \"fips\": 39, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 72.0, \"negativeIncrease\": 6330.0, \"positiveIncrease\": 280.0, \"totalTestResultsIncrease\": 6610.0, \"ratio\": 0.07087076076993584, \"sinceDay0\": 5}, {\"index\": 206, \"date\": \"2020-03-31T00:00:00\", \"state\": \"OH\", \"positive\": 2199.0, \"negative\": 26992.0, \"pending\": null, \"hospitalizedCurrently\": 387.0, \"hospitalizedCumulative\": 585.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 198.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"2b80954e16b24e4b7d7e8599a71763c1081a8715\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 55.0, \"hospitalized\": 585.0, \"total\": 29191, \"totalTestResults\": 29191, \"posNeg\": 29191, \"fips\": 39, \"deathIncrease\": 16.0, \"hospitalizedIncrease\": 110.0, \"negativeIncrease\": 1650.0, \"positiveIncrease\": 266.0, \"totalTestResultsIncrease\": 1916.0, \"ratio\": 0.075331437771916, \"sinceDay0\": 6}, {\"index\": 150, \"date\": \"2020-04-01T00:00:00\", \"state\": \"OH\", \"positive\": 2547.0, \"negative\": 26992.0, \"pending\": null, \"hospitalizedCurrently\": 679.0, \"hospitalizedCumulative\": 679.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 222.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"dbf14be5566651ac0a96384a5162108330436895\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 65.0, \"hospitalized\": 679.0, \"total\": 29539, \"totalTestResults\": 29539, \"posNeg\": 29539, \"fips\": 39, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 94.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 348.0, \"totalTestResultsIncrease\": 348.0, \"ratio\": 0.08622499069027388, \"sinceDay0\": 7}, {\"index\": 94, \"date\": \"2020-04-02T00:00:00\", \"state\": \"OH\", \"positive\": 2902.0, \"negative\": 32016.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 802.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 260.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9cb637113ec0c42f449d0e11e3fb945befdcb348\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 81.0, \"hospitalized\": 802.0, \"total\": 34918, \"totalTestResults\": 34918, \"posNeg\": 34918, \"fips\": 39, \"deathIncrease\": 16.0, \"hospitalizedIncrease\": 123.0, \"negativeIncrease\": 5024.0, \"positiveIncrease\": 355.0, \"totalTestResultsIncrease\": 5379.0, \"ratio\": 0.08310899822441148, \"sinceDay0\": 8}, {\"index\": 38, \"date\": \"2020-04-03T00:00:00\", \"state\": \"OH\", \"positive\": 3312.0, \"negative\": 35063.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 895.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 288.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4f9def22c6f51b8839104ffcb46d41122de71744\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 91.0, \"hospitalized\": 895.0, \"total\": 38375, \"totalTestResults\": 38375, \"posNeg\": 38375, \"fips\": 39, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 93.0, \"negativeIncrease\": 3047.0, \"positiveIncrease\": 410.0, \"totalTestResultsIncrease\": 3457.0, \"ratio\": 0.08630618892508143, \"sinceDay0\": 9}, {\"index\": 375, \"date\": \"2020-03-28T00:00:00\", \"state\": \"OK\", \"positive\": 377.0, \"negative\": 1180.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 126.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0955acd0f7dadd282ecf522f79bd9042b3af7b95\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 15.0, \"hospitalized\": 126.0, \"total\": 1557, \"totalTestResults\": 1557, \"posNeg\": 1557, \"fips\": 40, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 21.0, \"negativeIncrease\": 96.0, \"positiveIncrease\": 55.0, \"totalTestResultsIncrease\": 151.0, \"ratio\": 0.24213230571612074, \"sinceDay0\": 0}, {\"index\": 319, \"date\": \"2020-03-29T00:00:00\", \"state\": \"OK\", \"positive\": 429.0, \"negative\": 1205.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 140.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"90830f70410babf14d5be9257a440aec4c3a2752\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 16.0, \"hospitalized\": 140.0, \"total\": 1634, \"totalTestResults\": 1634, \"posNeg\": 1634, \"fips\": 40, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 14.0, \"negativeIncrease\": 25.0, \"positiveIncrease\": 52.0, \"totalTestResultsIncrease\": 77.0, \"ratio\": 0.26254589963280295, \"sinceDay0\": 1}, {\"index\": 263, \"date\": \"2020-03-30T00:00:00\", \"state\": \"OK\", \"positive\": 481.0, \"negative\": 1207.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 153.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b3b3a86a6005e6bb134a5072898bce9dfe1e5b69\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 17.0, \"hospitalized\": 153.0, \"total\": 1688, \"totalTestResults\": 1688, \"posNeg\": 1688, \"fips\": 40, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 13.0, \"negativeIncrease\": 2.0, \"positiveIncrease\": 52.0, \"totalTestResultsIncrease\": 54.0, \"ratio\": 0.2849526066350711, \"sinceDay0\": 2}, {\"index\": 207, \"date\": \"2020-03-31T00:00:00\", \"state\": \"OK\", \"positive\": 565.0, \"negative\": 1229.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 177.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"7644495f3049f57946f6ac8b36f1eb1ffc6b7991\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 23.0, \"hospitalized\": 177.0, \"total\": 1794, \"totalTestResults\": 1794, \"posNeg\": 1794, \"fips\": 40, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 24.0, \"negativeIncrease\": 22.0, \"positiveIncrease\": 84.0, \"totalTestResultsIncrease\": 106.0, \"ratio\": 0.3149386845039019, \"sinceDay0\": 3}, {\"index\": 151, \"date\": \"2020-04-01T00:00:00\", \"state\": \"OK\", \"positive\": 719.0, \"negative\": 1248.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 219.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ac29d7657881eeb536d49135e22894a8e669ba86\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 30.0, \"hospitalized\": 219.0, \"total\": 1967, \"totalTestResults\": 1967, \"posNeg\": 1967, \"fips\": 40, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 42.0, \"negativeIncrease\": 19.0, \"positiveIncrease\": 154.0, \"totalTestResultsIncrease\": 173.0, \"ratio\": 0.36553126588713775, \"sinceDay0\": 4}, {\"index\": 95, \"date\": \"2020-04-02T00:00:00\", \"state\": \"OK\", \"positive\": 879.0, \"negative\": 1265.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 257.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"566ac2a75a879b83eb20085c9ea44852fa14d63a\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 34.0, \"hospitalized\": 257.0, \"total\": 2144, \"totalTestResults\": 2144, \"posNeg\": 2144, \"fips\": 40, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 38.0, \"negativeIncrease\": 17.0, \"positiveIncrease\": 160.0, \"totalTestResultsIncrease\": 177.0, \"ratio\": 0.4099813432835821, \"sinceDay0\": 5}, {\"index\": 39, \"date\": \"2020-04-03T00:00:00\", \"state\": \"OK\", \"positive\": 988.0, \"negative\": 1315.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 289.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8702f6d3df27dc4ba14e053f1f3ea347acc7dbcf\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 38.0, \"hospitalized\": 289.0, \"total\": 2303, \"totalTestResults\": 2303, \"posNeg\": 2303, \"fips\": 40, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 32.0, \"negativeIncrease\": 50.0, \"positiveIncrease\": 109.0, \"totalTestResultsIncrease\": 159.0, \"ratio\": 0.4290056448111159, \"sinceDay0\": 6}, {\"index\": 488, \"date\": \"2020-03-26T00:00:00\", \"state\": \"OR\", \"positive\": 327.0, \"negative\": 6953.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 90.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ddb030ea072a2fe01a8d71d2a5a24e917d4e8ea2\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 11.0, \"hospitalized\": 90.0, \"total\": 7280, \"totalTestResults\": 7280, \"posNeg\": 7280, \"fips\": 41, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 29.0, \"negativeIncrease\": 2603.0, \"positiveIncrease\": 118.0, \"totalTestResultsIncrease\": 2721.0, \"ratio\": 0.04491758241758242, \"sinceDay0\": 0}, {\"index\": 432, \"date\": \"2020-03-27T00:00:00\", \"state\": \"OR\", \"positive\": 414.0, \"negative\": 8510.0, \"pending\": null, \"hospitalizedCurrently\": 91.0, \"hospitalizedCumulative\": 102.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 31.0, \"onVentilatorCumulative\": 31.0, \"recovered\": null, \"hash\": \"b60609c583643679e2b128c34d9394e1a6104f4d\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 12.0, \"hospitalized\": 102.0, \"total\": 8924, \"totalTestResults\": 8924, \"posNeg\": 8924, \"fips\": 41, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 12.0, \"negativeIncrease\": 1557.0, \"positiveIncrease\": 87.0, \"totalTestResultsIncrease\": 1644.0, \"ratio\": 0.04639175257731959, \"sinceDay0\": 1}, {\"index\": 376, \"date\": \"2020-03-28T00:00:00\", \"state\": \"OR\", \"positive\": 479.0, \"negative\": 9693.0, \"pending\": null, \"hospitalizedCurrently\": 107.0, \"hospitalizedCumulative\": 117.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 31.0, \"onVentilatorCumulative\": 31.0, \"recovered\": null, \"hash\": \"4615188d4b688420245f6cee70b98db2cee2680e\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 13.0, \"hospitalized\": 117.0, \"total\": 10172, \"totalTestResults\": 10172, \"posNeg\": 10172, \"fips\": 41, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 15.0, \"negativeIncrease\": 1183.0, \"positiveIncrease\": 65.0, \"totalTestResultsIncrease\": 1248.0, \"ratio\": 0.04709005112072356, \"sinceDay0\": 2}, {\"index\": 320, \"date\": \"2020-03-29T00:00:00\", \"state\": \"OR\", \"positive\": 548.0, \"negative\": 10878.0, \"pending\": null, \"hospitalizedCurrently\": 107.0, \"hospitalizedCumulative\": 129.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 37.0, \"onVentilatorCumulative\": 37.0, \"recovered\": null, \"hash\": \"fe238901e3353621bc8b5a2c6bdc5b61a26b07fb\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 13.0, \"hospitalized\": 129.0, \"total\": 11426, \"totalTestResults\": 11426, \"posNeg\": 11426, \"fips\": 41, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 12.0, \"negativeIncrease\": 1185.0, \"positiveIncrease\": 69.0, \"totalTestResultsIncrease\": 1254.0, \"ratio\": 0.04796079117801506, \"sinceDay0\": 3}, {\"index\": 264, \"date\": \"2020-03-30T00:00:00\", \"state\": \"OR\", \"positive\": 606.0, \"negative\": 12277.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 140.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 39.0, \"onVentilatorCumulative\": 39.0, \"recovered\": null, \"hash\": \"c543299db7bd820697dd1e52f379790ec57de15a\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 16.0, \"hospitalized\": 140.0, \"total\": 12883, \"totalTestResults\": 12883, \"posNeg\": 12883, \"fips\": 41, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 11.0, \"negativeIncrease\": 1399.0, \"positiveIncrease\": 58.0, \"totalTestResultsIncrease\": 1457.0, \"ratio\": 0.047038733214313434, \"sinceDay0\": 4}, {\"index\": 208, \"date\": \"2020-03-31T00:00:00\", \"state\": \"OR\", \"positive\": 690.0, \"negative\": 13136.0, \"pending\": null, \"hospitalizedCurrently\": 132.0, \"hospitalizedCumulative\": 154.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 40.0, \"onVentilatorCumulative\": 40.0, \"recovered\": null, \"hash\": \"e44596521fd7149cd51b2feacaf8439e95aa4e5d\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 18.0, \"hospitalized\": 154.0, \"total\": 13826, \"totalTestResults\": 13826, \"posNeg\": 13826, \"fips\": 41, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 14.0, \"negativeIncrease\": 859.0, \"positiveIncrease\": 84.0, \"totalTestResultsIncrease\": 943.0, \"ratio\": 0.049905974251410384, \"sinceDay0\": 5}, {\"index\": 152, \"date\": \"2020-04-01T00:00:00\", \"state\": \"OR\", \"positive\": 690.0, \"negative\": 13136.0, \"pending\": null, \"hospitalizedCurrently\": 132.0, \"hospitalizedCumulative\": 154.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 40.0, \"onVentilatorCumulative\": 40.0, \"recovered\": null, \"hash\": \"c37eb024e65c3469e098cccb5acb7c4e54ced2df\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 18.0, \"hospitalized\": 154.0, \"total\": 13826, \"totalTestResults\": 13826, \"posNeg\": 13826, \"fips\": 41, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.049905974251410384, \"sinceDay0\": 6}, {\"index\": 96, \"date\": \"2020-04-02T00:00:00\", \"state\": \"OR\", \"positive\": 736.0, \"negative\": 14132.0, \"pending\": null, \"hospitalizedCurrently\": 134.0, \"hospitalizedCumulative\": 167.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 38.0, \"onVentilatorCumulative\": 40.0, \"recovered\": null, \"hash\": \"b771658b625232d8a1f579f80eab46699a03f83b\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 19.0, \"hospitalized\": 167.0, \"total\": 14868, \"totalTestResults\": 14868, \"posNeg\": 14868, \"fips\": 41, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 13.0, \"negativeIncrease\": 996.0, \"positiveIncrease\": 46.0, \"totalTestResultsIncrease\": 1042.0, \"ratio\": 0.04950228679042239, \"sinceDay0\": 7}, {\"index\": 40, \"date\": \"2020-04-03T00:00:00\", \"state\": \"OR\", \"positive\": 826.0, \"negative\": 15259.0, \"pending\": null, \"hospitalizedCurrently\": 188.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 38.0, \"onVentilatorCumulative\": 40.0, \"recovered\": null, \"hash\": \"b2e5b88bbad8239be3032b82f4afe354fc21fe96\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 21.0, \"hospitalized\": null, \"total\": 16085, \"totalTestResults\": 16085, \"posNeg\": 16085, \"fips\": 41, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1127.0, \"positiveIncrease\": 90.0, \"totalTestResultsIncrease\": 1217.0, \"ratio\": 0.0513521914827479, \"sinceDay0\": 8}, {\"index\": 545, \"date\": \"2020-03-25T00:00:00\", \"state\": \"PA\", \"positive\": 1127.0, \"negative\": 11193.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a04cdbf57ddbd0c489b48882295db9559fb037b5\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 11.0, \"hospitalized\": null, \"total\": 12320, \"totalTestResults\": 12320, \"posNeg\": 12320, \"fips\": 42, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2550.0, \"positiveIncrease\": 276.0, \"totalTestResultsIncrease\": 2826.0, \"ratio\": 0.09147727272727273, \"sinceDay0\": 0}, {\"index\": 489, \"date\": \"2020-03-26T00:00:00\", \"state\": \"PA\", \"positive\": 1687.0, \"negative\": 16441.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"7712fd7f15f40e975c2a503bd7633edd4387df7e\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 16.0, \"hospitalized\": null, \"total\": 18128, \"totalTestResults\": 18128, \"posNeg\": 18128, \"fips\": 42, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5248.0, \"positiveIncrease\": 560.0, \"totalTestResultsIncrease\": 5808.0, \"ratio\": 0.09306045895851721, \"sinceDay0\": 1}, {\"index\": 433, \"date\": \"2020-03-27T00:00:00\", \"state\": \"PA\", \"positive\": 2218.0, \"negative\": 21016.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 241.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e80400da9fd2c8e84d22566050fa2b705d7fdde0\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 22.0, \"hospitalized\": 241.0, \"total\": 23234, \"totalTestResults\": 23234, \"posNeg\": 23234, \"fips\": 42, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 241.0, \"negativeIncrease\": 4575.0, \"positiveIncrease\": 531.0, \"totalTestResultsIncrease\": 5106.0, \"ratio\": 0.09546354480502711, \"sinceDay0\": 2}, {\"index\": 377, \"date\": \"2020-03-28T00:00:00\", \"state\": \"PA\", \"positive\": 2751.0, \"negative\": 25254.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 316.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0b00e5e4eec84c744f25bfd23aa3ff905cca2f2e\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 34.0, \"hospitalized\": 316.0, \"total\": 28005, \"totalTestResults\": 28005, \"posNeg\": 28005, \"fips\": 42, \"deathIncrease\": 12.0, \"hospitalizedIncrease\": 75.0, \"negativeIncrease\": 4238.0, \"positiveIncrease\": 533.0, \"totalTestResultsIncrease\": 4771.0, \"ratio\": 0.09823245848955543, \"sinceDay0\": 3}, {\"index\": 321, \"date\": \"2020-03-29T00:00:00\", \"state\": \"PA\", \"positive\": 3394.0, \"negative\": 30061.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 353.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"da55c1eba9c83cb8c9e3ce7b474a2d7f74f7ecbc\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 38.0, \"hospitalized\": 353.0, \"total\": 33455, \"totalTestResults\": 33455, \"posNeg\": 33455, \"fips\": 42, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 37.0, \"negativeIncrease\": 4807.0, \"positiveIncrease\": 643.0, \"totalTestResultsIncrease\": 5450.0, \"ratio\": 0.10144970856374234, \"sinceDay0\": 4}, {\"index\": 265, \"date\": \"2020-03-30T00:00:00\", \"state\": \"PA\", \"positive\": 4087.0, \"negative\": 33777.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 386.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"cac05153a6de7331306734979416c0bbbca4be85\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 49.0, \"hospitalized\": 386.0, \"total\": 37864, \"totalTestResults\": 37864, \"posNeg\": 37864, \"fips\": 42, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 33.0, \"negativeIncrease\": 3716.0, \"positiveIncrease\": 693.0, \"totalTestResultsIncrease\": 4409.0, \"ratio\": 0.1079389393619269, \"sinceDay0\": 5}, {\"index\": 209, \"date\": \"2020-03-31T00:00:00\", \"state\": \"PA\", \"positive\": 4843.0, \"negative\": 37645.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 514.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f2ddb226108bf8650a4c9d6b6394ff9083e3adbc\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 63.0, \"hospitalized\": 514.0, \"total\": 42488, \"totalTestResults\": 42488, \"posNeg\": 42488, \"fips\": 42, \"deathIncrease\": 14.0, \"hospitalizedIncrease\": 128.0, \"negativeIncrease\": 3868.0, \"positiveIncrease\": 756.0, \"totalTestResultsIncrease\": 4624.0, \"ratio\": 0.11398512521182451, \"sinceDay0\": 6}, {\"index\": 153, \"date\": \"2020-04-01T00:00:00\", \"state\": \"PA\", \"positive\": 5805.0, \"negative\": 42427.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 620.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"575ea7e224d4f1f6797bed8fe0a7902daad3ffab\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 74.0, \"hospitalized\": 620.0, \"total\": 48232, \"totalTestResults\": 48232, \"posNeg\": 48232, \"fips\": 42, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 106.0, \"negativeIncrease\": 4782.0, \"positiveIncrease\": 962.0, \"totalTestResultsIncrease\": 5744.0, \"ratio\": 0.12035578039475867, \"sinceDay0\": 7}, {\"index\": 97, \"date\": \"2020-04-02T00:00:00\", \"state\": \"PA\", \"positive\": 7016.0, \"negative\": 47698.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 730.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0dc7935c18797a0f7616c41c364e159c12d62657\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 90.0, \"hospitalized\": 730.0, \"total\": 54714, \"totalTestResults\": 54714, \"posNeg\": 54714, \"fips\": 42, \"deathIncrease\": 16.0, \"hospitalizedIncrease\": 110.0, \"negativeIncrease\": 5271.0, \"positiveIncrease\": 1211.0, \"totalTestResultsIncrease\": 6482.0, \"ratio\": 0.1282304346236795, \"sinceDay0\": 8}, {\"index\": 41, \"date\": \"2020-04-03T00:00:00\", \"state\": \"PA\", \"positive\": 8420.0, \"negative\": 53695.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 852.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"aade9d40167b6e73754871c40386092b362363a2\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 102.0, \"hospitalized\": 852.0, \"total\": 62115, \"totalTestResults\": 62115, \"posNeg\": 62115, \"fips\": 42, \"deathIncrease\": 12.0, \"hospitalizedIncrease\": 122.0, \"negativeIncrease\": 5997.0, \"positiveIncrease\": 1404.0, \"totalTestResultsIncrease\": 7401.0, \"ratio\": 0.1355550189165258, \"sinceDay0\": 9}, {\"index\": 154, \"date\": \"2020-04-01T00:00:00\", \"state\": \"PR\", \"positive\": 286.0, \"negative\": 1409.0, \"pending\": 897.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ae0129f382eb5f04d790633ebc4cfb9e7e00f89a\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 11.0, \"hospitalized\": null, \"total\": 2592, \"totalTestResults\": 1695, \"posNeg\": 1695, \"fips\": 72, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 214.0, \"positiveIncrease\": 47.0, \"totalTestResultsIncrease\": 261.0, \"ratio\": 0.11033950617283951, \"sinceDay0\": 0}, {\"index\": 98, \"date\": \"2020-04-02T00:00:00\", \"state\": \"PR\", \"positive\": 316.0, \"negative\": 1604.0, \"pending\": 1119.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"2b9a9af18f7c56e17ab89f48b071e4c9afd668a9\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 3039, \"totalTestResults\": 1920, \"posNeg\": 1920, \"fips\": 72, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 195.0, \"positiveIncrease\": 30.0, \"totalTestResultsIncrease\": 225.0, \"ratio\": 0.1039815728858177, \"sinceDay0\": 1}, {\"index\": 42, \"date\": \"2020-04-03T00:00:00\", \"state\": \"PR\", \"positive\": 378.0, \"negative\": 2049.0, \"pending\": 1055.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"31c1cb53249716895ec3490c18feb99b785a620a\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 15.0, \"hospitalized\": null, \"total\": 3482, \"totalTestResults\": 2427, \"posNeg\": 2427, \"fips\": 72, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 445.0, \"positiveIncrease\": 62.0, \"totalTestResultsIncrease\": 507.0, \"ratio\": 0.10855829982768524, \"sinceDay0\": 2}, {\"index\": 155, \"date\": \"2020-04-01T00:00:00\", \"state\": \"RI\", \"positive\": 566.0, \"negative\": 3831.0, \"pending\": null, \"hospitalizedCurrently\": 60.0, \"hospitalizedCumulative\": 60.0, \"inIcuCurrently\": 14.0, \"inIcuCumulative\": 14.0, \"onVentilatorCurrently\": 6.0, \"onVentilatorCumulative\": 6.0, \"recovered\": 35.0, \"hash\": \"4a3df6b45504443ee54b0f0fa2910b3a13ffea72\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 10.0, \"hospitalized\": 60.0, \"total\": 4397, \"totalTestResults\": 4397, \"posNeg\": 4397, \"fips\": 44, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 1.0, \"negativeIncrease\": 355.0, \"positiveIncrease\": 78.0, \"totalTestResultsIncrease\": 433.0, \"ratio\": 0.12872413008869685, \"sinceDay0\": 0}, {\"index\": 99, \"date\": \"2020-04-02T00:00:00\", \"state\": \"RI\", \"positive\": 657.0, \"negative\": 4412.0, \"pending\": null, \"hospitalizedCurrently\": 72.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": 14.0, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 6.0, \"onVentilatorCumulative\": 6.0, \"recovered\": 35.0, \"hash\": \"7e7e0cb0eedf94e8de8cc04fbfcbb89fb9b01d54\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 5069, \"totalTestResults\": 5069, \"posNeg\": 5069, \"fips\": 44, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 581.0, \"positiveIncrease\": 91.0, \"totalTestResultsIncrease\": 672.0, \"ratio\": 0.12961136318800554, \"sinceDay0\": 1}, {\"index\": 43, \"date\": \"2020-04-03T00:00:00\", \"state\": \"RI\", \"positive\": 711.0, \"negative\": 4412.0, \"pending\": null, \"hospitalizedCurrently\": 72.0, \"hospitalizedCumulative\": 72.0, \"inIcuCurrently\": 14.0, \"inIcuCumulative\": 14.0, \"onVentilatorCurrently\": 6.0, \"onVentilatorCumulative\": 6.0, \"recovered\": 35.0, \"hash\": \"724f26efb1056eab080d70de6d4ca0dfc034af1c\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 14.0, \"hospitalized\": 72.0, \"total\": 5123, \"totalTestResults\": 5123, \"posNeg\": 5123, \"fips\": 44, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 72.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 54.0, \"totalTestResultsIncrease\": 54.0, \"ratio\": 0.1387858676556705, \"sinceDay0\": 2}, {\"index\": 380, \"date\": \"2020-03-28T00:00:00\", \"state\": \"SC\", \"positive\": 539.0, \"negative\": 2408.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 129.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4328bb39fcb99f8666b72daf09cc3812ab1727cf\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 13.0, \"hospitalized\": 129.0, \"total\": 2947, \"totalTestResults\": 2947, \"posNeg\": 2947, \"fips\": 45, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 20.0, \"negativeIncrease\": 101.0, \"positiveIncrease\": 83.0, \"totalTestResultsIncrease\": 184.0, \"ratio\": 0.1828978622327791, \"sinceDay0\": 0}, {\"index\": 324, \"date\": \"2020-03-29T00:00:00\", \"state\": \"SC\", \"positive\": 774.0, \"negative\": 3015.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 129.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"6e080ec1f424aec417c9000a8c610501e2870c5a\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 16.0, \"hospitalized\": 129.0, \"total\": 3789, \"totalTestResults\": 3789, \"posNeg\": 3789, \"fips\": 45, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 607.0, \"positiveIncrease\": 235.0, \"totalTestResultsIncrease\": 842.0, \"ratio\": 0.2042755344418052, \"sinceDay0\": 1}, {\"index\": 268, \"date\": \"2020-03-30T00:00:00\", \"state\": \"SC\", \"positive\": 925.0, \"negative\": 4160.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 129.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ceb9937dd126bead37bfbbd92bde9286cf955c64\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 18.0, \"hospitalized\": 129.0, \"total\": 5085, \"totalTestResults\": 5085, \"posNeg\": 5085, \"fips\": 45, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1145.0, \"positiveIncrease\": 151.0, \"totalTestResultsIncrease\": 1296.0, \"ratio\": 0.18190757128810225, \"sinceDay0\": 2}, {\"index\": 212, \"date\": \"2020-03-31T00:00:00\", \"state\": \"SC\", \"positive\": 1083.0, \"negative\": 4616.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 259.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"34a657bc2def360f99f18a1a872eae0f3b37583b\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 22.0, \"hospitalized\": 259.0, \"total\": 5699, \"totalTestResults\": 5699, \"posNeg\": 5699, \"fips\": 45, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 130.0, \"negativeIncrease\": 456.0, \"positiveIncrease\": 158.0, \"totalTestResultsIncrease\": 614.0, \"ratio\": 0.1900333391823127, \"sinceDay0\": 3}, {\"index\": 156, \"date\": \"2020-04-01T00:00:00\", \"state\": \"SC\", \"positive\": 1293.0, \"negative\": 5033.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 349.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a321818d113ea1e8063433667ca10f117f264d11\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 26.0, \"hospitalized\": 349.0, \"total\": 6326, \"totalTestResults\": 6326, \"posNeg\": 6326, \"fips\": 45, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 90.0, \"negativeIncrease\": 417.0, \"positiveIncrease\": 210.0, \"totalTestResultsIncrease\": 627.0, \"ratio\": 0.20439456212456528, \"sinceDay0\": 4}, {\"index\": 100, \"date\": \"2020-04-02T00:00:00\", \"state\": \"SC\", \"positive\": 1554.0, \"negative\": 5441.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 896.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0226337007d3996a9de9db3c450c9eae6f65f47d\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 31.0, \"hospitalized\": 896.0, \"total\": 6995, \"totalTestResults\": 6995, \"posNeg\": 6995, \"fips\": 45, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 547.0, \"negativeIncrease\": 408.0, \"positiveIncrease\": 261.0, \"totalTestResultsIncrease\": 669.0, \"ratio\": 0.22215868477483916, \"sinceDay0\": 5}, {\"index\": 44, \"date\": \"2020-04-03T00:00:00\", \"state\": \"SC\", \"positive\": 1554.0, \"negative\": 5441.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 241.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"83a9526f05767b32166dffbd1c0668fe1e12c1b5\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 31.0, \"hospitalized\": 241.0, \"total\": 6995, \"totalTestResults\": 6995, \"posNeg\": 6995, \"fips\": 45, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": -655.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.22215868477483916, \"sinceDay0\": 6}, {\"index\": 270, \"date\": \"2020-03-30T00:00:00\", \"state\": \"TN\", \"positive\": 1834.0, \"negative\": 21470.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 148.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ec22bf9d70375a31624ca8e4f9483a01aac06b52\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 13.0, \"hospitalized\": 148.0, \"total\": 23304, \"totalTestResults\": 23304, \"posNeg\": 23304, \"fips\": 47, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 15.0, \"negativeIncrease\": 2433.0, \"positiveIncrease\": 297.0, \"totalTestResultsIncrease\": 2730.0, \"ratio\": 0.07869893580501201, \"sinceDay0\": 0}, {\"index\": 214, \"date\": \"2020-03-31T00:00:00\", \"state\": \"TN\", \"positive\": 2239.0, \"negative\": 25121.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 175.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 121.0, \"hash\": \"8b236550ae5ec5e539ddcd63854658d0193987d2\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 23.0, \"hospitalized\": 175.0, \"total\": 27360, \"totalTestResults\": 27360, \"posNeg\": 27360, \"fips\": 47, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 27.0, \"negativeIncrease\": 3651.0, \"positiveIncrease\": 405.0, \"totalTestResultsIncrease\": 4056.0, \"ratio\": 0.08183479532163743, \"sinceDay0\": 1}, {\"index\": 158, \"date\": \"2020-04-01T00:00:00\", \"state\": \"TN\", \"positive\": 2683.0, \"negative\": 29769.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 200.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 137.0, \"hash\": \"9e9bb3593287cbf3b938263422d21dba45a771e1\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 24.0, \"hospitalized\": 200.0, \"total\": 32452, \"totalTestResults\": 32452, \"posNeg\": 32452, \"fips\": 47, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 25.0, \"negativeIncrease\": 4648.0, \"positiveIncrease\": 444.0, \"totalTestResultsIncrease\": 5092.0, \"ratio\": 0.08267595217552078, \"sinceDay0\": 2}, {\"index\": 102, \"date\": \"2020-04-02T00:00:00\", \"state\": \"TN\", \"positive\": 2845.0, \"negative\": 31766.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 263.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 220.0, \"hash\": \"59629453e17df16d80dffa1ce35c5dcb1e94c5a2\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 32.0, \"hospitalized\": 263.0, \"total\": 34611, \"totalTestResults\": 34611, \"posNeg\": 34611, \"fips\": 47, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 63.0, \"negativeIncrease\": 1997.0, \"positiveIncrease\": 162.0, \"totalTestResultsIncrease\": 2159.0, \"ratio\": 0.0821993008003236, \"sinceDay0\": 3}, {\"index\": 46, \"date\": \"2020-04-03T00:00:00\", \"state\": \"TN\", \"positive\": 3067.0, \"negative\": 34772.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 293.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 248.0, \"hash\": \"019351b10edda80786a653adea2799cab1992e8a\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 37.0, \"hospitalized\": 293.0, \"total\": 37839, \"totalTestResults\": 37839, \"posNeg\": 37839, \"fips\": 47, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 30.0, \"negativeIncrease\": 3006.0, \"positiveIncrease\": 222.0, \"totalTestResultsIncrease\": 3228.0, \"ratio\": 0.0810539390575861, \"sinceDay0\": 4}, {\"index\": 551, \"date\": \"2020-03-25T00:00:00\", \"state\": \"TX\", \"positive\": 974.0, \"negative\": 12520.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"94d22076ee33e8232bf343c6e7cb48853cad8083\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 13494, \"totalTestResults\": 13494, \"posNeg\": 13494, \"fips\": 48, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1763.0, \"positiveIncrease\": 564.0, \"totalTestResultsIncrease\": 2327.0, \"ratio\": 0.07218022824959242, \"sinceDay0\": 0}, {\"index\": 495, \"date\": \"2020-03-26T00:00:00\", \"state\": \"TX\", \"positive\": 1396.0, \"negative\": 20028.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"fa643c14dbc1c896f7d243f22f25aa05e563d6af\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 18.0, \"hospitalized\": null, \"total\": 21424, \"totalTestResults\": 21424, \"posNeg\": 21424, \"fips\": 48, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 7508.0, \"positiveIncrease\": 422.0, \"totalTestResultsIncrease\": 7930.0, \"ratio\": 0.06516056758775206, \"sinceDay0\": 1}, {\"index\": 439, \"date\": \"2020-03-27T00:00:00\", \"state\": \"TX\", \"positive\": 1731.0, \"negative\": 21935.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8409fedc70d96ce072fcd2c62d1101488f155d94\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 23.0, \"hospitalized\": null, \"total\": 23666, \"totalTestResults\": 23666, \"posNeg\": 23666, \"fips\": 48, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1907.0, \"positiveIncrease\": 335.0, \"totalTestResultsIncrease\": 2242.0, \"ratio\": 0.07314290543395588, \"sinceDay0\": 2}, {\"index\": 383, \"date\": \"2020-03-28T00:00:00\", \"state\": \"TX\", \"positive\": 2052.0, \"negative\": 23208.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9d601857ab7b38aa375d52c046e21db2fe147e92\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 27.0, \"hospitalized\": null, \"total\": 25260, \"totalTestResults\": 25260, \"posNeg\": 25260, \"fips\": 48, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1273.0, \"positiveIncrease\": 321.0, \"totalTestResultsIncrease\": 1594.0, \"ratio\": 0.08123515439429929, \"sinceDay0\": 3}, {\"index\": 327, \"date\": \"2020-03-29T00:00:00\", \"state\": \"TX\", \"positive\": 2552.0, \"negative\": 23208.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a9b7fb107b90949f6bd5ab29b957e2cf6e46f9c5\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 34.0, \"hospitalized\": null, \"total\": 25760, \"totalTestResults\": 25760, \"posNeg\": 25760, \"fips\": 48, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 500.0, \"totalTestResultsIncrease\": 500.0, \"ratio\": 0.09906832298136646, \"sinceDay0\": 4}, {\"index\": 271, \"date\": \"2020-03-30T00:00:00\", \"state\": \"TX\", \"positive\": 2877.0, \"negative\": 33003.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 38.0, \"hash\": \"97f0dea6f50c349bb0a5bb31afde8cf9ad5ffcf8\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 34.0, \"hospitalized\": null, \"total\": 35880, \"totalTestResults\": 35880, \"posNeg\": 35880, \"fips\": 48, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 9795.0, \"positiveIncrease\": 325.0, \"totalTestResultsIncrease\": 10120.0, \"ratio\": 0.08018394648829431, \"sinceDay0\": 5}, {\"index\": 215, \"date\": \"2020-03-31T00:00:00\", \"state\": \"TX\", \"positive\": 3266.0, \"negative\": 39726.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 196.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 38.0, \"hash\": \"49880c7d533574ad29d17299ae133096cba20a3c\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 41.0, \"hospitalized\": 196.0, \"total\": 42992, \"totalTestResults\": 42992, \"posNeg\": 42992, \"fips\": 48, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 196.0, \"negativeIncrease\": 6723.0, \"positiveIncrease\": 389.0, \"totalTestResultsIncrease\": 7112.0, \"ratio\": 0.07596762188314105, \"sinceDay0\": 6}, {\"index\": 159, \"date\": \"2020-04-01T00:00:00\", \"state\": \"TX\", \"positive\": 3997.0, \"negative\": 43860.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 196.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 38.0, \"hash\": \"d7eee4ced63cacacb4fa81132e1bc4fa3884f105\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 58.0, \"hospitalized\": 196.0, \"total\": 47857, \"totalTestResults\": 47857, \"posNeg\": 47857, \"fips\": 48, \"deathIncrease\": 17.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4134.0, \"positiveIncrease\": 731.0, \"totalTestResultsIncrease\": 4865.0, \"ratio\": 0.08351965229746955, \"sinceDay0\": 7}, {\"index\": 103, \"date\": \"2020-04-02T00:00:00\", \"state\": \"TX\", \"positive\": 4669.0, \"negative\": 46010.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 196.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 38.0, \"hash\": \"7d8ea7ba1c7a7c798cfb9c6c3862a58278c06e3b\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 70.0, \"hospitalized\": 196.0, \"total\": 50679, \"totalTestResults\": 50679, \"posNeg\": 50679, \"fips\": 48, \"deathIncrease\": 12.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2150.0, \"positiveIncrease\": 672.0, \"totalTestResultsIncrease\": 2822.0, \"ratio\": 0.09212888967817044, \"sinceDay0\": 8}, {\"index\": 47, \"date\": \"2020-04-03T00:00:00\", \"state\": \"TX\", \"positive\": 5330.0, \"negative\": 50434.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 196.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 38.0, \"hash\": \"18a3dcd9d77854accccca1eb809c495d24501fbf\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 90.0, \"hospitalized\": 196.0, \"total\": 55764, \"totalTestResults\": 55764, \"posNeg\": 55764, \"fips\": 48, \"deathIncrease\": 20.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4424.0, \"positiveIncrease\": 661.0, \"totalTestResultsIncrease\": 5085.0, \"ratio\": 0.09558137866724051, \"sinceDay0\": 9}, {\"index\": 497, \"date\": \"2020-03-26T00:00:00\", \"state\": \"VA\", \"positive\": 460.0, \"negative\": 5729.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 65.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"60d151765c90a17f38487d1089ef283796e1c122\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 13.0, \"hospitalized\": 65.0, \"total\": 6189, \"totalTestResults\": 6189, \"posNeg\": 6189, \"fips\": 51, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 6.0, \"negativeIncrease\": 750.0, \"positiveIncrease\": 69.0, \"totalTestResultsIncrease\": 819.0, \"ratio\": 0.07432541606075295, \"sinceDay0\": 0}, {\"index\": 441, \"date\": \"2020-03-27T00:00:00\", \"state\": \"VA\", \"positive\": 604.0, \"negative\": 6733.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 83.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"376dd9385db92b70861adb4e990699e2ae38ea4f\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 14.0, \"hospitalized\": 83.0, \"total\": 7337, \"totalTestResults\": 7337, \"posNeg\": 7337, \"fips\": 51, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 18.0, \"negativeIncrease\": 1004.0, \"positiveIncrease\": 144.0, \"totalTestResultsIncrease\": 1148.0, \"ratio\": 0.08232247512607332, \"sinceDay0\": 1}, {\"index\": 385, \"date\": \"2020-03-28T00:00:00\", \"state\": \"VA\", \"positive\": 739.0, \"negative\": 8427.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 99.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4a9486b875debc40351684839a6e07900f0fd3ca\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 17.0, \"hospitalized\": 99.0, \"total\": 9166, \"totalTestResults\": 9166, \"posNeg\": 9166, \"fips\": 51, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 16.0, \"negativeIncrease\": 1694.0, \"positiveIncrease\": 135.0, \"totalTestResultsIncrease\": 1829.0, \"ratio\": 0.08062404538511891, \"sinceDay0\": 2}, {\"index\": 329, \"date\": \"2020-03-29T00:00:00\", \"state\": \"VA\", \"positive\": 890.0, \"negative\": 9719.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 112.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c69c5d634a01118e8c0e248abc63805871431f51\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 22.0, \"hospitalized\": 112.0, \"total\": 10609, \"totalTestResults\": 10609, \"posNeg\": 10609, \"fips\": 51, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 13.0, \"negativeIncrease\": 1292.0, \"positiveIncrease\": 151.0, \"totalTestResultsIncrease\": 1443.0, \"ratio\": 0.08389103591290414, \"sinceDay0\": 3}, {\"index\": 273, \"date\": \"2020-03-30T00:00:00\", \"state\": \"VA\", \"positive\": 1020.0, \"negative\": 11018.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 136.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1b814b67e1fc83c5f9fdc2e3ca2dc1e7d1fa66d7\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 25.0, \"hospitalized\": 136.0, \"total\": 12038, \"totalTestResults\": 12038, \"posNeg\": 12038, \"fips\": 51, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 24.0, \"negativeIncrease\": 1299.0, \"positiveIncrease\": 130.0, \"totalTestResultsIncrease\": 1429.0, \"ratio\": 0.08473168300382124, \"sinceDay0\": 4}, {\"index\": 217, \"date\": \"2020-03-31T00:00:00\", \"state\": \"VA\", \"positive\": 1250.0, \"negative\": 12151.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 165.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"94c6ced5cbd2d7474ef25844e4f1c69d185328b8\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 27.0, \"hospitalized\": 165.0, \"total\": 13401, \"totalTestResults\": 13401, \"posNeg\": 13401, \"fips\": 51, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 29.0, \"negativeIncrease\": 1133.0, \"positiveIncrease\": 230.0, \"totalTestResultsIncrease\": 1363.0, \"ratio\": 0.09327662114767554, \"sinceDay0\": 5}, {\"index\": 161, \"date\": \"2020-04-01T00:00:00\", \"state\": \"VA\", \"positive\": 1484.0, \"negative\": 13860.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 305.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 145.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 108.0, \"recovered\": null, \"hash\": \"3978f9b311c4141c1b8cab5ace841ef8bff698d3\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 34.0, \"hospitalized\": 305.0, \"total\": 15344, \"totalTestResults\": 15344, \"posNeg\": 15344, \"fips\": 51, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 140.0, \"negativeIncrease\": 1709.0, \"positiveIncrease\": 234.0, \"totalTestResultsIncrease\": 1943.0, \"ratio\": 0.09671532846715329, \"sinceDay0\": 6}, {\"index\": 105, \"date\": \"2020-04-02T00:00:00\", \"state\": \"VA\", \"positive\": 1706.0, \"negative\": 15883.0, \"pending\": null, \"hospitalizedCurrently\": 246.0, \"hospitalizedCumulative\": 305.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 145.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 108.0, \"recovered\": null, \"hash\": \"9796a8ec0aabb4d2cffe52ed46445fae43bd50c6\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 41.0, \"hospitalized\": 305.0, \"total\": 17589, \"totalTestResults\": 17589, \"posNeg\": 17589, \"fips\": 51, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2023.0, \"positiveIncrease\": 222.0, \"totalTestResultsIncrease\": 2245.0, \"ratio\": 0.09699243845585309, \"sinceDay0\": 7}, {\"index\": 49, \"date\": \"2020-04-03T00:00:00\", \"state\": \"VA\", \"positive\": 2012.0, \"negative\": 16993.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 312.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 145.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 108.0, \"recovered\": null, \"hash\": \"cb349d06a8404e8ea589d4d05f5ae53dfdbd1692\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 46.0, \"hospitalized\": 312.0, \"total\": 19005, \"totalTestResults\": 19005, \"posNeg\": 19005, \"fips\": 51, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 7.0, \"negativeIncrease\": 1110.0, \"positiveIncrease\": 306.0, \"totalTestResultsIncrease\": 1416.0, \"ratio\": 0.10586687713759536, \"sinceDay0\": 8}, {\"index\": 443, \"date\": \"2020-03-27T00:00:00\", \"state\": \"VT\", \"positive\": 184.0, \"negative\": 2077.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 18.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0064eda2b4b2bd74f386a29d0fa13b8378aff141\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 10.0, \"hospitalized\": 18.0, \"total\": 2261, \"totalTestResults\": 2261, \"posNeg\": 2261, \"fips\": 50, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 18.0, \"negativeIncrease\": 227.0, \"positiveIncrease\": 26.0, \"totalTestResultsIncrease\": 253.0, \"ratio\": 0.08137992038920831, \"sinceDay0\": 0}, {\"index\": 387, \"date\": \"2020-03-28T00:00:00\", \"state\": \"VT\", \"positive\": 211.0, \"negative\": 2163.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 18.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c531c6adaae5c5623a25bebe275eb0269f0e549e\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 12.0, \"hospitalized\": 18.0, \"total\": 2374, \"totalTestResults\": 2374, \"posNeg\": 2374, \"fips\": 50, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 86.0, \"positiveIncrease\": 27.0, \"totalTestResultsIncrease\": 113.0, \"ratio\": 0.08887952822240944, \"sinceDay0\": 1}, {\"index\": 331, \"date\": \"2020-03-29T00:00:00\", \"state\": \"VT\", \"positive\": 235.0, \"negative\": 3466.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 18.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"6378ad325a9d0e9f7f1edfeb369856d460b5e9d8\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 12.0, \"hospitalized\": 18.0, \"total\": 3701, \"totalTestResults\": 3701, \"posNeg\": 3701, \"fips\": 50, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1303.0, \"positiveIncrease\": 24.0, \"totalTestResultsIncrease\": 1327.0, \"ratio\": 0.06349635233720616, \"sinceDay0\": 2}, {\"index\": 275, \"date\": \"2020-03-30T00:00:00\", \"state\": \"VT\", \"positive\": 256.0, \"negative\": 3674.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 18.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"707ea7e30f8939272fe9b6691b379a0385237953\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 12.0, \"hospitalized\": 18.0, \"total\": 3930, \"totalTestResults\": 3930, \"posNeg\": 3930, \"fips\": 50, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 208.0, \"positiveIncrease\": 21.0, \"totalTestResultsIncrease\": 229.0, \"ratio\": 0.06513994910941476, \"sinceDay0\": 3}, {\"index\": 219, \"date\": \"2020-03-31T00:00:00\", \"state\": \"VT\", \"positive\": 293.0, \"negative\": 3957.0, \"pending\": null, \"hospitalizedCurrently\": 21.0, \"hospitalizedCumulative\": 36.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 15.0, \"hash\": \"f7ff1c5b387b478086752b2ba379a2aaab0bf9fd\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 13.0, \"hospitalized\": 36.0, \"total\": 4250, \"totalTestResults\": 4250, \"posNeg\": 4250, \"fips\": 50, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 18.0, \"negativeIncrease\": 283.0, \"positiveIncrease\": 37.0, \"totalTestResultsIncrease\": 320.0, \"ratio\": 0.06894117647058824, \"sinceDay0\": 4}, {\"index\": 163, \"date\": \"2020-04-01T00:00:00\", \"state\": \"VT\", \"positive\": 321.0, \"negative\": 4174.0, \"pending\": null, \"hospitalizedCurrently\": 30.0, \"hospitalizedCumulative\": 45.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 15.0, \"hash\": \"09d62e8a97e7673d2cb199f97cefebe931639672\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 16.0, \"hospitalized\": 45.0, \"total\": 4495, \"totalTestResults\": 4495, \"posNeg\": 4495, \"fips\": 50, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 9.0, \"negativeIncrease\": 217.0, \"positiveIncrease\": 28.0, \"totalTestResultsIncrease\": 245.0, \"ratio\": 0.071412680756396, \"sinceDay0\": 5}, {\"index\": 107, \"date\": \"2020-04-02T00:00:00\", \"state\": \"VT\", \"positive\": 338.0, \"negative\": 4711.0, \"pending\": null, \"hospitalizedCurrently\": 29.0, \"hospitalizedCumulative\": 45.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 15.0, \"hash\": \"7510d18997abe87e7201c6841efcdf23546e72e3\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 17.0, \"hospitalized\": 45.0, \"total\": 5049, \"totalTestResults\": 5049, \"posNeg\": 5049, \"fips\": 50, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 537.0, \"positiveIncrease\": 17.0, \"totalTestResultsIncrease\": 554.0, \"ratio\": 0.06694394929689047, \"sinceDay0\": 6}, {\"index\": 51, \"date\": \"2020-04-03T00:00:00\", \"state\": \"VT\", \"positive\": 389.0, \"negative\": 4839.0, \"pending\": null, \"hospitalizedCurrently\": 29.0, \"hospitalizedCumulative\": 45.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 15.0, \"hash\": \"fd502b9dcb8608ca17ea5eecf37d01466c5f5389\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 17.0, \"hospitalized\": 45.0, \"total\": 5228, \"totalTestResults\": 5228, \"posNeg\": 5228, \"fips\": 50, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 128.0, \"positiveIncrease\": 51.0, \"totalTestResultsIncrease\": 179.0, \"ratio\": 0.074407039020658, \"sinceDay0\": 7}, {\"index\": 1595, \"date\": \"2020-03-04T00:00:00\", \"state\": \"WA\", \"positive\": 39.0, \"negative\": null, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e07bd12171fed21351784c462b0dab23d8cfabbd\", \"dateChecked\": \"2020-03-04T21:00:00Z\", \"death\": 10.0, \"hospitalized\": null, \"total\": 39, \"totalTestResults\": 39, \"posNeg\": 39, \"fips\": 53, \"deathIncrease\": null, \"hospitalizedIncrease\": null, \"negativeIncrease\": null, \"positiveIncrease\": null, \"totalTestResultsIncrease\": null, \"ratio\": 1.0, \"sinceDay0\": 0}, {\"index\": 1581, \"date\": \"2020-03-05T00:00:00\", \"state\": \"WA\", \"positive\": 70.0, \"negative\": null, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"dfe5b036415333cb6e796cd8bde4805a159d6676\", \"dateChecked\": \"2020-03-05T21:00:00Z\", \"death\": 11.0, \"hospitalized\": null, \"total\": 70, \"totalTestResults\": 70, \"posNeg\": 70, \"fips\": 53, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 31.0, \"totalTestResultsIncrease\": 31.0, \"ratio\": 1.0, \"sinceDay0\": 1}, {\"index\": 1556, \"date\": \"2020-03-06T00:00:00\", \"state\": \"WA\", \"positive\": 79.0, \"negative\": 370.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"acf1e359af09f765bfb51daff2037013e6dcb7ef\", \"dateChecked\": \"2020-03-06T21:00:00Z\", \"death\": 14.0, \"hospitalized\": null, \"total\": 449, \"totalTestResults\": 449, \"posNeg\": 449, \"fips\": 53, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 370.0, \"positiveIncrease\": 9.0, \"totalTestResultsIncrease\": 379.0, \"ratio\": 0.1759465478841871, \"sinceDay0\": 2}, {\"index\": 1519, \"date\": \"2020-03-07T00:00:00\", \"state\": \"WA\", \"positive\": 102.0, \"negative\": 370.0, \"pending\": 66.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"bba4f8c850e820bd03b106bdf1e40f53bca745cd\", \"dateChecked\": \"2020-03-07T21:00:00Z\", \"death\": 16.0, \"hospitalized\": null, \"total\": 538, \"totalTestResults\": 472, \"posNeg\": 472, \"fips\": 53, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 23.0, \"totalTestResultsIncrease\": 23.0, \"ratio\": 0.1895910780669145, \"sinceDay0\": 3}, {\"index\": 1468, \"date\": \"2020-03-08T00:00:00\", \"state\": \"WA\", \"positive\": 102.0, \"negative\": 640.0, \"pending\": 60.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ff203f889be06e02d7abbc241bb3327974f62c59\", \"dateChecked\": \"2020-03-08T20:00:00Z\", \"death\": 18.0, \"hospitalized\": null, \"total\": 802, \"totalTestResults\": 742, \"posNeg\": 742, \"fips\": 53, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 270.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 270.0, \"ratio\": 0.12718204488778054, \"sinceDay0\": 4}, {\"index\": 1417, \"date\": \"2020-03-09T00:00:00\", \"state\": \"WA\", \"positive\": 136.0, \"negative\": 1110.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d72514f02a70119a149f4bc9d6ec6cb789a7e255\", \"dateChecked\": \"2020-03-09T20:00:00Z\", \"death\": 22.0, \"hospitalized\": null, \"total\": 1246, \"totalTestResults\": 1246, \"posNeg\": 1246, \"fips\": 53, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 470.0, \"positiveIncrease\": 34.0, \"totalTestResultsIncrease\": 504.0, \"ratio\": 0.10914927768860354, \"sinceDay0\": 5}, {\"index\": 1366, \"date\": \"2020-03-10T00:00:00\", \"state\": \"WA\", \"positive\": 162.0, \"negative\": 1110.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"06768336fc25d73cd5c617780d60df98257b9efc\", \"dateChecked\": \"2020-03-10T20:00:00Z\", \"death\": 24.0, \"hospitalized\": null, \"total\": 1272, \"totalTestResults\": 1272, \"posNeg\": 1272, \"fips\": 53, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 26.0, \"totalTestResultsIncrease\": 26.0, \"ratio\": 0.12735849056603774, \"sinceDay0\": 6}, {\"index\": 1315, \"date\": \"2020-03-11T00:00:00\", \"state\": \"WA\", \"positive\": 267.0, \"negative\": 2175.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f3865367145deea2d1be9a82dd6bd3d055ac2c85\", \"dateChecked\": \"2020-03-11T20:00:00Z\", \"death\": 24.0, \"hospitalized\": null, \"total\": 2442, \"totalTestResults\": 2442, \"posNeg\": 2442, \"fips\": 53, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1065.0, \"positiveIncrease\": 105.0, \"totalTestResultsIncrease\": 1170.0, \"ratio\": 0.10933660933660934, \"sinceDay0\": 7}, {\"index\": 1264, \"date\": \"2020-03-12T00:00:00\", \"state\": \"WA\", \"positive\": 337.0, \"negative\": 3037.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b346d7b6e661fa57b707151beb7062178a311a51\", \"dateChecked\": \"2020-03-12T20:00:00Z\", \"death\": 29.0, \"hospitalized\": null, \"total\": 3374, \"totalTestResults\": 3374, \"posNeg\": 3374, \"fips\": 53, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 862.0, \"positiveIncrease\": 70.0, \"totalTestResultsIncrease\": 932.0, \"ratio\": 0.0998814463544754, \"sinceDay0\": 8}, {\"index\": 1213, \"date\": \"2020-03-13T00:00:00\", \"state\": \"WA\", \"positive\": 457.0, \"negative\": 4350.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c99bf19d3a7a6a5973c1b9b48d8cf526bc91647e\", \"dateChecked\": \"2020-03-13T20:00:00Z\", \"death\": 31.0, \"hospitalized\": null, \"total\": 4807, \"totalTestResults\": 4807, \"posNeg\": 4807, \"fips\": 53, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1313.0, \"positiveIncrease\": 120.0, \"totalTestResultsIncrease\": 1433.0, \"ratio\": 0.0950696900353651, \"sinceDay0\": 9}, {\"index\": 1162, \"date\": \"2020-03-14T00:00:00\", \"state\": \"WA\", \"positive\": 568.0, \"negative\": 6001.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d0c542a7903d9d53eee47064cd36f4618727252d\", \"dateChecked\": \"2020-03-14T20:00:00Z\", \"death\": 37.0, \"hospitalized\": null, \"total\": 6569, \"totalTestResults\": 6569, \"posNeg\": 6569, \"fips\": 53, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1651.0, \"positiveIncrease\": 111.0, \"totalTestResultsIncrease\": 1762.0, \"ratio\": 0.08646673770741362, \"sinceDay0\": 10}, {\"index\": 1111, \"date\": \"2020-03-15T00:00:00\", \"state\": \"WA\", \"positive\": 642.0, \"negative\": 7122.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1c7e7a0baa721892bbf89e899b597d921e807fce\", \"dateChecked\": \"2020-03-15T20:00:00Z\", \"death\": 40.0, \"hospitalized\": null, \"total\": 7764, \"totalTestResults\": 7764, \"posNeg\": 7764, \"fips\": 53, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1121.0, \"positiveIncrease\": 74.0, \"totalTestResultsIncrease\": 1195.0, \"ratio\": 0.08268933539412673, \"sinceDay0\": 11}, {\"index\": 1060, \"date\": \"2020-03-16T00:00:00\", \"state\": \"WA\", \"positive\": 769.0, \"negative\": 9451.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5de3ba2bf662278c0b9e9a023e91181398269132\", \"dateChecked\": \"2020-03-16T20:00:00Z\", \"death\": 42.0, \"hospitalized\": null, \"total\": 10220, \"totalTestResults\": 10220, \"posNeg\": 10220, \"fips\": 53, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2329.0, \"positiveIncrease\": 127.0, \"totalTestResultsIncrease\": 2456.0, \"ratio\": 0.07524461839530333, \"sinceDay0\": 12}, {\"index\": 1004, \"date\": \"2020-03-17T00:00:00\", \"state\": \"WA\", \"positive\": 904.0, \"negative\": 11582.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a36581696a7488a065d62717a6bcb90bcb0e0893\", \"dateChecked\": \"2020-03-17T20:00:00Z\", \"death\": 48.0, \"hospitalized\": null, \"total\": 12486, \"totalTestResults\": 12486, \"posNeg\": 12486, \"fips\": 53, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2131.0, \"positiveIncrease\": 135.0, \"totalTestResultsIncrease\": 2266.0, \"ratio\": 0.07240108921992632, \"sinceDay0\": 13}, {\"index\": 948, \"date\": \"2020-03-18T00:00:00\", \"state\": \"WA\", \"positive\": 1012.0, \"negative\": 13117.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"eb230fa9aea0b5fd1026102c5bd5775579092452\", \"dateChecked\": \"2020-03-18T20:00:00Z\", \"death\": 52.0, \"hospitalized\": null, \"total\": 14129, \"totalTestResults\": 14129, \"posNeg\": 14129, \"fips\": 53, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1535.0, \"positiveIncrease\": 108.0, \"totalTestResultsIncrease\": 1643.0, \"ratio\": 0.07162573430532947, \"sinceDay0\": 14}, {\"index\": 892, \"date\": \"2020-03-19T00:00:00\", \"state\": \"WA\", \"positive\": 1187.0, \"negative\": 15918.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"535a5769677827d78d2939c5f8f9e44eef508975\", \"dateChecked\": \"2020-03-19T20:00:00Z\", \"death\": 66.0, \"hospitalized\": null, \"total\": 17105, \"totalTestResults\": 17105, \"posNeg\": 17105, \"fips\": 53, \"deathIncrease\": 14.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2801.0, \"positiveIncrease\": 175.0, \"totalTestResultsIncrease\": 2976.0, \"ratio\": 0.06939491376790412, \"sinceDay0\": 15}, {\"index\": 836, \"date\": \"2020-03-20T00:00:00\", \"state\": \"WA\", \"positive\": 1376.0, \"negative\": 19336.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c45d0ccbda5510b5e0067fa6d12226f9debfec0e\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 74.0, \"hospitalized\": null, \"total\": 20712, \"totalTestResults\": 20712, \"posNeg\": 20712, \"fips\": 53, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3418.0, \"positiveIncrease\": 189.0, \"totalTestResultsIncrease\": 3607.0, \"ratio\": 0.0664349169563538, \"sinceDay0\": 16}, {\"index\": 780, \"date\": \"2020-03-21T00:00:00\", \"state\": \"WA\", \"positive\": 1524.0, \"negative\": 21719.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e89ca534af406d512dad526cfc1b5a1e64f75f0c\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 83.0, \"hospitalized\": null, \"total\": 23243, \"totalTestResults\": 23243, \"posNeg\": 23243, \"fips\": 53, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2383.0, \"positiveIncrease\": 148.0, \"totalTestResultsIncrease\": 2531.0, \"ratio\": 0.06556812803854924, \"sinceDay0\": 17}, {\"index\": 724, \"date\": \"2020-03-22T00:00:00\", \"state\": \"WA\", \"positive\": 1793.0, \"negative\": 25328.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"072f5a891339bd1334dfd2ef0458210d55271483\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 94.0, \"hospitalized\": null, \"total\": 27121, \"totalTestResults\": 27121, \"posNeg\": 27121, \"fips\": 53, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3609.0, \"positiveIncrease\": 269.0, \"totalTestResultsIncrease\": 3878.0, \"ratio\": 0.06611113159544264, \"sinceDay0\": 18}, {\"index\": 668, \"date\": \"2020-03-23T00:00:00\", \"state\": \"WA\", \"positive\": 1996.0, \"negative\": 28879.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a3330315ca0c6d8393cbffc5d4da83ba0e7a116b\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 95.0, \"hospitalized\": null, \"total\": 30875, \"totalTestResults\": 30875, \"posNeg\": 30875, \"fips\": 53, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3551.0, \"positiveIncrease\": 203.0, \"totalTestResultsIncrease\": 3754.0, \"ratio\": 0.06464777327935223, \"sinceDay0\": 19}, {\"index\": 612, \"date\": \"2020-03-24T00:00:00\", \"state\": \"WA\", \"positive\": 2221.0, \"negative\": 31712.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9da4d0ab70b396d48bb42e53afa63e5d21c41aef\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 110.0, \"hospitalized\": null, \"total\": 33933, \"totalTestResults\": 33933, \"posNeg\": 33933, \"fips\": 53, \"deathIncrease\": 15.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2833.0, \"positiveIncrease\": 225.0, \"totalTestResultsIncrease\": 3058.0, \"ratio\": 0.06545250935667345, \"sinceDay0\": 20}, {\"index\": 556, \"date\": \"2020-03-25T00:00:00\", \"state\": \"WA\", \"positive\": 2469.0, \"negative\": 31712.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"44b3cb99139fc5b8f131fa7216e447a156a958b4\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 123.0, \"hospitalized\": null, \"total\": 34181, \"totalTestResults\": 34181, \"posNeg\": 34181, \"fips\": 53, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 248.0, \"totalTestResultsIncrease\": 248.0, \"ratio\": 0.07223311196278634, \"sinceDay0\": 21}, {\"index\": 500, \"date\": \"2020-03-26T00:00:00\", \"state\": \"WA\", \"positive\": 2580.0, \"negative\": 31712.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e178057fc2a88562fb8b27dcb5cb7ce3bb9da334\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 132.0, \"hospitalized\": null, \"total\": 34292, \"totalTestResults\": 34292, \"posNeg\": 34292, \"fips\": 53, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 111.0, \"totalTestResultsIncrease\": 111.0, \"ratio\": 0.07523620669543916, \"sinceDay0\": 22}, {\"index\": 444, \"date\": \"2020-03-27T00:00:00\", \"state\": \"WA\", \"positive\": 3207.0, \"negative\": 43173.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c6ef40387ed54825d111164344c738e39fc62ef5\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 147.0, \"hospitalized\": null, \"total\": 46380, \"totalTestResults\": 46380, \"posNeg\": 46380, \"fips\": 53, \"deathIncrease\": 15.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 11461.0, \"positiveIncrease\": 627.0, \"totalTestResultsIncrease\": 12088.0, \"ratio\": 0.06914618369987063, \"sinceDay0\": 23}, {\"index\": 388, \"date\": \"2020-03-28T00:00:00\", \"state\": \"WA\", \"positive\": 3723.0, \"negative\": 49015.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 254.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"aa547bbffd960fa3d6684722df352a64ab786e19\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 175.0, \"hospitalized\": 254.0, \"total\": 52738, \"totalTestResults\": 52738, \"posNeg\": 52738, \"fips\": 53, \"deathIncrease\": 28.0, \"hospitalizedIncrease\": 254.0, \"negativeIncrease\": 5842.0, \"positiveIncrease\": 516.0, \"totalTestResultsIncrease\": 6358.0, \"ratio\": 0.070594258409496, \"sinceDay0\": 24}, {\"index\": 332, \"date\": \"2020-03-29T00:00:00\", \"state\": \"WA\", \"positive\": 4310.0, \"negative\": 54896.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 254.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"79de2d56dfc5fe5931f0670e225388f974f163a9\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 189.0, \"hospitalized\": 254.0, \"total\": 59206, \"totalTestResults\": 59206, \"posNeg\": 59206, \"fips\": 53, \"deathIncrease\": 14.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5881.0, \"positiveIncrease\": 587.0, \"totalTestResultsIncrease\": 6468.0, \"ratio\": 0.0727966760125663, \"sinceDay0\": 25}, {\"index\": 276, \"date\": \"2020-03-30T00:00:00\", \"state\": \"WA\", \"positive\": 4896.0, \"negative\": 60566.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 254.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c734382e8a516a0f55f370aacda4ac92b877649e\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 195.0, \"hospitalized\": 254.0, \"total\": 65462, \"totalTestResults\": 65462, \"posNeg\": 65462, \"fips\": 53, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5670.0, \"positiveIncrease\": 586.0, \"totalTestResultsIncrease\": 6256.0, \"ratio\": 0.07479148208120742, \"sinceDay0\": 26}, {\"index\": 220, \"date\": \"2020-03-31T00:00:00\", \"state\": \"WA\", \"positive\": 4896.0, \"negative\": 60566.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 254.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"215fd829abdd735dea112aded7893ab62d5310ac\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 195.0, \"hospitalized\": 254.0, \"total\": 65462, \"totalTestResults\": 65462, \"posNeg\": 65462, \"fips\": 53, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.07479148208120742, \"sinceDay0\": 27}, {\"index\": 164, \"date\": \"2020-04-01T00:00:00\", \"state\": \"WA\", \"positive\": 5634.0, \"negative\": 60566.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 254.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d6cb23f0dc40421b2d167caba2408a74cfcaf9a1\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 224.0, \"hospitalized\": 254.0, \"total\": 66200, \"totalTestResults\": 66200, \"posNeg\": 66200, \"fips\": 53, \"deathIncrease\": 29.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 738.0, \"totalTestResultsIncrease\": 738.0, \"ratio\": 0.08510574018126889, \"sinceDay0\": 28}, {\"index\": 108, \"date\": \"2020-04-02T00:00:00\", \"state\": \"WA\", \"positive\": 5984.0, \"negative\": 68814.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 254.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"85955197769abfbadd9dcbe4a2678ab67b3e6822\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 247.0, \"hospitalized\": 254.0, \"total\": 74798, \"totalTestResults\": 74798, \"posNeg\": 74798, \"fips\": 53, \"deathIncrease\": 23.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 8248.0, \"positiveIncrease\": 350.0, \"totalTestResultsIncrease\": 8598.0, \"ratio\": 0.0800021390946282, \"sinceDay0\": 29}, {\"index\": 52, \"date\": \"2020-04-03T00:00:00\", \"state\": \"WA\", \"positive\": 6585.0, \"negative\": 72833.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 254.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"959e56f464378567061d69a9f5fe856b61563bc4\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 262.0, \"hospitalized\": 254.0, \"total\": 79418, \"totalTestResults\": 79418, \"posNeg\": 79418, \"fips\": 53, \"deathIncrease\": 15.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4019.0, \"positiveIncrease\": 601.0, \"totalTestResultsIncrease\": 4620.0, \"ratio\": 0.08291571180336951, \"sinceDay0\": 30}, {\"index\": 445, \"date\": \"2020-03-27T00:00:00\", \"state\": \"WI\", \"positive\": 842.0, \"negative\": 13140.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8c63c548c621e8d51f2c08c5e2e7a34947238262\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 13.0, \"hospitalized\": null, \"total\": 13982, \"totalTestResults\": 13982, \"posNeg\": 13982, \"fips\": 55, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1557.0, \"positiveIncrease\": 135.0, \"totalTestResultsIncrease\": 1692.0, \"ratio\": 0.06022028322128451, \"sinceDay0\": 0}, {\"index\": 389, \"date\": \"2020-03-28T00:00:00\", \"state\": \"WI\", \"positive\": 989.0, \"negative\": 15232.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"cc9a38626e488667d80901c4814ba600f9f923cb\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 13.0, \"hospitalized\": null, \"total\": 16221, \"totalTestResults\": 16221, \"posNeg\": 16221, \"fips\": 55, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2092.0, \"positiveIncrease\": 147.0, \"totalTestResultsIncrease\": 2239.0, \"ratio\": 0.060970347080944454, \"sinceDay0\": 1}, {\"index\": 333, \"date\": \"2020-03-29T00:00:00\", \"state\": \"WI\", \"positive\": 1112.0, \"negative\": 16550.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8687db826f68ba2e1871b9798043b5acf7de9e5e\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 13.0, \"hospitalized\": null, \"total\": 17662, \"totalTestResults\": 17662, \"posNeg\": 17662, \"fips\": 55, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1318.0, \"positiveIncrease\": 123.0, \"totalTestResultsIncrease\": 1441.0, \"ratio\": 0.06296002717699015, \"sinceDay0\": 2}, {\"index\": 277, \"date\": \"2020-03-30T00:00:00\", \"state\": \"WI\", \"positive\": 1221.0, \"negative\": 15856.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"23dce446b3a30d5d3dda0c1c88c909196d75aaab\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 14.0, \"hospitalized\": null, \"total\": 17077, \"totalTestResults\": 17077, \"posNeg\": 17077, \"fips\": 55, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": -694.0, \"positiveIncrease\": 109.0, \"totalTestResultsIncrease\": -585.0, \"ratio\": 0.0714996779293787, \"sinceDay0\": 3}, {\"index\": 221, \"date\": \"2020-03-31T00:00:00\", \"state\": \"WI\", \"positive\": 1351.0, \"negative\": 17375.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 337.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5743ca4c966b5e5a927d00d404c31fbb7cc91341\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 16.0, \"hospitalized\": 337.0, \"total\": 18726, \"totalTestResults\": 18726, \"posNeg\": 18726, \"fips\": 55, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 337.0, \"negativeIncrease\": 1519.0, \"positiveIncrease\": 130.0, \"totalTestResultsIncrease\": 1649.0, \"ratio\": 0.07214567980348179, \"sinceDay0\": 4}, {\"index\": 165, \"date\": \"2020-04-01T00:00:00\", \"state\": \"WI\", \"positive\": 1550.0, \"negative\": 18819.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 398.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"3a304dc1edaaf3c59465b033f7b4aa76ad3dec32\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 24.0, \"hospitalized\": 398.0, \"total\": 20369, \"totalTestResults\": 20369, \"posNeg\": 20369, \"fips\": 55, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 61.0, \"negativeIncrease\": 1444.0, \"positiveIncrease\": 199.0, \"totalTestResultsIncrease\": 1643.0, \"ratio\": 0.07609602827826599, \"sinceDay0\": 5}, {\"index\": 109, \"date\": \"2020-04-02T00:00:00\", \"state\": \"WI\", \"positive\": 1730.0, \"negative\": 20317.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 461.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"834fc46c2905f903a94bd047bced3c8b65158dbe\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 31.0, \"hospitalized\": 461.0, \"total\": 22047, \"totalTestResults\": 22047, \"posNeg\": 22047, \"fips\": 55, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 63.0, \"negativeIncrease\": 1498.0, \"positiveIncrease\": 180.0, \"totalTestResultsIncrease\": 1678.0, \"ratio\": 0.07846872590375108, \"sinceDay0\": 6}, {\"index\": 53, \"date\": \"2020-04-03T00:00:00\", \"state\": \"WI\", \"positive\": 1912.0, \"negative\": 22377.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 487.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ac2e774ab91aaf87bd106a4d19ddc35d0a14d163\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 37.0, \"hospitalized\": 487.0, \"total\": 24289, \"totalTestResults\": 24289, \"posNeg\": 24289, \"fips\": 55, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 26.0, \"negativeIncrease\": 2060.0, \"positiveIncrease\": 182.0, \"totalTestResultsIncrease\": 2242.0, \"ratio\": 0.07871876157931575, \"sinceDay0\": 7}, {\"index\": 0, \"date\": \"2020-03-04T00:00:00\", \"state\": \"All US\", \"positive\": 118.0, \"negative\": 748.0, \"pending\": 103.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 10.0, \"hospitalized\": 0.0, \"total\": 969, \"totalTestResults\": 866, \"posNeg\": 866, \"fips\": 425, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 5.515809423282292, \"sinceDay0\": 0}, {\"index\": 1, \"date\": \"2020-03-05T00:00:00\", \"state\": \"All US\", \"positive\": 176.0, \"negative\": 953.0, \"pending\": 197.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 11.0, \"hospitalized\": 0.0, \"total\": 1326, \"totalTestResults\": 1129, \"posNeg\": 1129, \"fips\": 728, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 99.0, \"positiveIncrease\": 55.0, \"totalTestResultsIncrease\": 154.0, \"ratio\": 7.691963187672735, \"sinceDay0\": 1}, {\"index\": 2, \"date\": \"2020-03-06T00:00:00\", \"state\": \"All US\", \"positive\": 223.0, \"negative\": 1571.0, \"pending\": 458.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 14.0, \"hospitalized\": 0.0, \"total\": 2252, \"totalTestResults\": 1794, \"posNeg\": 1794, \"fips\": 1031, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 507.0, \"positiveIncrease\": 44.0, \"totalTestResultsIncrease\": 551.0, \"ratio\": 8.84189813481705, \"sinceDay0\": 2}, {\"index\": 3, \"date\": \"2020-03-07T00:00:00\", \"state\": \"All US\", \"positive\": 341.0, \"negative\": 1809.0, \"pending\": 602.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 16.0, \"hospitalized\": 0.0, \"total\": 2752, \"totalTestResults\": 2150, \"posNeg\": 2150, \"fips\": 1477, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 194.0, \"positiveIncrease\": 113.0, \"totalTestResultsIncrease\": 307.0, \"ratio\": 13.209662158531827, \"sinceDay0\": 3}, {\"index\": 4, \"date\": \"2020-03-08T00:00:00\", \"state\": \"All US\", \"positive\": 417.0, \"negative\": 2335.0, \"pending\": 347.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 18.0, \"hospitalized\": 0.0, \"total\": 3099, \"totalTestResults\": 2752, \"posNeg\": 2752, \"fips\": 1477, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 526.0, \"positiveIncrease\": 76.0, \"totalTestResultsIncrease\": 602.0, \"ratio\": 12.32417291309689, \"sinceDay0\": 4}, {\"index\": 5, \"date\": \"2020-03-09T00:00:00\", \"state\": \"All US\", \"positive\": 584.0, \"negative\": 3367.0, \"pending\": 313.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 22.0, \"hospitalized\": 0.0, \"total\": 4264, \"totalTestResults\": 3951, \"posNeg\": 3951, \"fips\": 1477, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1032.0, \"positiveIncrease\": 167.0, \"totalTestResultsIncrease\": 1199.0, \"ratio\": 12.85071660526928, \"sinceDay0\": 5}, {\"index\": 6, \"date\": \"2020-03-10T00:00:00\", \"state\": \"All US\", \"positive\": 778.0, \"negative\": 3807.0, \"pending\": 469.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 24.0, \"hospitalized\": 0.0, \"total\": 5054, \"totalTestResults\": 4585, \"posNeg\": 4585, \"fips\": 1477, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 440.0, \"positiveIncrease\": 195.0, \"totalTestResultsIncrease\": 634.0, \"ratio\": 12.154127882707202, \"sinceDay0\": 6}, {\"index\": 7, \"date\": \"2020-03-11T00:00:00\", \"state\": \"All US\", \"positive\": 1054.0, \"negative\": 6070.0, \"pending\": 563.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 27.0, \"hospitalized\": 0.0, \"total\": 7687, \"totalTestResults\": 7124, \"posNeg\": 7124, \"fips\": 1477, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2263.0, \"positiveIncrease\": 276.0, \"totalTestResultsIncrease\": 2539.0, \"ratio\": 10.931231454132302, \"sinceDay0\": 7}, {\"index\": 8, \"date\": \"2020-03-12T00:00:00\", \"state\": \"All US\", \"positive\": 1315.0, \"negative\": 8041.0, \"pending\": 673.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 36.0, \"hospitalized\": 0.0, \"total\": 10029, \"totalTestResults\": 9356, \"posNeg\": 9356, \"fips\": 1477, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1971.0, \"positiveIncrease\": 261.0, \"totalTestResultsIncrease\": 2232.0, \"ratio\": 9.756655510469434, \"sinceDay0\": 8}, {\"index\": 9, \"date\": \"2020-03-13T00:00:00\", \"state\": \"All US\", \"positive\": 1922.0, \"negative\": 13613.0, \"pending\": 1130.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 39.0, \"hospitalized\": 0.0, \"total\": 16665, \"totalTestResults\": 15535, \"posNeg\": 15535, \"fips\": 1477, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5572.0, \"positiveIncrease\": 607.0, \"totalTestResultsIncrease\": 6179.0, \"ratio\": 9.175450650028257, \"sinceDay0\": 9}, {\"index\": 10, \"date\": \"2020-03-14T00:00:00\", \"state\": \"All US\", \"positive\": 2450.0, \"negative\": 17102.0, \"pending\": 1236.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 49.0, \"hospitalized\": 0.0, \"total\": 20788, \"totalTestResults\": 19552, \"posNeg\": 19552, \"fips\": 1477, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3489.0, \"positiveIncrease\": 528.0, \"totalTestResultsIncrease\": 4017.0, \"ratio\": 8.811971922038886, \"sinceDay0\": 10}, {\"index\": 11, \"date\": \"2020-03-15T00:00:00\", \"state\": \"All US\", \"positive\": 3173.0, \"negative\": 22551.0, \"pending\": 2242.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 60.0, \"hospitalized\": 0.0, \"total\": 27966, \"totalTestResults\": 25724, \"posNeg\": 25724, \"fips\": 1477, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5449.0, \"positiveIncrease\": 723.0, \"totalTestResultsIncrease\": 6172.0, \"ratio\": 9.136386708221607, \"sinceDay0\": 11}, {\"index\": 12, \"date\": \"2020-03-16T00:00:00\", \"state\": \"All US\", \"positive\": 4019.0, \"negative\": 36104.0, \"pending\": 1691.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 71.0, \"hospitalized\": 0.0, \"total\": 41814, \"totalTestResults\": 40123, \"posNeg\": 40123, \"fips\": 1822, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 13521.0, \"positiveIncrease\": 837.0, \"totalTestResultsIncrease\": 14358.0, \"ratio\": 10.964166847366664, \"sinceDay0\": 12}, {\"index\": 13, \"date\": \"2020-03-17T00:00:00\", \"state\": \"All US\", \"positive\": 5722.0, \"negative\": 47604.0, \"pending\": 1687.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 90.0, \"hospitalized\": 0.0, \"total\": 55013, \"totalTestResults\": 53326, \"posNeg\": 53326, \"fips\": 1822, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 11500.0, \"positiveIncrease\": 1703.0, \"totalTestResultsIncrease\": 13203.0, \"ratio\": 9.7393915788136, \"sinceDay0\": 13}, {\"index\": 14, \"date\": \"2020-03-18T00:00:00\", \"state\": \"All US\", \"positive\": 7730.0, \"negative\": 66225.0, \"pending\": 2526.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 112.0, \"hospitalized\": 0.0, \"total\": 76481, \"totalTestResults\": 73955, \"posNeg\": 73955, \"fips\": 1822, \"deathIncrease\": 22.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 18621.0, \"positiveIncrease\": 2008.0, \"totalTestResultsIncrease\": 20629.0, \"ratio\": 8.61934483439022, \"sinceDay0\": 14}, {\"index\": 15, \"date\": \"2020-03-19T00:00:00\", \"state\": \"All US\", \"positive\": 11719.0, \"negative\": 89153.0, \"pending\": 3016.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 160.0, \"hospitalized\": 0.0, \"total\": 103888, \"totalTestResults\": 100872, \"posNeg\": 100872, \"fips\": 1822, \"deathIncrease\": 48.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 22928.0, \"positiveIncrease\": 3989.0, \"totalTestResultsIncrease\": 26917.0, \"ratio\": 8.465643999059226, \"sinceDay0\": 15}, {\"index\": 16, \"date\": \"2020-03-20T00:00:00\", \"state\": \"All US\", \"positive\": 17033.0, \"negative\": 118147.0, \"pending\": 3327.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 219.0, \"hospitalized\": 0.0, \"total\": 138507, \"totalTestResults\": 135180, \"posNeg\": 135180, \"fips\": 1822, \"deathIncrease\": 59.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 28994.0, \"positiveIncrease\": 5314.0, \"totalTestResultsIncrease\": 34308.0, \"ratio\": 8.874521266385061, \"sinceDay0\": 16}, {\"index\": 17, \"date\": \"2020-03-21T00:00:00\", \"state\": \"All US\", \"positive\": 23197.0, \"negative\": 155909.0, \"pending\": 3468.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 1964.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 272.0, \"hospitalized\": 1964.0, \"total\": 182574, \"totalTestResults\": 179106, \"posNeg\": 179106, \"fips\": 1822, \"deathIncrease\": 53.0, \"hospitalizedIncrease\": 1964.0, \"negativeIncrease\": 37762.0, \"positiveIncrease\": 6164.0, \"totalTestResultsIncrease\": 43926.0, \"ratio\": 8.871489705886916, \"sinceDay0\": 17}, {\"index\": 18, \"date\": \"2020-03-22T00:00:00\", \"state\": \"All US\", \"positive\": 31879.0, \"negative\": 193463.0, \"pending\": 2842.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 2554.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 398.0, \"hospitalized\": 2554.0, \"total\": 228184, \"totalTestResults\": 225342, \"posNeg\": 225342, \"fips\": 1822, \"deathIncrease\": 126.0, \"hospitalizedIncrease\": 590.0, \"negativeIncrease\": 37554.0, \"positiveIncrease\": 8682.0, \"totalTestResultsIncrease\": 46236.0, \"ratio\": 8.681476521413002, \"sinceDay0\": 18}, {\"index\": 19, \"date\": \"2020-03-23T00:00:00\", \"state\": \"All US\", \"positive\": 42152.0, \"negative\": 237321.0, \"pending\": 14571.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 3325.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 471.0, \"hospitalized\": 3325.0, \"total\": 294044, \"totalTestResults\": 279473, \"posNeg\": 279473, \"fips\": 1822, \"deathIncrease\": 73.0, \"hospitalizedIncrease\": 771.0, \"negativeIncrease\": 43858.0, \"positiveIncrease\": 10273.0, \"totalTestResultsIncrease\": 54131.0, \"ratio\": 9.165322326000412, \"sinceDay0\": 19}, {\"index\": 20, \"date\": \"2020-03-24T00:00:00\", \"state\": \"All US\", \"positive\": 51954.0, \"negative\": 292778.0, \"pending\": 14433.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 4468.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 675.0, \"hospitalized\": 4468.0, \"total\": 359165, \"totalTestResults\": 344732, \"posNeg\": 344732, \"fips\": 1822, \"deathIncrease\": 204.0, \"hospitalizedIncrease\": 1143.0, \"negativeIncrease\": 55457.0, \"positiveIncrease\": 9802.0, \"totalTestResultsIncrease\": 65259.0, \"ratio\": 8.655914557179413, \"sinceDay0\": 20}, {\"index\": 21, \"date\": \"2020-03-25T00:00:00\", \"state\": \"All US\", \"positive\": 63928.0, \"negative\": 357604.0, \"pending\": 51235.0, \"hospitalizedCurrently\": 96.0, \"hospitalizedCumulative\": 6136.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 74.0, \"onVentilatorCurrently\": 4.0, \"onVentilatorCumulative\": 167.0, \"recovered\": 147.0, \"hash\": null, \"dateChecked\": null, \"death\": 900.0, \"hospitalized\": 6136.0, \"total\": 472767, \"totalTestResults\": 421532, \"posNeg\": 421532, \"fips\": 1822, \"deathIncrease\": 225.0, \"hospitalizedIncrease\": 1668.0, \"negativeIncrease\": 64826.0, \"positiveIncrease\": 11974.0, \"totalTestResultsIncrease\": 76800.0, \"ratio\": 7.660441721334681, \"sinceDay0\": 21}, {\"index\": 22, \"date\": \"2020-03-26T00:00:00\", \"state\": \"All US\", \"positive\": 80735.0, \"negative\": 438603.0, \"pending\": 60251.0, \"hospitalizedCurrently\": 5441.0, \"hospitalizedCumulative\": 10131.0, \"inIcuCurrently\": 1299.0, \"inIcuCumulative\": 1412.0, \"onVentilatorCurrently\": 19.0, \"onVentilatorCumulative\": 258.0, \"recovered\": 97.0, \"hash\": null, \"dateChecked\": null, \"death\": 1163.0, \"hospitalized\": 10131.0, \"total\": 579589, \"totalTestResults\": 519338, \"posNeg\": 519338, \"fips\": 1822, \"deathIncrease\": 264.0, \"hospitalizedIncrease\": 3996.0, \"negativeIncrease\": 80999.0, \"positiveIncrease\": 16807.0, \"totalTestResultsIncrease\": 97806.0, \"ratio\": 7.815169609024223, \"sinceDay0\": 22}, {\"index\": 23, \"date\": \"2020-03-27T00:00:00\", \"state\": \"All US\", \"positive\": 99413.0, \"negative\": 527220.0, \"pending\": 60091.0, \"hospitalizedCurrently\": 7532.0, \"hospitalizedCumulative\": 13407.0, \"inIcuCurrently\": 1792.0, \"inIcuCumulative\": 1916.0, \"onVentilatorCurrently\": 54.0, \"onVentilatorCumulative\": 324.0, \"recovered\": 2422.0, \"hash\": null, \"dateChecked\": null, \"death\": 1530.0, \"hospitalized\": 13407.0, \"total\": 686724, \"totalTestResults\": 626633, \"posNeg\": 626633, \"fips\": 1822, \"deathIncrease\": 367.0, \"hospitalizedIncrease\": 3342.0, \"negativeIncrease\": 88617.0, \"positiveIncrease\": 18678.0, \"totalTestResultsIncrease\": 107295.0, \"ratio\": 7.692155032404294, \"sinceDay0\": 23}, {\"index\": 24, \"date\": \"2020-03-28T00:00:00\", \"state\": \"All US\", \"positive\": 118234.0, \"negative\": 617470.0, \"pending\": 65709.0, \"hospitalizedCurrently\": 8725.0, \"hospitalizedCumulative\": 16363.0, \"inIcuCurrently\": 2174.0, \"inIcuCumulative\": 2314.0, \"onVentilatorCurrently\": 54.0, \"onVentilatorCumulative\": 390.0, \"recovered\": 3148.0, \"hash\": null, \"dateChecked\": null, \"death\": 1965.0, \"hospitalized\": 16363.0, \"total\": 801413, \"totalTestResults\": 735704, \"posNeg\": 735704, \"fips\": 1822, \"deathIncrease\": 435.0, \"hospitalizedIncrease\": 2956.0, \"negativeIncrease\": 90250.0, \"positiveIncrease\": 18821.0, \"totalTestResultsIncrease\": 109071.0, \"ratio\": 7.276931165944226, \"sinceDay0\": 24}, {\"index\": 25, \"date\": \"2020-03-29T00:00:00\", \"state\": \"All US\", \"positive\": 139061.0, \"negative\": 692290.0, \"pending\": 65545.0, \"hospitalizedCurrently\": 9922.0, \"hospitalizedCumulative\": 19401.0, \"inIcuCurrently\": 2456.0, \"inIcuCumulative\": 2642.0, \"onVentilatorCurrently\": 59.0, \"onVentilatorCumulative\": 440.0, \"recovered\": 4061.0, \"hash\": null, \"dateChecked\": null, \"death\": 2428.0, \"hospitalized\": 19401.0, \"total\": 896896, \"totalTestResults\": 831351, \"posNeg\": 831351, \"fips\": 1822, \"deathIncrease\": 463.0, \"hospitalizedIncrease\": 3038.0, \"negativeIncrease\": 74820.0, \"positiveIncrease\": 20827.0, \"totalTestResultsIncrease\": 95647.0, \"ratio\": 7.531337832650078, \"sinceDay0\": 25}, {\"index\": 26, \"date\": \"2020-03-30T00:00:00\", \"state\": \"All US\", \"positive\": 160530.0, \"negative\": 784324.0, \"pending\": 65369.0, \"hospitalizedCurrently\": 12147.0, \"hospitalizedCumulative\": 22303.0, \"inIcuCurrently\": 2982.0, \"inIcuCumulative\": 3177.0, \"onVentilatorCurrently\": 259.0, \"onVentilatorCumulative\": 644.0, \"recovered\": 4560.0, \"hash\": null, \"dateChecked\": null, \"death\": 2939.0, \"hospitalized\": 22303.0, \"total\": 1010223, \"totalTestResults\": 944854, \"posNeg\": 944854, \"fips\": 1822, \"deathIncrease\": 511.0, \"hospitalizedIncrease\": 2902.0, \"negativeIncrease\": 92034.0, \"positiveIncrease\": 21469.0, \"totalTestResultsIncrease\": 113503.0, \"ratio\": 6.9434231331000325, \"sinceDay0\": 26}, {\"index\": 27, \"date\": \"2020-03-31T00:00:00\", \"state\": \"All US\", \"positive\": 184683.0, \"negative\": 864201.0, \"pending\": 59518.0, \"hospitalizedCurrently\": 14236.0, \"hospitalizedCumulative\": 26660.0, \"inIcuCurrently\": 3402.0, \"inIcuCumulative\": 3644.0, \"onVentilatorCurrently\": 69.0, \"onVentilatorCumulative\": 507.0, \"recovered\": 5666.0, \"hash\": null, \"dateChecked\": null, \"death\": 3746.0, \"hospitalized\": 26660.0, \"total\": 1108402, \"totalTestResults\": 1048884, \"posNeg\": 1048884, \"fips\": 1822, \"deathIncrease\": 807.0, \"hospitalizedIncrease\": 4357.0, \"negativeIncrease\": 79877.0, \"positiveIncrease\": 24153.0, \"totalTestResultsIncrease\": 104030.0, \"ratio\": 7.174301931221445, \"sinceDay0\": 27}, {\"index\": 28, \"date\": \"2020-04-01T00:00:00\", \"state\": \"All US\", \"positive\": 210770.0, \"negative\": 939190.0, \"pending\": 59669.0, \"hospitalizedCurrently\": 16223.0, \"hospitalizedCumulative\": 31142.0, \"inIcuCurrently\": 3837.0, \"inIcuCumulative\": 4270.0, \"onVentilatorCurrently\": 71.0, \"onVentilatorCumulative\": 676.0, \"recovered\": 7084.0, \"hash\": null, \"dateChecked\": null, \"death\": 4700.0, \"hospitalized\": 31142.0, \"total\": 1209629, \"totalTestResults\": 1149960, \"posNeg\": 1149960, \"fips\": 1822, \"deathIncrease\": 954.0, \"hospitalizedIncrease\": 4482.0, \"negativeIncrease\": 74989.0, \"positiveIncrease\": 26087.0, \"totalTestResultsIncrease\": 101076.0, \"ratio\": 7.521230717432975, \"sinceDay0\": 28}, {\"index\": 29, \"date\": \"2020-04-02T00:00:00\", \"state\": \"All US\", \"positive\": 239009.0, \"negative\": 1028649.0, \"pending\": 62101.0, \"hospitalizedCurrently\": 17157.0, \"hospitalizedCumulative\": 32649.0, \"inIcuCurrently\": 4264.0, \"inIcuCumulative\": 541.0, \"onVentilatorCurrently\": 67.0, \"onVentilatorCumulative\": 661.0, \"recovered\": 8586.0, \"hash\": null, \"dateChecked\": null, \"death\": 5784.0, \"hospitalized\": 32649.0, \"total\": 1329759, \"totalTestResults\": 1267658, \"posNeg\": 1267658, \"fips\": 1822, \"deathIncrease\": 1084.0, \"hospitalizedIncrease\": 4335.0, \"negativeIncrease\": 89459.0, \"positiveIncrease\": 28239.0, \"totalTestResultsIncrease\": 117698.0, \"ratio\": 6.936735076319555, \"sinceDay0\": 29}, {\"index\": 30, \"date\": \"2020-04-03T00:00:00\", \"state\": \"All US\", \"positive\": 271915.0, \"negative\": 1135356.0, \"pending\": 61980.0, \"hospitalizedCurrently\": 19926.0, \"hospitalizedCumulative\": 35991.0, \"inIcuCurrently\": 4686.0, \"inIcuCumulative\": 593.0, \"onVentilatorCurrently\": 70.0, \"onVentilatorCumulative\": 728.0, \"recovered\": 10422.0, \"hash\": null, \"dateChecked\": null, \"death\": 6962.0, \"hospitalized\": 35991.0, \"total\": 1469251, \"totalTestResults\": 1407271, \"posNeg\": 1407271, \"fips\": 1822, \"deathIncrease\": 1178.0, \"hospitalizedIncrease\": 3509.0, \"negativeIncrease\": 106707.0, \"positiveIncrease\": 32906.0, \"totalTestResultsIncrease\": 139613.0, \"ratio\": 7.221055349592441, \"sinceDay0\": 30}], \"data-8dd537b73b2c173fea8cb9ec9eabdc90\": [{\"index\": 0, \"day\": 1, \"case\": 20.0, \"doubling period\": \"every day\"}, {\"index\": 1, \"day\": 2, \"case\": 40.0, \"doubling period\": \"every day\"}, {\"index\": 2, \"day\": 3, \"case\": 80.0, \"doubling period\": \"every day\"}, {\"index\": 3, \"day\": 4, \"case\": 160.0, \"doubling period\": \"every day\"}, {\"index\": 4, \"day\": 5, \"case\": 320.0, \"doubling period\": \"every day\"}, {\"index\": 5, \"day\": 10, \"case\": 10240.0, \"doubling period\": \"every day\"}, {\"index\": 6, \"day\": 15, \"case\": 327680.0, \"doubling period\": \"every day\"}, {\"index\": 7, \"day\": 20, \"case\": 10485760.0, \"doubling period\": \"every day\"}, {\"index\": 8, \"day\": 35, \"case\": 343597383680.0, \"doubling period\": \"every day\"}, {\"index\": 0, \"day\": 1, \"case\": 12.599210498948732, \"doubling period\": \"three days\"}, {\"index\": 1, \"day\": 2, \"case\": 15.874010519681994, \"doubling period\": \"three days\"}, {\"index\": 2, \"day\": 3, \"case\": 20.0, \"doubling period\": \"three days\"}, {\"index\": 3, \"day\": 4, \"case\": 25.198420997897465, \"doubling period\": \"three days\"}, {\"index\": 4, \"day\": 5, \"case\": 31.74802103936399, \"doubling period\": \"three days\"}, {\"index\": 5, \"day\": 10, \"case\": 100.79368399158986, \"doubling period\": \"three days\"}, {\"index\": 6, \"day\": 15, \"case\": 320.0, \"doubling period\": \"three days\"}, {\"index\": 7, \"day\": 20, \"case\": 1015.9366732596479, \"doubling period\": \"three days\"}, {\"index\": 8, \"day\": 35, \"case\": 32509.973544308712, \"doubling period\": \"three days\"}, {\"index\": 0, \"day\": 1, \"case\": 11.040895136738122, \"doubling period\": \"every week\"}, {\"index\": 1, \"day\": 2, \"case\": 12.190136542044755, \"doubling period\": \"every week\"}, {\"index\": 2, \"day\": 3, \"case\": 13.459001926323563, \"doubling period\": \"every week\"}, {\"index\": 3, \"day\": 4, \"case\": 14.859942891369485, \"doubling period\": \"every week\"}, {\"index\": 4, \"day\": 5, \"case\": 16.40670712015276, \"doubling period\": \"every week\"}, {\"index\": 5, \"day\": 10, \"case\": 26.918003852647125, \"doubling period\": \"every week\"}, {\"index\": 6, \"day\": 15, \"case\": 44.16358054695249, \"doubling period\": \"every week\"}, {\"index\": 7, \"day\": 20, \"case\": 72.45789314111254, \"doubling period\": \"every week\"}, {\"index\": 8, \"day\": 35, \"case\": 320.0, \"doubling period\": \"every week\"}], \"data-ed084c13b8679930146712a7eed3296c\": [{\"index\": 1, \"date\": \"2020-04-03T00:00:00\", \"state\": \"AL\", \"positive\": 1432.0, \"negative\": 8187.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"2321b8fce440dd33ac0feef0e923113ffffbf603\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 35.0, \"hospitalized\": null, \"total\": 9619, \"totalTestResults\": 9619, \"posNeg\": 9619, \"fips\": 1, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 684.0, \"positiveIncrease\": 199.0, \"totalTestResultsIncrease\": 883.0, \"ratio\": 0.14887202411893127, \"sinceDay0\": 3}, {\"index\": 2, \"date\": \"2020-04-03T00:00:00\", \"state\": \"AR\", \"positive\": 704.0, \"negative\": 8995.0, \"pending\": null, \"hospitalizedCurrently\": 71.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 26.0, \"onVentilatorCumulative\": 39.0, \"recovered\": 60.0, \"hash\": \"1668b119de8dbd14c4334330a55a40591b632995\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 9699, \"totalTestResults\": 9699, \"posNeg\": 9699, \"fips\": 5, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1115.0, \"positiveIncrease\": 61.0, \"totalTestResultsIncrease\": 1176.0, \"ratio\": 0.07258480255696463, \"sinceDay0\": 2}, {\"index\": 4, \"date\": \"2020-04-03T00:00:00\", \"state\": \"AZ\", \"positive\": 1769.0, \"negative\": 22904.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 249.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 91.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"86d38836c9910dcfeb9ec4779c20c399d8da103d\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 41.0, \"hospitalized\": 249.0, \"total\": 24673, \"totalTestResults\": 24673, \"posNeg\": 24673, \"fips\": 4, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 21.0, \"negativeIncrease\": 1793.0, \"positiveIncrease\": 171.0, \"totalTestResultsIncrease\": 1964.0, \"ratio\": 0.07169780731974223, \"sinceDay0\": 7}, {\"index\": 5, \"date\": \"2020-04-03T00:00:00\", \"state\": \"CA\", \"positive\": 10701.0, \"negative\": 24599.0, \"pending\": 59500.0, \"hospitalizedCurrently\": 2188.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": 901.0, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"67f105bfa3690e07b85e362a0c6c43aa796aba45\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 237.0, \"hospitalized\": null, \"total\": 94800, \"totalTestResults\": 35300, \"posNeg\": 35300, \"fips\": 6, \"deathIncrease\": 34.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 790.0, \"positiveIncrease\": 1510.0, \"totalTestResultsIncrease\": 2300.0, \"ratio\": 0.11287974683544304, \"sinceDay0\": 17}, {\"index\": 6, \"date\": \"2020-04-03T00:00:00\", \"state\": \"CO\", \"positive\": 3728.0, \"negative\": 16683.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 710.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"34cd672827b7383da28377a0761440041fae9232\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 97.0, \"hospitalized\": 710.0, \"total\": 20411, \"totalTestResults\": 20411, \"posNeg\": 20411, \"fips\": 8, \"deathIncrease\": 17.0, \"hospitalizedIncrease\": 90.0, \"negativeIncrease\": 1380.0, \"positiveIncrease\": 386.0, \"totalTestResultsIncrease\": 1766.0, \"ratio\": 0.18264661212091518, \"sinceDay0\": 9}, {\"index\": 7, \"date\": \"2020-04-03T00:00:00\", \"state\": \"CT\", \"positive\": 4914.0, \"negative\": 15101.0, \"pending\": null, \"hospitalizedCurrently\": 909.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1951d0ca03e6ab2d9bffc4856b060402c69ea7e6\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 131.0, \"hospitalized\": null, \"total\": 20015, \"totalTestResults\": 20015, \"posNeg\": 20015, \"fips\": 9, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 625.0, \"positiveIncrease\": 1090.0, \"totalTestResultsIncrease\": 1715.0, \"ratio\": 0.24551586310267298, \"sinceDay0\": 11}, {\"index\": 8, \"date\": \"2020-04-03T00:00:00\", \"state\": \"DC\", \"positive\": 757.0, \"negative\": 4827.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 206.0, \"hash\": \"fbf3f83530b301cee1d7dc47fd0719b435edc428\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 15.0, \"hospitalized\": null, \"total\": 5584, \"totalTestResults\": 5584, \"posNeg\": 5584, \"fips\": 11, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 410.0, \"positiveIncrease\": 104.0, \"totalTestResultsIncrease\": 514.0, \"ratio\": 0.13556590257879655, \"sinceDay0\": 2}, {\"index\": 9, \"date\": \"2020-04-03T00:00:00\", \"state\": \"DE\", \"positive\": 450.0, \"negative\": 4995.0, \"pending\": null, \"hospitalizedCurrently\": 63.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 71.0, \"hash\": \"b840b5921e6e7a1adc67cdefd1c22f4e046d277a\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 14.0, \"hospitalized\": null, \"total\": 5445, \"totalTestResults\": 5445, \"posNeg\": 5445, \"fips\": 10, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 429.0, \"positiveIncrease\": 57.0, \"totalTestResultsIncrease\": 486.0, \"ratio\": 0.08264462809917356, \"sinceDay0\": 3}, {\"index\": 10, \"date\": \"2020-04-03T00:00:00\", \"state\": \"FL\", \"positive\": 9585.0, \"negative\": 82137.0, \"pending\": 1225.0, \"hospitalizedCurrently\": 1215.0, \"hospitalizedCumulative\": 1287.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"fd0c37309c79ae95c06c48e43ce956652814c5e5\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 163.0, \"hospitalized\": 1287.0, \"total\": 92947, \"totalTestResults\": 91722, \"posNeg\": 91722, \"fips\": 12, \"deathIncrease\": 35.0, \"hospitalizedIncrease\": 164.0, \"negativeIncrease\": 12851.0, \"positiveIncrease\": 1575.0, \"totalTestResultsIncrease\": 14426.0, \"ratio\": 0.10312328531313544, \"sinceDay0\": 14}, {\"index\": 11, \"date\": \"2020-04-03T00:00:00\", \"state\": \"GA\", \"positive\": 5831.0, \"negative\": 19434.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1158.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c82f88637af7d0c85b2360390bb2386b0da43065\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 184.0, \"hospitalized\": 1158.0, \"total\": 25265, \"totalTestResults\": 25265, \"posNeg\": 25265, \"fips\": 13, \"deathIncrease\": 21.0, \"hospitalizedIncrease\": 102.0, \"negativeIncrease\": 1825.0, \"positiveIncrease\": 483.0, \"totalTestResultsIncrease\": 2308.0, \"ratio\": 0.23079358796754404, \"sinceDay0\": 15}, {\"index\": 14, \"date\": \"2020-04-03T00:00:00\", \"state\": \"IA\", \"positive\": 699.0, \"negative\": 8754.0, \"pending\": null, \"hospitalizedCurrently\": 80.0, \"hospitalizedCumulative\": 138.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 188.0, \"hash\": \"feb894b5b255cf3a6496c9856b448a6307f9b022\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 11.0, \"hospitalized\": 138.0, \"total\": 9453, \"totalTestResults\": 9453, \"posNeg\": 9453, \"fips\": 19, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 18.0, \"negativeIncrease\": 700.0, \"positiveIncrease\": 85.0, \"totalTestResultsIncrease\": 785.0, \"ratio\": 0.07394477943509997, \"sinceDay0\": 1}, {\"index\": 16, \"date\": \"2020-04-03T00:00:00\", \"state\": \"IL\", \"positive\": 8904.0, \"negative\": 39144.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5393eb554824524a4a63bbec9c795869c7869414\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 210.0, \"hospitalized\": null, \"total\": 48048, \"totalTestResults\": 48048, \"posNeg\": 48048, \"fips\": 17, \"deathIncrease\": 53.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3183.0, \"positiveIncrease\": 1209.0, \"totalTestResultsIncrease\": 4392.0, \"ratio\": 0.1853146853146853, \"sinceDay0\": 11}, {\"index\": 17, \"date\": \"2020-04-03T00:00:00\", \"state\": \"IN\", \"positive\": 3437.0, \"negative\": 14398.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b6a582ed478dfba401e4a56efe6e9e4a1b532d04\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 102.0, \"hospitalized\": null, \"total\": 17835, \"totalTestResults\": 17835, \"posNeg\": 17835, \"fips\": 18, \"deathIncrease\": 24.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1152.0, \"positiveIncrease\": 398.0, \"totalTestResultsIncrease\": 1550.0, \"ratio\": 0.19271096159237455, \"sinceDay0\": 10}, {\"index\": 18, \"date\": \"2020-04-03T00:00:00\", \"state\": \"KS\", \"positive\": 620.0, \"negative\": 6454.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 151.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"423f188ae5bf45319e336f75b49a3708bdbc8494\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 17.0, \"hospitalized\": 151.0, \"total\": 7074, \"totalTestResults\": 7074, \"posNeg\": 7074, \"fips\": 20, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 13.0, \"negativeIncrease\": 395.0, \"positiveIncrease\": 68.0, \"totalTestResultsIncrease\": 463.0, \"ratio\": 0.08764489680520215, \"sinceDay0\": 2}, {\"index\": 19, \"date\": \"2020-04-03T00:00:00\", \"state\": \"KY\", \"positive\": 770.0, \"negative\": 12034.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b7ec08543b9b2324d60694f6721979dc00c54543\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 31.0, \"hospitalized\": null, \"total\": 12804, \"totalTestResults\": 12804, \"posNeg\": 12804, \"fips\": 21, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4814.0, \"positiveIncrease\": 90.0, \"totalTestResultsIncrease\": 4904.0, \"ratio\": 0.06013745704467354, \"sinceDay0\": 3}, {\"index\": 20, \"date\": \"2020-04-03T00:00:00\", \"state\": \"LA\", \"positive\": 10297.0, \"negative\": 43348.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1707.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 535.0, \"recovered\": null, \"hash\": \"0694f8cf6531a993f01c11a566a18087757b24d2\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 370.0, \"hospitalized\": 1707.0, \"total\": 53645, \"totalTestResults\": 53645, \"posNeg\": 53645, \"fips\": 22, \"deathIncrease\": 60.0, \"hospitalizedIncrease\": 68.0, \"negativeIncrease\": 1412.0, \"positiveIncrease\": 1147.0, \"totalTestResultsIncrease\": 2559.0, \"ratio\": 0.19194705937179607, \"sinceDay0\": 14}, {\"index\": 21, \"date\": \"2020-04-03T00:00:00\", \"state\": \"MA\", \"positive\": 10402.0, \"negative\": 52560.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 966.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b7bee14b9475ba25ad0b28497d483cec03221230\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 192.0, \"hospitalized\": 966.0, \"total\": 62962, \"totalTestResults\": 62962, \"posNeg\": 62962, \"fips\": 25, \"deathIncrease\": 38.0, \"hospitalizedIncrease\": 153.0, \"negativeIncrease\": 4918.0, \"positiveIncrease\": 1436.0, \"totalTestResultsIncrease\": 6354.0, \"ratio\": 0.16521076204694896, \"sinceDay0\": 10}, {\"index\": 22, \"date\": \"2020-04-03T00:00:00\", \"state\": \"MD\", \"positive\": 2758.0, \"negative\": 20932.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 664.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 159.0, \"hash\": \"748f7091af15d9ca085a92ba09b7390f763b6eb5\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 42.0, \"hospitalized\": 664.0, \"total\": 23690, \"totalTestResults\": 23690, \"posNeg\": 23690, \"fips\": 24, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 82.0, \"negativeIncrease\": 2042.0, \"positiveIncrease\": 427.0, \"totalTestResultsIncrease\": 2469.0, \"ratio\": 0.11642043056141832, \"sinceDay0\": 5}, {\"index\": 24, \"date\": \"2020-04-03T00:00:00\", \"state\": \"MI\", \"positive\": 12744.0, \"negative\": 11893.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"301039b85ad63d7b9da1b36f9694f4c768754044\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 479.0, \"hospitalized\": null, \"total\": 24637, \"totalTestResults\": 24637, \"posNeg\": 24637, \"fips\": 26, \"deathIncrease\": 62.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 1953.0, \"totalTestResultsIncrease\": 1953.0, \"ratio\": 0.5172707716036855, \"sinceDay0\": 11}, {\"index\": 25, \"date\": \"2020-04-03T00:00:00\", \"state\": \"MN\", \"positive\": 789.0, \"negative\": 23438.0, \"pending\": null, \"hospitalizedCurrently\": 86.0, \"hospitalizedCumulative\": 156.0, \"inIcuCurrently\": 40.0, \"inIcuCumulative\": 40.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"6c45e5c1cc14d97b2d8c49fc1e64ae7a7ebb3861\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 22.0, \"hospitalized\": 156.0, \"total\": 24227, \"totalTestResults\": 24227, \"posNeg\": 24227, \"fips\": 27, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 18.0, \"negativeIncrease\": 1786.0, \"positiveIncrease\": 47.0, \"totalTestResultsIncrease\": 1833.0, \"ratio\": 0.03256697073513023, \"sinceDay0\": 4}, {\"index\": 26, \"date\": \"2020-04-03T00:00:00\", \"state\": \"MO\", \"positive\": 2113.0, \"negative\": 19357.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4b8f07be28b3788c1fbf8838dfb55730f628b262\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 19.0, \"hospitalized\": null, \"total\": 21470, \"totalTestResults\": 21470, \"posNeg\": 21470, \"fips\": 29, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1508.0, \"positiveIncrease\": 279.0, \"totalTestResultsIncrease\": 1787.0, \"ratio\": 0.0984163949697252, \"sinceDay0\": 6}, {\"index\": 28, \"date\": \"2020-04-03T00:00:00\", \"state\": \"MS\", \"positive\": 1358.0, \"negative\": 4753.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 420.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8fa26347da7a40d2568c9ec1881dcb83d4ba139c\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 29.0, \"hospitalized\": 420.0, \"total\": 6111, \"totalTestResults\": 6111, \"posNeg\": 6111, \"fips\": 28, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 60.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 181.0, \"totalTestResultsIncrease\": 181.0, \"ratio\": 0.2222222222222222, \"sinceDay0\": 6}, {\"index\": 30, \"date\": \"2020-04-03T00:00:00\", \"state\": \"NC\", \"positive\": 2093.0, \"negative\": 29505.0, \"pending\": null, \"hospitalizedCurrently\": 184.0, \"hospitalizedCumulative\": 259.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"853296f9cd640052947f0851f15fca08782be536\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 19.0, \"hospitalized\": 259.0, \"total\": 31598, \"totalTestResults\": 31598, \"posNeg\": 31598, \"fips\": 37, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 55.0, \"negativeIncrease\": 2683.0, \"positiveIncrease\": 236.0, \"totalTestResultsIncrease\": 2919.0, \"ratio\": 0.06623836951705804, \"sinceDay0\": 2}, {\"index\": 34, \"date\": \"2020-04-03T00:00:00\", \"state\": \"NJ\", \"positive\": 29895.0, \"negative\": 37608.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f3e8ae961e46883c951b2ac5ddd22f46055c6af3\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 646.0, \"hospitalized\": null, \"total\": 67503, \"totalTestResults\": 67503, \"posNeg\": 67503, \"fips\": 34, \"deathIncrease\": 109.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4088.0, \"positiveIncrease\": 4305.0, \"totalTestResultsIncrease\": 8393.0, \"ratio\": 0.442869205813075, \"sinceDay0\": 14}, {\"index\": 36, \"date\": \"2020-04-03T00:00:00\", \"state\": \"NV\", \"positive\": 1514.0, \"negative\": 13018.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b06428c9678bd268d2992c491635ac82ec96bf35\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 43.0, \"hospitalized\": null, \"total\": 14532, \"totalTestResults\": 14532, \"posNeg\": 14532, \"fips\": 32, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 430.0, \"positiveIncrease\": 56.0, \"totalTestResultsIncrease\": 486.0, \"ratio\": 0.10418387007982384, \"sinceDay0\": 8}, {\"index\": 37, \"date\": \"2020-04-03T00:00:00\", \"state\": \"NY\", \"positive\": 102863.0, \"negative\": 168139.0, \"pending\": null, \"hospitalizedCurrently\": 14810.0, \"hospitalizedCumulative\": 23696.0, \"inIcuCurrently\": 3731.0, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 8886.0, \"hash\": \"accc00cef8483cff65936c97844fa6aa44976324\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 2935.0, \"hospitalized\": 23696.0, \"total\": 271002, \"totalTestResults\": 271002, \"posNeg\": 271002, \"fips\": 36, \"deathIncrease\": 562.0, \"hospitalizedIncrease\": 2879.0, \"negativeIncrease\": 21555.0, \"positiveIncrease\": 10482.0, \"totalTestResultsIncrease\": 32037.0, \"ratio\": 0.3795654644615169, \"sinceDay0\": 16}, {\"index\": 38, \"date\": \"2020-04-03T00:00:00\", \"state\": \"OH\", \"positive\": 3312.0, \"negative\": 35063.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 895.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 288.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4f9def22c6f51b8839104ffcb46d41122de71744\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 91.0, \"hospitalized\": 895.0, \"total\": 38375, \"totalTestResults\": 38375, \"posNeg\": 38375, \"fips\": 39, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 93.0, \"negativeIncrease\": 3047.0, \"positiveIncrease\": 410.0, \"totalTestResultsIncrease\": 3457.0, \"ratio\": 0.08630618892508143, \"sinceDay0\": 9}, {\"index\": 39, \"date\": \"2020-04-03T00:00:00\", \"state\": \"OK\", \"positive\": 988.0, \"negative\": 1315.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 289.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8702f6d3df27dc4ba14e053f1f3ea347acc7dbcf\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 38.0, \"hospitalized\": 289.0, \"total\": 2303, \"totalTestResults\": 2303, \"posNeg\": 2303, \"fips\": 40, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 32.0, \"negativeIncrease\": 50.0, \"positiveIncrease\": 109.0, \"totalTestResultsIncrease\": 159.0, \"ratio\": 0.4290056448111159, \"sinceDay0\": 6}, {\"index\": 40, \"date\": \"2020-04-03T00:00:00\", \"state\": \"OR\", \"positive\": 826.0, \"negative\": 15259.0, \"pending\": null, \"hospitalizedCurrently\": 188.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 38.0, \"onVentilatorCumulative\": 40.0, \"recovered\": null, \"hash\": \"b2e5b88bbad8239be3032b82f4afe354fc21fe96\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 21.0, \"hospitalized\": null, \"total\": 16085, \"totalTestResults\": 16085, \"posNeg\": 16085, \"fips\": 41, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1127.0, \"positiveIncrease\": 90.0, \"totalTestResultsIncrease\": 1217.0, \"ratio\": 0.0513521914827479, \"sinceDay0\": 8}, {\"index\": 41, \"date\": \"2020-04-03T00:00:00\", \"state\": \"PA\", \"positive\": 8420.0, \"negative\": 53695.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 852.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"aade9d40167b6e73754871c40386092b362363a2\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 102.0, \"hospitalized\": 852.0, \"total\": 62115, \"totalTestResults\": 62115, \"posNeg\": 62115, \"fips\": 42, \"deathIncrease\": 12.0, \"hospitalizedIncrease\": 122.0, \"negativeIncrease\": 5997.0, \"positiveIncrease\": 1404.0, \"totalTestResultsIncrease\": 7401.0, \"ratio\": 0.1355550189165258, \"sinceDay0\": 9}, {\"index\": 42, \"date\": \"2020-04-03T00:00:00\", \"state\": \"PR\", \"positive\": 378.0, \"negative\": 2049.0, \"pending\": 1055.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"31c1cb53249716895ec3490c18feb99b785a620a\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 15.0, \"hospitalized\": null, \"total\": 3482, \"totalTestResults\": 2427, \"posNeg\": 2427, \"fips\": 72, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 445.0, \"positiveIncrease\": 62.0, \"totalTestResultsIncrease\": 507.0, \"ratio\": 0.10855829982768524, \"sinceDay0\": 2}, {\"index\": 43, \"date\": \"2020-04-03T00:00:00\", \"state\": \"RI\", \"positive\": 711.0, \"negative\": 4412.0, \"pending\": null, \"hospitalizedCurrently\": 72.0, \"hospitalizedCumulative\": 72.0, \"inIcuCurrently\": 14.0, \"inIcuCumulative\": 14.0, \"onVentilatorCurrently\": 6.0, \"onVentilatorCumulative\": 6.0, \"recovered\": 35.0, \"hash\": \"724f26efb1056eab080d70de6d4ca0dfc034af1c\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 14.0, \"hospitalized\": 72.0, \"total\": 5123, \"totalTestResults\": 5123, \"posNeg\": 5123, \"fips\": 44, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 72.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 54.0, \"totalTestResultsIncrease\": 54.0, \"ratio\": 0.1387858676556705, \"sinceDay0\": 2}, {\"index\": 44, \"date\": \"2020-04-03T00:00:00\", \"state\": \"SC\", \"positive\": 1554.0, \"negative\": 5441.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 241.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"83a9526f05767b32166dffbd1c0668fe1e12c1b5\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 31.0, \"hospitalized\": 241.0, \"total\": 6995, \"totalTestResults\": 6995, \"posNeg\": 6995, \"fips\": 45, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": -655.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.22215868477483916, \"sinceDay0\": 6}, {\"index\": 46, \"date\": \"2020-04-03T00:00:00\", \"state\": \"TN\", \"positive\": 3067.0, \"negative\": 34772.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 293.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 248.0, \"hash\": \"019351b10edda80786a653adea2799cab1992e8a\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 37.0, \"hospitalized\": 293.0, \"total\": 37839, \"totalTestResults\": 37839, \"posNeg\": 37839, \"fips\": 47, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 30.0, \"negativeIncrease\": 3006.0, \"positiveIncrease\": 222.0, \"totalTestResultsIncrease\": 3228.0, \"ratio\": 0.0810539390575861, \"sinceDay0\": 4}, {\"index\": 47, \"date\": \"2020-04-03T00:00:00\", \"state\": \"TX\", \"positive\": 5330.0, \"negative\": 50434.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 196.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 38.0, \"hash\": \"18a3dcd9d77854accccca1eb809c495d24501fbf\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 90.0, \"hospitalized\": 196.0, \"total\": 55764, \"totalTestResults\": 55764, \"posNeg\": 55764, \"fips\": 48, \"deathIncrease\": 20.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4424.0, \"positiveIncrease\": 661.0, \"totalTestResultsIncrease\": 5085.0, \"ratio\": 0.09558137866724051, \"sinceDay0\": 9}, {\"index\": 49, \"date\": \"2020-04-03T00:00:00\", \"state\": \"VA\", \"positive\": 2012.0, \"negative\": 16993.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 312.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 145.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 108.0, \"recovered\": null, \"hash\": \"cb349d06a8404e8ea589d4d05f5ae53dfdbd1692\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 46.0, \"hospitalized\": 312.0, \"total\": 19005, \"totalTestResults\": 19005, \"posNeg\": 19005, \"fips\": 51, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 7.0, \"negativeIncrease\": 1110.0, \"positiveIncrease\": 306.0, \"totalTestResultsIncrease\": 1416.0, \"ratio\": 0.10586687713759536, \"sinceDay0\": 8}, {\"index\": 51, \"date\": \"2020-04-03T00:00:00\", \"state\": \"VT\", \"positive\": 389.0, \"negative\": 4839.0, \"pending\": null, \"hospitalizedCurrently\": 29.0, \"hospitalizedCumulative\": 45.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 15.0, \"hash\": \"fd502b9dcb8608ca17ea5eecf37d01466c5f5389\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 17.0, \"hospitalized\": 45.0, \"total\": 5228, \"totalTestResults\": 5228, \"posNeg\": 5228, \"fips\": 50, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 128.0, \"positiveIncrease\": 51.0, \"totalTestResultsIncrease\": 179.0, \"ratio\": 0.074407039020658, \"sinceDay0\": 7}, {\"index\": 52, \"date\": \"2020-04-03T00:00:00\", \"state\": \"WA\", \"positive\": 6585.0, \"negative\": 72833.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 254.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"959e56f464378567061d69a9f5fe856b61563bc4\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 262.0, \"hospitalized\": 254.0, \"total\": 79418, \"totalTestResults\": 79418, \"posNeg\": 79418, \"fips\": 53, \"deathIncrease\": 15.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4019.0, \"positiveIncrease\": 601.0, \"totalTestResultsIncrease\": 4620.0, \"ratio\": 0.08291571180336951, \"sinceDay0\": 30}, {\"index\": 53, \"date\": \"2020-04-03T00:00:00\", \"state\": \"WI\", \"positive\": 1912.0, \"negative\": 22377.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 487.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ac2e774ab91aaf87bd106a4d19ddc35d0a14d163\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 37.0, \"hospitalized\": 487.0, \"total\": 24289, \"totalTestResults\": 24289, \"posNeg\": 24289, \"fips\": 55, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 26.0, \"negativeIncrease\": 2060.0, \"positiveIncrease\": 182.0, \"totalTestResultsIncrease\": 2242.0, \"ratio\": 0.07871876157931575, \"sinceDay0\": 7}, {\"index\": 30, \"date\": \"2020-04-03T00:00:00\", \"state\": \"All US\", \"positive\": 271915.0, \"negative\": 1135356.0, \"pending\": 61980.0, \"hospitalizedCurrently\": 19926.0, \"hospitalizedCumulative\": 35991.0, \"inIcuCurrently\": 4686.0, \"inIcuCumulative\": 593.0, \"onVentilatorCurrently\": 70.0, \"onVentilatorCumulative\": 728.0, \"recovered\": 10422.0, \"hash\": null, \"dateChecked\": null, \"death\": 6962.0, \"hospitalized\": 35991.0, \"total\": 1469251, \"totalTestResults\": 1407271, \"posNeg\": 1407271, \"fips\": 1822, \"deathIncrease\": 1178.0, \"hospitalizedIncrease\": 3509.0, \"negativeIncrease\": 106707.0, \"positiveIncrease\": 32906.0, \"totalTestResultsIncrease\": 139613.0, \"ratio\": 7.221055349592441, \"sinceDay0\": 30}], \"data-d7d4401f932869a4aec747d1ffc1bfec\": [{\"labelX\": 10, \"labelY\": 6000, \"labelText\": \"doubles every day\"}, {\"labelX\": 28, \"labelY\": 7000, \"labelText\": \"doubles every 3 days\"}, {\"labelX\": 34, \"labelY\": 100, \"labelText\": \"doubles every week\"}]}}, {\"mode\": \"vega-lite\"});\n",
       "</script>"
      ],
      "text/plain": [
       "alt.LayerChart(...)"
      ]
     "metadata": {},
     "output_type": "display_data"
      "text/html": [
       "\n",
       "<p style=\"font-size: smaller\">Data Sources: \n",
       "  <a href=\"https://covidtracking.com\">The COVID Tracking Project</a>\n",
       "<br>\n",
       "Analysis and Visualization:\n",
       "  <a href=\"https://renkulab.io/projects/covid-19/covid-19-public-data\">Covid-19 Public Data Collaboration Project</a>\n",
       "</p>"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "# make dataframe for text labels on chart - hand edit these label locations\n",
    "textLabels_df = pd.DataFrame(\n",
    "    [[10,6000,'doubles every day'],\n",
    "     [28,7000,'doubles every 3 days'],\n",
    "     [34,100, 'doubles every week']],\n",
    "    columns =['labelX', 'labelY','labelText']\n",
    ")\n",
    "\n",
    "# make dataframe of states with points >=10 deaths\n",
    "death10_df = data_df.loc[data_df['death']>=10]\n",
    "\n",
    "# group death10 dataframe by state and then increasing order of date\n",
    "death10_df = death10_df.sort_values(by=['state','date'])\n",
    "\n",
    "# add US to that dataframe\n",
    "nationdeath10_df = nation_df.loc[nation_df['death']>=10]\n",
    "death10_df= pd.concat ([death10_df,nationdeath10_df])\n",
    "\n",
    "death10_df = death10_df.reset_index()\n",
    "\n",
    "# make a list of the states with 10 or more deaths\n",
    "state_list = list(set(death10_df['state']))\n",
    "\n",
    "# add a column for the number of days since the 10th death for each state\n",
    "for state, df in death10_df.groupby('state'):\n",
    "    death10_df.loc[df.index,'sinceDay0'] = range(0, len(df))\n",
    "death10_df = death10_df.astype({'sinceDay0': 'int32'})\n",
    "\n",
    "#Now create plotlines for each state since 10 deaths\n",
    "lineChart = alt.Chart(death10_df,title='US States: Cumulative Deaths Since 10th Death').mark_line(interpolate='basis').encode(\n",
    "    alt.X('sinceDay0:Q', axis=alt.Axis(title='Days Since 10th Death')),\n",
    "    alt.Y('death:Q',\n",
    "         axis = alt.Axis(title='Cumulative Deaths'),\n",
    "         scale=alt.Scale(type='log')),\n",
    "    tooltip=['state', 'sinceDay0', 'death', 'positive'],\n",
    "    color = 'state'\n",
    ").properties(width=800,height=500)\n",
    "\n",
    "## Create a layer with the lines for doubling every day and doubling every week\n",
    "\n",
    "# Compute theoretical trends of doubling every day, 3 days, week\n",
    "days = {'day':[1,2,3,4,5,10,15,20, max(death10_df.sinceDay0)+5]}\n",
    "startCase = 10\n",
    "logRuleDay_df = pd.DataFrame(days, columns=['day'])\n",
    "logRuleDay_df['case']= startCase * pow(2,logRuleDay_df['day'])\n",
    "logRuleDay_df['doubling period']='every day'\n",
    "\n",
    "logRule3Days_df = pd.DataFrame(days, columns=['day'])\n",
    "logRule3Days_df['case']= startCase * pow(2,(logRule3Days_df['day'])/3)\n",
    "logRule3Days_df['doubling period']='three days'\n",
    "\n",
    "logRuleWeek_df = pd.DataFrame(days, columns=['day'])\n",
    "logRuleWeek_df['case']= startCase * pow(2,(logRuleWeek_df['day'])/7)\n",
    "logRuleWeek_df['doubling period']='every week'\n",
    "\n",
    "logRules_df = pd.concat([logRuleDay_df, logRule3Days_df, logRuleWeek_df])\n",
    "logRules_df = logRules_df.reset_index()\n",
    "\n",
    "\n",
    "ruleChart = alt.Chart(logRules_df).mark_line(opacity=0.2,clip=True).encode(\n",
    "    alt.X('day:Q',\n",
    "            scale=alt.Scale(domain=[1,max(death10_df.sinceDay0)+5])),\n",
    "    alt.Y('case', scale=alt.Scale(type='log',domain=[10,10000]),\n",
    "         ),\n",
    "    color = 'doubling period',\n",
    "    tooltip = ['doubling period'])        \n",
    "\n",
    "# create a layer for the state labels\n",
    "# 1) make dataframe with each state's max days\n",
    "# 2) make a chart layer with text of state name to right of each state's rightmost point\n",
    "stateLabels_df = death10_df[death10_df['sinceDay0'] == death10_df.groupby(['state'])['sinceDay0'].transform(max)]\n",
    "labelChart = alt.Chart(stateLabels_df).mark_text(align='left', baseline='middle', dx=10).encode(\n",
    "    x='sinceDay0',\n",
    "    y='death',\n",
    "    text='state',\n",
    "    color='state')\n",
    "\n",
    "#now put the text labels layer on top of state labels Chart\n",
    "labelChart = labelChart + alt.Chart(textLabels_df).mark_text(align='right', baseline='bottom', dx=0, size=18,opacity=0.5).encode(\n",
    "    x='labelX',\n",
    "    y='labelY',\n",
    "    text='labelText')\n",
    "\n",
    "\n",
    "## Create some tooltip behavior - show Y values on mouseover\n",
    "# Step 1: Selection that chooses nearest point based on value on x-axis\n",
    "nearest = alt.selection(type='single', nearest=True, on='mouseover',\n",
    "                            fields=['sinceDay0'])\n",
    "\n",
    "# Step 2: Transparent selectors across the chart. This is what tells us\n",
    "# the x-value of the cursor\n",
    "selectors = alt.Chart().mark_point().encode(\n",
    "    x=\"sinceDay0:Q\",\n",
    "    opacity=alt.value(0),\n",
    ").add_selection(\n",
    "    nearest\n",
    ")\n",
    "\n",
    "# Step 3: Add text, show values in column when it's the nearest point to \n",
    "# mouseover, else show blank\n",
    "text = lineChart.mark_text(align='center', dx=3, dy=-20).encode(\n",
    "    text=alt.condition(nearest, 'death', alt.value(' '))\n",
    ")\n",
    "\n",
    "\n",
    "#Finally, lets show the chart!\n",
    "\n",
    "chart = alt.layer(lineChart, ruleChart, labelChart, selectors, text, data=death10_df)\n",
    "\n",
    "display(chart)\n",
    "display(html_credits)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 6,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "\n",
       "<div id=\"altair-viz-8d427fd93ed948f0be7c8e78e1a28d29\"></div>\n",
       "<script type=\"text/javascript\">\n",
       "  (function(spec, embedOpt){\n",
       "    const outputDiv = document.getElementById(\"altair-viz-8d427fd93ed948f0be7c8e78e1a28d29\");\n",
       "    const paths = {\n",
       "      \"vega\": \"https://cdn.jsdelivr.net/npm//vega@5?noext\",\n",
       "      \"vega-lib\": \"https://cdn.jsdelivr.net/npm//vega-lib?noext\",\n",
       "      \"vega-lite\": \"https://cdn.jsdelivr.net/npm//vega-lite@4.0.2?noext\",\n",
       "      \"vega-embed\": \"https://cdn.jsdelivr.net/npm//vega-embed@6?noext\",\n",
       "    };\n",
       "\n",
       "    function loadScript(lib) {\n",
       "      return new Promise(function(resolve, reject) {\n",
       "        var s = document.createElement('script');\n",
       "        s.src = paths[lib];\n",
       "        s.async = true;\n",
       "        s.onload = () => resolve(paths[lib]);\n",
       "        s.onerror = () => reject(`Error loading script: ${paths[lib]}`);\n",
       "        document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
       "      });\n",
       "    }\n",
       "\n",
       "    function showError(err) {\n",
       "      outputDiv.innerHTML = `<div class=\"error\" style=\"color:red;\">${err}</div>`;\n",
       "      throw err;\n",
       "    }\n",
       "\n",
       "    function displayChart(vegaEmbed) {\n",
       "      vegaEmbed(outputDiv, spec, embedOpt)\n",
       "        .catch(err => showError(`Javascript Error: ${err.message}<br>This usually means there's a typo in your chart specification. See the javascript console for the full traceback.`));\n",
       "    }\n",
       "\n",
       "    if(typeof define === \"function\" && define.amd) {\n",
       "      requirejs.config({paths});\n",
       "      require([\"vega-embed\"], displayChart, err => showError(`Error loading script: ${err.message}`));\n",
       "    } else if (typeof vegaEmbed === \"function\") {\n",
       "      displayChart(vegaEmbed);\n",
       "    } else {\n",
       "      loadScript(\"vega\")\n",
       "        .then(() => loadScript(\"vega-lite\"))\n",
       "        .then(() => loadScript(\"vega-embed\"))\n",
       "        .catch(showError)\n",
       "        .then(() => displayChart(vegaEmbed));\n",
       "    }\n",
       "  })({\"config\": {\"view\": {\"continuousWidth\": 400, \"continuousHeight\": 300}}, \"layer\": [{\"data\": {\"name\": \"data-2c24c2e504cf5cbeac1b685a884ddb53\"}, \"mark\": {\"type\": \"line\", \"interpolate\": \"basis\"}, \"encoding\": {\"color\": {\"type\": \"nominal\", \"field\": \"state\"}, \"tooltip\": [{\"type\": \"nominal\", \"field\": \"state\"}, {\"type\": \"quantitative\", \"field\": \"sinceDay0\"}, {\"type\": \"quantitative\", \"field\": \"death\"}, {\"type\": \"quantitative\", \"field\": \"positive\"}], \"x\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"Days since 100th case\"}, \"field\": \"sinceDay0\"}, \"y\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"Cumulative positive cases\"}, \"field\": \"positive\", \"scale\": {\"type\": \"log\"}}}, \"height\": 500, \"title\": \"US States: total cases since 100th case\", \"width\": 800}, {\"data\": {\"name\": \"data-b85121732bffee7f18d1b46eac2b852b\"}, \"mark\": {\"type\": \"line\", \"clip\": true, \"opacity\": 0.2}, \"encoding\": {\"color\": {\"type\": \"nominal\", \"field\": \"doubling period\"}, \"x\": {\"type\": \"quantitative\", \"field\": \"day\", \"scale\": {\"domain\": [1, 35]}}, \"y\": {\"type\": \"quantitative\", \"field\": \"case\", \"scale\": {\"domain\": [100, 200000], \"type\": \"log\"}}}}, {\"layer\": [{\"data\": {\"name\": \"data-410fc60666b961dad9e1e4e45412fcd6\"}, \"mark\": {\"type\": \"text\", \"align\": \"left\", \"baseline\": \"middle\", \"dx\": 10}, \"encoding\": {\"color\": {\"type\": \"nominal\", \"field\": \"state\"}, \"text\": {\"type\": \"nominal\", \"field\": \"state\"}, \"x\": {\"type\": \"quantitative\", \"field\": \"sinceDay0\"}, \"y\": {\"type\": \"quantitative\", \"field\": \"positive\"}}}, {\"data\": {\"name\": \"data-0a08c6105da7e065c75198fff0e29db2\"}, \"mark\": {\"type\": \"text\", \"align\": \"right\", \"baseline\": \"bottom\", \"dx\": 0, \"opacity\": 0.5, \"size\": 18}, \"encoding\": {\"text\": {\"type\": \"nominal\", \"field\": \"labelText\"}, \"x\": {\"type\": \"quantitative\", \"field\": \"labelX\"}, \"y\": {\"type\": \"quantitative\", \"field\": \"labelY\"}}}]}, {\"mark\": \"point\", \"encoding\": {\"opacity\": {\"value\": 0}, \"x\": {\"type\": \"quantitative\", \"field\": \"sinceDay0\"}}, \"selection\": {\"selector002\": {\"type\": \"single\", \"nearest\": true, \"on\": \"mouseover\", \"fields\": [\"sinceDay0\"]}}}, {\"data\": {\"name\": \"data-2c24c2e504cf5cbeac1b685a884ddb53\"}, \"mark\": {\"type\": \"text\", \"align\": \"center\", \"dx\": 3, \"dy\": -20}, \"encoding\": {\"color\": {\"type\": \"nominal\", \"field\": \"state\"}, \"text\": {\"condition\": {\"type\": \"quantitative\", \"field\": \"positive\", \"selection\": \"selector002\"}, \"value\": \" \"}, \"tooltip\": [{\"type\": \"nominal\", \"field\": \"state\"}, {\"type\": \"quantitative\", \"field\": \"sinceDay0\"}, {\"type\": \"quantitative\", \"field\": \"death\"}, {\"type\": \"quantitative\", \"field\": \"positive\"}], \"x\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"Days since 100th case\"}, \"field\": \"sinceDay0\"}, \"y\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"Cumulative positive cases\"}, \"field\": \"positive\", \"scale\": {\"type\": \"log\"}}}, \"height\": 500, \"title\": \"US States: total cases since 100th case\", \"width\": 800}], \"data\": {\"name\": \"data-cf6f9c8a0e99cbf4f70076b41ebc7306\"}, \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.0.2.json\", \"datasets\": {\"data-cf6f9c8a0e99cbf4f70076b41ebc7306\": [{\"index\": 169, \"date\": \"2020-03-31T00:00:00\", \"state\": \"AL\", \"positive\": 981.0, \"negative\": 6298.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"42eecba7755e229592355c2a117a0c76245f655a\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 13.0, \"hospitalized\": null, \"total\": 7279, \"totalTestResults\": 7279, \"posNeg\": 7279, \"fips\": 1, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 604.0, \"positiveIncrease\": 122.0, \"totalTestResultsIncrease\": 726.0, \"ratio\": 0.1347712597884325, \"sinceDay0\": 0}, {\"index\": 113, \"date\": \"2020-04-01T00:00:00\", \"state\": \"AL\", \"positive\": 1077.0, \"negative\": 6697.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9bd398e733a5ca5042bde1fd8ce2831fc248b0b1\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 26.0, \"hospitalized\": null, \"total\": 7774, \"totalTestResults\": 7774, \"posNeg\": 7774, \"fips\": 1, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 399.0, \"positiveIncrease\": 96.0, \"totalTestResultsIncrease\": 495.0, \"ratio\": 0.13853871880627733, \"sinceDay0\": 1}, {\"index\": 57, \"date\": \"2020-04-02T00:00:00\", \"state\": \"AL\", \"positive\": 1233.0, \"negative\": 7503.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1a78d31c95bd0d315fc61461107fcd8c66e53b43\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 32.0, \"hospitalized\": null, \"total\": 8736, \"totalTestResults\": 8736, \"posNeg\": 8736, \"fips\": 1, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 806.0, \"positiveIncrease\": 156.0, \"totalTestResultsIncrease\": 962.0, \"ratio\": 0.1411401098901099, \"sinceDay0\": 2}, {\"index\": 1, \"date\": \"2020-04-03T00:00:00\", \"state\": \"AL\", \"positive\": 1432.0, \"negative\": 8187.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"2321b8fce440dd33ac0feef0e923113ffffbf603\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 35.0, \"hospitalized\": null, \"total\": 9619, \"totalTestResults\": 9619, \"posNeg\": 9619, \"fips\": 1, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 684.0, \"positiveIncrease\": 199.0, \"totalTestResultsIncrease\": 883.0, \"ratio\": 0.14887202411893127, \"sinceDay0\": 3}, {\"index\": 114, \"date\": \"2020-04-01T00:00:00\", \"state\": \"AR\", \"positive\": 584.0, \"negative\": 7354.0, \"pending\": null, \"hospitalizedCurrently\": 56.0, \"hospitalizedCumulative\": 90.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 25.0, \"onVentilatorCumulative\": 32.0, \"recovered\": 42.0, \"hash\": \"eb0f33b592be1e182660fe530097a09b66431f2c\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 10.0, \"hospitalized\": 90.0, \"total\": 7938, \"totalTestResults\": 7938, \"posNeg\": 7938, \"fips\": 5, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 26.0, \"negativeIncrease\": 1395.0, \"positiveIncrease\": 61.0, \"totalTestResultsIncrease\": 1456.0, \"ratio\": 0.07357016880826404, \"sinceDay0\": 0}, {\"index\": 58, \"date\": \"2020-04-02T00:00:00\", \"state\": \"AR\", \"positive\": 643.0, \"negative\": 7880.0, \"pending\": null, \"hospitalizedCurrently\": 66.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 23.0, \"onVentilatorCumulative\": null, \"recovered\": 47.0, \"hash\": \"34259fa1839931debea61bd331ad6b244b1942b5\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 8523, \"totalTestResults\": 8523, \"posNeg\": 8523, \"fips\": 5, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 526.0, \"positiveIncrease\": 59.0, \"totalTestResultsIncrease\": 585.0, \"ratio\": 0.07544291915992021, \"sinceDay0\": 1}, {\"index\": 2, \"date\": \"2020-04-03T00:00:00\", \"state\": \"AR\", \"positive\": 704.0, \"negative\": 8995.0, \"pending\": null, \"hospitalizedCurrently\": 71.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 26.0, \"onVentilatorCumulative\": 39.0, \"recovered\": 60.0, \"hash\": \"1668b119de8dbd14c4334330a55a40591b632995\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 9699, \"totalTestResults\": 9699, \"posNeg\": 9699, \"fips\": 5, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1115.0, \"positiveIncrease\": 61.0, \"totalTestResultsIncrease\": 1176.0, \"ratio\": 0.07258480255696463, \"sinceDay0\": 2}, {\"index\": 396, \"date\": \"2020-03-27T00:00:00\", \"state\": \"AZ\", \"positive\": 736.0, \"negative\": 7455.0, \"pending\": 30.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ed32559e21a38aa4dcf186932bc2e858d1974669\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 13.0, \"hospitalized\": null, \"total\": 8221, \"totalTestResults\": 8191, \"posNeg\": 8191, \"fips\": 4, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 7108.0, \"positiveIncrease\": 159.0, \"totalTestResultsIncrease\": 7267.0, \"ratio\": 0.08952682155455541, \"sinceDay0\": 0}, {\"index\": 340, \"date\": \"2020-03-28T00:00:00\", \"state\": \"AZ\", \"positive\": 873.0, \"negative\": 7455.0, \"pending\": 21.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"06aad51da966e2299f0c0537e0cf4fbba4c6c696\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 15.0, \"hospitalized\": null, \"total\": 8349, \"totalTestResults\": 8328, \"posNeg\": 8328, \"fips\": 4, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 137.0, \"totalTestResultsIncrease\": 137.0, \"ratio\": 0.10456342076895436, \"sinceDay0\": 1}, {\"index\": 284, \"date\": \"2020-03-29T00:00:00\", \"state\": \"AZ\", \"positive\": 919.0, \"negative\": 12953.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 78.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 30.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"030af14227822ea13853568cdf2a79a864fc73d6\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 17.0, \"hospitalized\": 78.0, \"total\": 13872, \"totalTestResults\": 13872, \"posNeg\": 13872, \"fips\": 4, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 78.0, \"negativeIncrease\": 5498.0, \"positiveIncrease\": 46.0, \"totalTestResultsIncrease\": 5544.0, \"ratio\": 0.06624855824682814, \"sinceDay0\": 2}, {\"index\": 228, \"date\": \"2020-03-30T00:00:00\", \"state\": \"AZ\", \"positive\": 1157.0, \"negative\": 15602.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 78.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 30.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"7fed0e7f482053630e42fe6cde50397bc8aaeaac\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 20.0, \"hospitalized\": 78.0, \"total\": 16759, \"totalTestResults\": 16759, \"posNeg\": 16759, \"fips\": 4, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2649.0, \"positiveIncrease\": 238.0, \"totalTestResultsIncrease\": 2887.0, \"ratio\": 0.06903753207231936, \"sinceDay0\": 3}, {\"index\": 172, \"date\": \"2020-03-31T00:00:00\", \"state\": \"AZ\", \"positive\": 1289.0, \"negative\": 18082.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 78.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 30.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"7a61f6c2f0d045bd7450398a13971715a698bf8d\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 24.0, \"hospitalized\": 78.0, \"total\": 19371, \"totalTestResults\": 19371, \"posNeg\": 19371, \"fips\": 4, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2480.0, \"positiveIncrease\": 132.0, \"totalTestResultsIncrease\": 2612.0, \"ratio\": 0.0665427701202829, \"sinceDay0\": 4}, {\"index\": 116, \"date\": \"2020-04-01T00:00:00\", \"state\": \"AZ\", \"positive\": 1413.0, \"negative\": 19645.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 149.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 51.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5dd22577aa9da74dba6c60ec793ebf24511645e1\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 29.0, \"hospitalized\": 149.0, \"total\": 21058, \"totalTestResults\": 21058, \"posNeg\": 21058, \"fips\": 4, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 71.0, \"negativeIncrease\": 1563.0, \"positiveIncrease\": 124.0, \"totalTestResultsIncrease\": 1687.0, \"ratio\": 0.06710038940070281, \"sinceDay0\": 5}, {\"index\": 60, \"date\": \"2020-04-02T00:00:00\", \"state\": \"AZ\", \"positive\": 1598.0, \"negative\": 21111.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 228.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 83.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"51dcd56d6738e79b41c1c6d32c5454a7d2d1e2bf\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 32.0, \"hospitalized\": 228.0, \"total\": 22709, \"totalTestResults\": 22709, \"posNeg\": 22709, \"fips\": 4, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 79.0, \"negativeIncrease\": 1466.0, \"positiveIncrease\": 185.0, \"totalTestResultsIncrease\": 1651.0, \"ratio\": 0.07036857633537363, \"sinceDay0\": 6}, {\"index\": 4, \"date\": \"2020-04-03T00:00:00\", \"state\": \"AZ\", \"positive\": 1769.0, \"negative\": 22904.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 249.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 91.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"86d38836c9910dcfeb9ec4779c20c399d8da103d\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 41.0, \"hospitalized\": 249.0, \"total\": 24673, \"totalTestResults\": 24673, \"posNeg\": 24673, \"fips\": 4, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 21.0, \"negativeIncrease\": 1793.0, \"positiveIncrease\": 171.0, \"totalTestResultsIncrease\": 1964.0, \"ratio\": 0.07169780731974223, \"sinceDay0\": 7}, {\"index\": 957, \"date\": \"2020-03-17T00:00:00\", \"state\": \"CA\", \"positive\": 483.0, \"negative\": 7981.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"3a5a29b79b4583de68455525d065127db6a3e97b\", \"dateChecked\": \"2020-03-17T20:00:00Z\", \"death\": 11.0, \"hospitalized\": null, \"total\": 8464, \"totalTestResults\": 8464, \"posNeg\": 8464, \"fips\": 6, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 148.0, \"totalTestResultsIncrease\": 148.0, \"ratio\": 0.057065217391304345, \"sinceDay0\": 0}, {\"index\": 901, \"date\": \"2020-03-18T00:00:00\", \"state\": \"CA\", \"positive\": 611.0, \"negative\": 7981.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"646da42647f99037e2c2b31faf21a04c5b5ff197\", \"dateChecked\": \"2020-03-18T20:00:00Z\", \"death\": 13.0, \"hospitalized\": null, \"total\": 8592, \"totalTestResults\": 8592, \"posNeg\": 8592, \"fips\": 6, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 128.0, \"totalTestResultsIncrease\": 128.0, \"ratio\": 0.07111266294227188, \"sinceDay0\": 1}, {\"index\": 845, \"date\": \"2020-03-19T00:00:00\", \"state\": \"CA\", \"positive\": 924.0, \"negative\": 8787.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b9c67f8fde621d5bb8895c6a6fcbdcf8440ccf2a\", \"dateChecked\": \"2020-03-19T20:00:00Z\", \"death\": 18.0, \"hospitalized\": null, \"total\": 9711, \"totalTestResults\": 9711, \"posNeg\": 9711, \"fips\": 6, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 806.0, \"positiveIncrease\": 313.0, \"totalTestResultsIncrease\": 1119.0, \"ratio\": 0.09514983008958913, \"sinceDay0\": 2}, {\"index\": 789, \"date\": \"2020-03-20T00:00:00\", \"state\": \"CA\", \"positive\": 1063.0, \"negative\": 10424.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"22cfcbb820f66309386b4bdfdf47a806dd894a62\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 20.0, \"hospitalized\": null, \"total\": 11487, \"totalTestResults\": 11487, \"posNeg\": 11487, \"fips\": 6, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1637.0, \"positiveIncrease\": 139.0, \"totalTestResultsIncrease\": 1776.0, \"ratio\": 0.092539392356577, \"sinceDay0\": 3}, {\"index\": 733, \"date\": \"2020-03-21T00:00:00\", \"state\": \"CA\", \"positive\": 1279.0, \"negative\": 11249.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"49c4e45a8661e84906ca87575ab8d30e7c494b6c\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 24.0, \"hospitalized\": null, \"total\": 12528, \"totalTestResults\": 12528, \"posNeg\": 12528, \"fips\": 6, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 825.0, \"positiveIncrease\": 216.0, \"totalTestResultsIncrease\": 1041.0, \"ratio\": 0.10209131545338442, \"sinceDay0\": 4}, {\"index\": 677, \"date\": \"2020-03-22T00:00:00\", \"state\": \"CA\", \"positive\": 1536.0, \"negative\": 11304.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"894c0795f019e9dad5fb2ea4b76464bd93ca011e\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 27.0, \"hospitalized\": null, \"total\": 12840, \"totalTestResults\": 12840, \"posNeg\": 12840, \"fips\": 6, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 55.0, \"positiveIncrease\": 257.0, \"totalTestResultsIncrease\": 312.0, \"ratio\": 0.11962616822429907, \"sinceDay0\": 5}, {\"index\": 621, \"date\": \"2020-03-23T00:00:00\", \"state\": \"CA\", \"positive\": 1733.0, \"negative\": 12567.0, \"pending\": 12100.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"71c982ee815f7305f8cc4c93014774584620fa5f\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 27.0, \"hospitalized\": null, \"total\": 26400, \"totalTestResults\": 14300, \"posNeg\": 14300, \"fips\": 6, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1263.0, \"positiveIncrease\": 197.0, \"totalTestResultsIncrease\": 1460.0, \"ratio\": 0.0656439393939394, \"sinceDay0\": 6}, {\"index\": 565, \"date\": \"2020-03-24T00:00:00\", \"state\": \"CA\", \"positive\": 2102.0, \"negative\": 13452.0, \"pending\": 12100.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"de4019ee1e7e99d093947ecd2a91c6093439f221\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 40.0, \"hospitalized\": null, \"total\": 27654, \"totalTestResults\": 15554, \"posNeg\": 15554, \"fips\": 6, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 885.0, \"positiveIncrease\": 369.0, \"totalTestResultsIncrease\": 1254.0, \"ratio\": 0.0760107036956679, \"sinceDay0\": 7}, {\"index\": 509, \"date\": \"2020-03-25T00:00:00\", \"state\": \"CA\", \"positive\": 2355.0, \"negative\": 15921.0, \"pending\": 48600.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8d9cf944b6bf56c413644ce7729ef18efa3d75a0\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 53.0, \"hospitalized\": null, \"total\": 66876, \"totalTestResults\": 18276, \"posNeg\": 18276, \"fips\": 6, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2469.0, \"positiveIncrease\": 253.0, \"totalTestResultsIncrease\": 2722.0, \"ratio\": 0.03521442670016149, \"sinceDay0\": 8}, {\"index\": 453, \"date\": \"2020-03-26T00:00:00\", \"state\": \"CA\", \"positive\": 3006.0, \"negative\": 17380.0, \"pending\": 57400.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d073989819811eaa4edd1a4f71a3716c44b653ac\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 65.0, \"hospitalized\": null, \"total\": 77786, \"totalTestResults\": 20386, \"posNeg\": 20386, \"fips\": 6, \"deathIncrease\": 12.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1459.0, \"positiveIncrease\": 651.0, \"totalTestResultsIncrease\": 2110.0, \"ratio\": 0.038644486154320826, \"sinceDay0\": 9}, {\"index\": 397, \"date\": \"2020-03-27T00:00:00\", \"state\": \"CA\", \"positive\": 3879.0, \"negative\": 17380.0, \"pending\": 57400.0, \"hospitalizedCurrently\": 746.0, \"hospitalizedCumulative\": 746.0, \"inIcuCurrently\": 200.0, \"inIcuCumulative\": 200.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"10bb2a3981dc15348851c537abdb117a3e09d2a3\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 78.0, \"hospitalized\": 746.0, \"total\": 78659, \"totalTestResults\": 21259, \"posNeg\": 21259, \"fips\": 6, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 746.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 873.0, \"totalTestResultsIncrease\": 873.0, \"ratio\": 0.04931412807180361, \"sinceDay0\": 10}, {\"index\": 341, \"date\": \"2020-03-28T00:00:00\", \"state\": \"CA\", \"positive\": 4643.0, \"negative\": 20549.0, \"pending\": 64400.0, \"hospitalizedCurrently\": 1034.0, \"hospitalizedCumulative\": 1034.0, \"inIcuCurrently\": 410.0, \"inIcuCumulative\": 410.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8c30beb89dd131ed8a1aacaa4d70b47e58810777\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 101.0, \"hospitalized\": 1034.0, \"total\": 89592, \"totalTestResults\": 25192, \"posNeg\": 25192, \"fips\": 6, \"deathIncrease\": 23.0, \"hospitalizedIncrease\": 288.0, \"negativeIncrease\": 3169.0, \"positiveIncrease\": 764.0, \"totalTestResultsIncrease\": 3933.0, \"ratio\": 0.051823823555674615, \"sinceDay0\": 11}, {\"index\": 285, \"date\": \"2020-03-29T00:00:00\", \"state\": \"CA\", \"positive\": 5708.0, \"negative\": 20549.0, \"pending\": 64400.0, \"hospitalizedCurrently\": 1034.0, \"hospitalizedCumulative\": 1034.0, \"inIcuCurrently\": 410.0, \"inIcuCumulative\": 410.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1b6fd0782f7e0f6178ea2f83a468c5d2471cc0d7\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 123.0, \"hospitalized\": 1034.0, \"total\": 90657, \"totalTestResults\": 26257, \"posNeg\": 26257, \"fips\": 6, \"deathIncrease\": 22.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 1065.0, \"totalTestResultsIncrease\": 1065.0, \"ratio\": 0.0629625952767023, \"sinceDay0\": 12}, {\"index\": 229, \"date\": \"2020-03-30T00:00:00\", \"state\": \"CA\", \"positive\": 6447.0, \"negative\": 20549.0, \"pending\": 64400.0, \"hospitalizedCurrently\": 1432.0, \"hospitalizedCumulative\": 1432.0, \"inIcuCurrently\": 597.0, \"inIcuCumulative\": 597.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b2fd37c8b374d544e8f30c2b619be88799980737\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 133.0, \"hospitalized\": 1432.0, \"total\": 91396, \"totalTestResults\": 26996, \"posNeg\": 26996, \"fips\": 6, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 398.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 739.0, \"totalTestResultsIncrease\": 739.0, \"ratio\": 0.07053919208718105, \"sinceDay0\": 13}, {\"index\": 173, \"date\": \"2020-03-31T00:00:00\", \"state\": \"CA\", \"positive\": 7482.0, \"negative\": 21772.0, \"pending\": 57400.0, \"hospitalizedCurrently\": 1617.0, \"hospitalizedCumulative\": 1617.0, \"inIcuCurrently\": 657.0, \"inIcuCumulative\": 657.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8aa120a4c2d14e4da8b37e1148edb1eec68c9797\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 153.0, \"hospitalized\": 1617.0, \"total\": 86654, \"totalTestResults\": 29254, \"posNeg\": 29254, \"fips\": 6, \"deathIncrease\": 20.0, \"hospitalizedIncrease\": 185.0, \"negativeIncrease\": 1223.0, \"positiveIncrease\": 1035.0, \"totalTestResultsIncrease\": 2258.0, \"ratio\": 0.08634338864911026, \"sinceDay0\": 14}, {\"index\": 117, \"date\": \"2020-04-01T00:00:00\", \"state\": \"CA\", \"positive\": 8155.0, \"negative\": 21772.0, \"pending\": 57400.0, \"hospitalizedCurrently\": 1855.0, \"hospitalizedCumulative\": 1855.0, \"inIcuCurrently\": 774.0, \"inIcuCumulative\": 774.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"6fb93efce94c15c30e753005c45c7b45e390198c\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 171.0, \"hospitalized\": 1855.0, \"total\": 87327, \"totalTestResults\": 29927, \"posNeg\": 29927, \"fips\": 6, \"deathIncrease\": 18.0, \"hospitalizedIncrease\": 238.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 673.0, \"totalTestResultsIncrease\": 673.0, \"ratio\": 0.09338463476358973, \"sinceDay0\": 15}, {\"index\": 61, \"date\": \"2020-04-02T00:00:00\", \"state\": \"CA\", \"positive\": 9191.0, \"negative\": 23809.0, \"pending\": 59500.0, \"hospitalizedCurrently\": 1922.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": 816.0, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"99877fe91b05bb13daef3f63c02c50d2a271e7f5\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 203.0, \"hospitalized\": null, \"total\": 92500, \"totalTestResults\": 33000, \"posNeg\": 33000, \"fips\": 6, \"deathIncrease\": 32.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2037.0, \"positiveIncrease\": 1036.0, \"totalTestResultsIncrease\": 3073.0, \"ratio\": 0.09936216216216216, \"sinceDay0\": 16}, {\"index\": 5, \"date\": \"2020-04-03T00:00:00\", \"state\": \"CA\", \"positive\": 10701.0, \"negative\": 24599.0, \"pending\": 59500.0, \"hospitalizedCurrently\": 2188.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": 901.0, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"67f105bfa3690e07b85e362a0c6c43aa796aba45\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 237.0, \"hospitalized\": null, \"total\": 94800, \"totalTestResults\": 35300, \"posNeg\": 35300, \"fips\": 6, \"deathIncrease\": 34.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 790.0, \"positiveIncrease\": 1510.0, \"totalTestResultsIncrease\": 2300.0, \"ratio\": 0.11287974683544304, \"sinceDay0\": 17}, {\"index\": 510, \"date\": \"2020-03-25T00:00:00\", \"state\": \"CO\", \"positive\": 912.0, \"negative\": 6789.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 84.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8c313a278c9f6cf6f983d33ae981c70da8f94b76\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 11.0, \"hospitalized\": 84.0, \"total\": 7701, \"totalTestResults\": 7701, \"posNeg\": 7701, \"fips\": 8, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 12.0, \"negativeIncrease\": 1285.0, \"positiveIncrease\": 192.0, \"totalTestResultsIncrease\": 1477.0, \"ratio\": 0.11842617841838722, \"sinceDay0\": 0}, {\"index\": 454, \"date\": \"2020-03-26T00:00:00\", \"state\": \"CO\", \"positive\": 1086.0, \"negative\": 6978.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 148.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"cbe89fafefaf1d9173be314f959f33e567cf4dd2\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 19.0, \"hospitalized\": 148.0, \"total\": 8064, \"totalTestResults\": 8064, \"posNeg\": 8064, \"fips\": 8, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 64.0, \"negativeIncrease\": 189.0, \"positiveIncrease\": 174.0, \"totalTestResultsIncrease\": 363.0, \"ratio\": 0.13467261904761904, \"sinceDay0\": 1}, {\"index\": 398, \"date\": \"2020-03-27T00:00:00\", \"state\": \"CO\", \"positive\": 1430.0, \"negative\": 8692.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 184.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9429f394429920c07d58b96d744275aaed7bb88b\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 24.0, \"hospitalized\": 184.0, \"total\": 10122, \"totalTestResults\": 10122, \"posNeg\": 10122, \"fips\": 8, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 36.0, \"negativeIncrease\": 1714.0, \"positiveIncrease\": 344.0, \"totalTestResultsIncrease\": 2058.0, \"ratio\": 0.14127642758348152, \"sinceDay0\": 2}, {\"index\": 342, \"date\": \"2020-03-28T00:00:00\", \"state\": \"CO\", \"positive\": 1734.0, \"negative\": 9942.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 239.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"037a22a41313b25a40b92f4113fa04f784d3b5c1\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 31.0, \"hospitalized\": 239.0, \"total\": 11676, \"totalTestResults\": 11676, \"posNeg\": 11676, \"fips\": 8, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 55.0, \"negativeIncrease\": 1250.0, \"positiveIncrease\": 304.0, \"totalTestResultsIncrease\": 1554.0, \"ratio\": 0.1485097636176773, \"sinceDay0\": 3}, {\"index\": 286, \"date\": \"2020-03-29T00:00:00\", \"state\": \"CO\", \"positive\": 2061.0, \"negative\": 11215.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 274.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"73715d6db63053b6e3b672daf90f74bd2164eef6\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 44.0, \"hospitalized\": 274.0, \"total\": 13276, \"totalTestResults\": 13276, \"posNeg\": 13276, \"fips\": 8, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 35.0, \"negativeIncrease\": 1273.0, \"positiveIncrease\": 327.0, \"totalTestResultsIncrease\": 1600.0, \"ratio\": 0.15524254293461887, \"sinceDay0\": 4}, {\"index\": 230, \"date\": \"2020-03-30T00:00:00\", \"state\": \"CO\", \"positive\": 2627.0, \"negative\": 12737.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 414.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"2f09674b8bfb4f141d2ef246cfc410dd972a1efc\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 51.0, \"hospitalized\": 414.0, \"total\": 15364, \"totalTestResults\": 15364, \"posNeg\": 15364, \"fips\": 8, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 140.0, \"negativeIncrease\": 1522.0, \"positiveIncrease\": 566.0, \"totalTestResultsIncrease\": 2088.0, \"ratio\": 0.17098411871908356, \"sinceDay0\": 5}, {\"index\": 174, \"date\": \"2020-03-31T00:00:00\", \"state\": \"CO\", \"positive\": 2627.0, \"negative\": 12737.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 414.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"94036534fc5ae0cbc3e63e2576bdb553dda374c1\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 51.0, \"hospitalized\": 414.0, \"total\": 15364, \"totalTestResults\": 15364, \"posNeg\": 15364, \"fips\": 8, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.17098411871908356, \"sinceDay0\": 6}, {\"index\": 118, \"date\": \"2020-04-01T00:00:00\", \"state\": \"CO\", \"positive\": 2966.0, \"negative\": 13883.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 509.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a3ee849de14da82b70a71d32f063b1237b9dff2b\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 69.0, \"hospitalized\": 509.0, \"total\": 16849, \"totalTestResults\": 16849, \"posNeg\": 16849, \"fips\": 8, \"deathIncrease\": 18.0, \"hospitalizedIncrease\": 95.0, \"negativeIncrease\": 1146.0, \"positiveIncrease\": 339.0, \"totalTestResultsIncrease\": 1485.0, \"ratio\": 0.17603418600510415, \"sinceDay0\": 7}, {\"index\": 62, \"date\": \"2020-04-02T00:00:00\", \"state\": \"CO\", \"positive\": 3342.0, \"negative\": 15303.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 620.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"87f72739eeb827250a64fd310d95871229e9020f\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 80.0, \"hospitalized\": 620.0, \"total\": 18645, \"totalTestResults\": 18645, \"posNeg\": 18645, \"fips\": 8, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 111.0, \"negativeIncrease\": 1420.0, \"positiveIncrease\": 376.0, \"totalTestResultsIncrease\": 1796.0, \"ratio\": 0.17924376508447304, \"sinceDay0\": 8}, {\"index\": 6, \"date\": \"2020-04-03T00:00:00\", \"state\": \"CO\", \"positive\": 3728.0, \"negative\": 16683.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 710.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"34cd672827b7383da28377a0761440041fae9232\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 97.0, \"hospitalized\": 710.0, \"total\": 20411, \"totalTestResults\": 20411, \"posNeg\": 20411, \"fips\": 8, \"deathIncrease\": 17.0, \"hospitalizedIncrease\": 90.0, \"negativeIncrease\": 1380.0, \"positiveIncrease\": 386.0, \"totalTestResultsIncrease\": 1766.0, \"ratio\": 0.18264661212091518, \"sinceDay0\": 9}, {\"index\": 623, \"date\": \"2020-03-23T00:00:00\", \"state\": \"CT\", \"positive\": 415.0, \"negative\": 4085.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 54.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"2518c62f7473aa16f7d4006600fa46f294a5365e\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 10.0, \"hospitalized\": 54.0, \"total\": 4500, \"totalTestResults\": 4500, \"posNeg\": 4500, \"fips\": 9, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 11.0, \"negativeIncrease\": 1208.0, \"positiveIncrease\": 192.0, \"totalTestResultsIncrease\": 1400.0, \"ratio\": 0.09222222222222222, \"sinceDay0\": 0}, {\"index\": 567, \"date\": \"2020-03-24T00:00:00\", \"state\": \"CT\", \"positive\": 618.0, \"negative\": 4682.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 71.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"612d0cb8b3d8f54b99ab9aeb2e9cfd65b7f5e923\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 12.0, \"hospitalized\": 71.0, \"total\": 5300, \"totalTestResults\": 5300, \"posNeg\": 5300, \"fips\": 9, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 17.0, \"negativeIncrease\": 597.0, \"positiveIncrease\": 203.0, \"totalTestResultsIncrease\": 800.0, \"ratio\": 0.11660377358490566, \"sinceDay0\": 1}, {\"index\": 511, \"date\": \"2020-03-25T00:00:00\", \"state\": \"CT\", \"positive\": 875.0, \"negative\": 5023.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 113.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"7fd69cdd6c25f9c6b2da4c3feb12f0ac36c44c16\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 19.0, \"hospitalized\": 113.0, \"total\": 5898, \"totalTestResults\": 5898, \"posNeg\": 5898, \"fips\": 9, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 42.0, \"negativeIncrease\": 341.0, \"positiveIncrease\": 257.0, \"totalTestResultsIncrease\": 598.0, \"ratio\": 0.14835537470328924, \"sinceDay0\": 2}, {\"index\": 455, \"date\": \"2020-03-26T00:00:00\", \"state\": \"CT\", \"positive\": 1012.0, \"negative\": 5625.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 125.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"051ee3a0ff5962ca5aa0f29cad1950bc8408c88a\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 21.0, \"hospitalized\": 125.0, \"total\": 6637, \"totalTestResults\": 6637, \"posNeg\": 6637, \"fips\": 9, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 12.0, \"negativeIncrease\": 602.0, \"positiveIncrease\": 137.0, \"totalTestResultsIncrease\": 739.0, \"ratio\": 0.15247852945607956, \"sinceDay0\": 3}, {\"index\": 399, \"date\": \"2020-03-27T00:00:00\", \"state\": \"CT\", \"positive\": 1291.0, \"negative\": 7109.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 173.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"3c8514200b49122389594ce0362801f8667bfc67\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 27.0, \"hospitalized\": 173.0, \"total\": 8400, \"totalTestResults\": 8400, \"posNeg\": 8400, \"fips\": 9, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 48.0, \"negativeIncrease\": 1484.0, \"positiveIncrease\": 279.0, \"totalTestResultsIncrease\": 1763.0, \"ratio\": 0.15369047619047618, \"sinceDay0\": 4}, {\"index\": 343, \"date\": \"2020-03-28T00:00:00\", \"state\": \"CT\", \"positive\": 1291.0, \"negative\": 7109.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 173.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"86371e1868776142a360e113c0677d283d829a84\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 27.0, \"hospitalized\": 173.0, \"total\": 8400, \"totalTestResults\": 8400, \"posNeg\": 8400, \"fips\": 9, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.15369047619047618, \"sinceDay0\": 5}, {\"index\": 287, \"date\": \"2020-03-29T00:00:00\", \"state\": \"CT\", \"positive\": 1993.0, \"negative\": 9907.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 404.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"81670eca1c3cba6fb7e9c07bec78ea6eeba53e4e\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 34.0, \"hospitalized\": 404.0, \"total\": 11900, \"totalTestResults\": 11900, \"posNeg\": 11900, \"fips\": 9, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 231.0, \"negativeIncrease\": 2798.0, \"positiveIncrease\": 702.0, \"totalTestResultsIncrease\": 3500.0, \"ratio\": 0.16747899159663865, \"sinceDay0\": 6}, {\"index\": 231, \"date\": \"2020-03-30T00:00:00\", \"state\": \"CT\", \"positive\": 2571.0, \"negative\": 12029.0, \"pending\": null, \"hospitalizedCurrently\": 517.0, \"hospitalizedCumulative\": 517.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d485d42512127c98051f824a384ea55685212a39\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 36.0, \"hospitalized\": 517.0, \"total\": 14600, \"totalTestResults\": 14600, \"posNeg\": 14600, \"fips\": 9, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 113.0, \"negativeIncrease\": 2122.0, \"positiveIncrease\": 578.0, \"totalTestResultsIncrease\": 2700.0, \"ratio\": 0.1760958904109589, \"sinceDay0\": 7}, {\"index\": 175, \"date\": \"2020-03-31T00:00:00\", \"state\": \"CT\", \"positive\": 3128.0, \"negative\": 13029.0, \"pending\": null, \"hospitalizedCurrently\": 608.0, \"hospitalizedCumulative\": 608.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"cc7f9b9641974587a09bd4816bc59a78cd471641\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 69.0, \"hospitalized\": 608.0, \"total\": 16157, \"totalTestResults\": 16157, \"posNeg\": 16157, \"fips\": 9, \"deathIncrease\": 33.0, \"hospitalizedIncrease\": 91.0, \"negativeIncrease\": 1000.0, \"positiveIncrease\": 557.0, \"totalTestResultsIncrease\": 1557.0, \"ratio\": 0.19360029708485485, \"sinceDay0\": 8}, {\"index\": 119, \"date\": \"2020-04-01T00:00:00\", \"state\": \"CT\", \"positive\": 3557.0, \"negative\": 13043.0, \"pending\": null, \"hospitalizedCurrently\": 766.0, \"hospitalizedCumulative\": 766.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f749f0110af60be2bb7eda83cf543c95cfbfac5d\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 85.0, \"hospitalized\": 766.0, \"total\": 16600, \"totalTestResults\": 16600, \"posNeg\": 16600, \"fips\": 9, \"deathIncrease\": 16.0, \"hospitalizedIncrease\": 158.0, \"negativeIncrease\": 14.0, \"positiveIncrease\": 429.0, \"totalTestResultsIncrease\": 443.0, \"ratio\": 0.21427710843373493, \"sinceDay0\": 9}, {\"index\": 63, \"date\": \"2020-04-02T00:00:00\", \"state\": \"CT\", \"positive\": 3824.0, \"negative\": 14476.0, \"pending\": null, \"hospitalizedCurrently\": 827.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"bbaf84bc79e98252465e76199b3d66cb58316223\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 112.0, \"hospitalized\": null, \"total\": 18300, \"totalTestResults\": 18300, \"posNeg\": 18300, \"fips\": 9, \"deathIncrease\": 27.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1433.0, \"positiveIncrease\": 267.0, \"totalTestResultsIncrease\": 1700.0, \"ratio\": 0.20896174863387978, \"sinceDay0\": 10}, {\"index\": 7, \"date\": \"2020-04-03T00:00:00\", \"state\": \"CT\", \"positive\": 4914.0, \"negative\": 15101.0, \"pending\": null, \"hospitalizedCurrently\": 909.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1951d0ca03e6ab2d9bffc4856b060402c69ea7e6\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 131.0, \"hospitalized\": null, \"total\": 20015, \"totalTestResults\": 20015, \"posNeg\": 20015, \"fips\": 9, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 625.0, \"positiveIncrease\": 1090.0, \"totalTestResultsIncrease\": 1715.0, \"ratio\": 0.24551586310267298, \"sinceDay0\": 11}, {\"index\": 120, \"date\": \"2020-04-01T00:00:00\", \"state\": \"DC\", \"positive\": 586.0, \"negative\": 3262.0, \"pending\": 2.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 142.0, \"hash\": \"8a7aef6408b5c008467ada52ef83bc9e47d8af28\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 11.0, \"hospitalized\": null, \"total\": 3850, \"totalTestResults\": 3848, \"posNeg\": 3848, \"fips\": 11, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 91.0, \"totalTestResultsIncrease\": 91.0, \"ratio\": 0.1522077922077922, \"sinceDay0\": 0}, {\"index\": 64, \"date\": \"2020-04-02T00:00:00\", \"state\": \"DC\", \"positive\": 653.0, \"negative\": 4417.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 173.0, \"hash\": \"bb0f0a7da39336cefc7629d9814ca0bd2a83e358\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 5070, \"totalTestResults\": 5070, \"posNeg\": 5070, \"fips\": 11, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1155.0, \"positiveIncrease\": 67.0, \"totalTestResultsIncrease\": 1222.0, \"ratio\": 0.12879684418145956, \"sinceDay0\": 1}, {\"index\": 8, \"date\": \"2020-04-03T00:00:00\", \"state\": \"DC\", \"positive\": 757.0, \"negative\": 4827.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 206.0, \"hash\": \"fbf3f83530b301cee1d7dc47fd0719b435edc428\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 15.0, \"hospitalized\": null, \"total\": 5584, \"totalTestResults\": 5584, \"posNeg\": 5584, \"fips\": 11, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 410.0, \"positiveIncrease\": 104.0, \"totalTestResultsIncrease\": 514.0, \"ratio\": 0.13556590257879655, \"sinceDay0\": 2}, {\"index\": 177, \"date\": \"2020-03-31T00:00:00\", \"state\": \"DE\", \"positive\": 319.0, \"negative\": 3696.0, \"pending\": null, \"hospitalizedCurrently\": 57.0, \"hospitalizedCumulative\": 64.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 22.0, \"hash\": \"0c6d62603ac04630bbfa9dc6e129f4f9d58307d5\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 10.0, \"hospitalized\": 64.0, \"total\": 4015, \"totalTestResults\": 4015, \"posNeg\": 4015, \"fips\": 10, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 19.0, \"negativeIncrease\": 1480.0, \"positiveIncrease\": 55.0, \"totalTestResultsIncrease\": 1535.0, \"ratio\": 0.07945205479452055, \"sinceDay0\": 0}, {\"index\": 121, \"date\": \"2020-04-01T00:00:00\", \"state\": \"DE\", \"positive\": 368.0, \"negative\": 4015.0, \"pending\": null, \"hospitalizedCurrently\": 51.0, \"hospitalizedCumulative\": 57.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 49.0, \"hash\": \"baa25d2006bd8abfc80790eac0381985836fa4f4\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 11.0, \"hospitalized\": 57.0, \"total\": 4383, \"totalTestResults\": 4383, \"posNeg\": 4383, \"fips\": 10, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": -7.0, \"negativeIncrease\": 319.0, \"positiveIncrease\": 49.0, \"totalTestResultsIncrease\": 368.0, \"ratio\": 0.0839607574720511, \"sinceDay0\": 1}, {\"index\": 65, \"date\": \"2020-04-02T00:00:00\", \"state\": \"DE\", \"positive\": 393.0, \"negative\": 4566.0, \"pending\": null, \"hospitalizedCurrently\": 56.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 49.0, \"hash\": \"ed433f1aae9fc98fb0f7510f5bbd3f0bd9cdf5ab\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 4959, \"totalTestResults\": 4959, \"posNeg\": 4959, \"fips\": 10, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 551.0, \"positiveIncrease\": 25.0, \"totalTestResultsIncrease\": 576.0, \"ratio\": 0.07924984875983061, \"sinceDay0\": 2}, {\"index\": 9, \"date\": \"2020-04-03T00:00:00\", \"state\": \"DE\", \"positive\": 450.0, \"negative\": 4995.0, \"pending\": null, \"hospitalizedCurrently\": 63.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 71.0, \"hash\": \"b840b5921e6e7a1adc67cdefd1c22f4e046d277a\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 14.0, \"hospitalized\": null, \"total\": 5445, \"totalTestResults\": 5445, \"posNeg\": 5445, \"fips\": 10, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 429.0, \"positiveIncrease\": 57.0, \"totalTestResultsIncrease\": 486.0, \"ratio\": 0.08264462809917356, \"sinceDay0\": 3}, {\"index\": 794, \"date\": \"2020-03-20T00:00:00\", \"state\": \"FL\", \"positive\": 520.0, \"negative\": 1870.0, \"pending\": 1026.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"18f30f4aef61df1aa3a4a339482c5ad20ea478ed\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 10.0, \"hospitalized\": null, \"total\": 3416, \"totalTestResults\": 2390, \"posNeg\": 2390, \"fips\": 12, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 337.0, \"positiveIncrease\": 130.0, \"totalTestResultsIncrease\": 467.0, \"ratio\": 0.1522248243559719, \"sinceDay0\": 0}, {\"index\": 738, \"date\": \"2020-03-21T00:00:00\", \"state\": \"FL\", \"positive\": 658.0, \"negative\": 6579.0, \"pending\": 1002.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 158.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9fcedaea4a2b5e2daad7c2ef3cae3d7c4a66d46c\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 12.0, \"hospitalized\": 158.0, \"total\": 8239, \"totalTestResults\": 7237, \"posNeg\": 7237, \"fips\": 12, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 158.0, \"negativeIncrease\": 4709.0, \"positiveIncrease\": 138.0, \"totalTestResultsIncrease\": 4847.0, \"ratio\": 0.07986406117247238, \"sinceDay0\": 1}, {\"index\": 682, \"date\": \"2020-03-22T00:00:00\", \"state\": \"FL\", \"positive\": 830.0, \"negative\": 7990.0, \"pending\": 963.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 185.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4e90c613758e8eb9c13d69d3d68c462bba4cb68f\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 13.0, \"hospitalized\": 185.0, \"total\": 9783, \"totalTestResults\": 8820, \"posNeg\": 8820, \"fips\": 12, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 27.0, \"negativeIncrease\": 1411.0, \"positiveIncrease\": 172.0, \"totalTestResultsIncrease\": 1583.0, \"ratio\": 0.08484105080241235, \"sinceDay0\": 2}, {\"index\": 626, \"date\": \"2020-03-23T00:00:00\", \"state\": \"FL\", \"positive\": 1171.0, \"negative\": 11063.0, \"pending\": 860.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 217.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"fefea265e78e4106c70c1907bee630dd8b5d76ad\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 14.0, \"hospitalized\": 217.0, \"total\": 13094, \"totalTestResults\": 12234, \"posNeg\": 12234, \"fips\": 12, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 32.0, \"negativeIncrease\": 3073.0, \"positiveIncrease\": 341.0, \"totalTestResultsIncrease\": 3414.0, \"ratio\": 0.08943027340766764, \"sinceDay0\": 3}, {\"index\": 570, \"date\": \"2020-03-24T00:00:00\", \"state\": \"FL\", \"positive\": 1412.0, \"negative\": 13127.0, \"pending\": 1008.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 259.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"01f224778b595c53a53b114c66966c5987214220\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 18.0, \"hospitalized\": 259.0, \"total\": 15547, \"totalTestResults\": 14539, \"posNeg\": 14539, \"fips\": 12, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 42.0, \"negativeIncrease\": 2064.0, \"positiveIncrease\": 241.0, \"totalTestResultsIncrease\": 2305.0, \"ratio\": 0.09082138033061041, \"sinceDay0\": 4}, {\"index\": 514, \"date\": \"2020-03-25T00:00:00\", \"state\": \"FL\", \"positive\": 1682.0, \"negative\": 15374.0, \"pending\": 1233.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 316.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"3824a66b112cf25a03e7e1701dc1af01026bd711\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 22.0, \"hospitalized\": 316.0, \"total\": 18289, \"totalTestResults\": 17056, \"posNeg\": 17056, \"fips\": 12, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 57.0, \"negativeIncrease\": 2247.0, \"positiveIncrease\": 270.0, \"totalTestResultsIncrease\": 2517.0, \"ratio\": 0.09196784952703811, \"sinceDay0\": 5}, {\"index\": 458, \"date\": \"2020-03-26T00:00:00\", \"state\": \"FL\", \"positive\": 2355.0, \"negative\": 23741.0, \"pending\": 1443.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 406.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1290ba6a489ffe158fa4333c279e73b7c728543e\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 28.0, \"hospitalized\": 406.0, \"total\": 27539, \"totalTestResults\": 26096, \"posNeg\": 26096, \"fips\": 12, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 90.0, \"negativeIncrease\": 8367.0, \"positiveIncrease\": 673.0, \"totalTestResultsIncrease\": 9040.0, \"ratio\": 0.08551508769381604, \"sinceDay0\": 6}, {\"index\": 402, \"date\": \"2020-03-27T00:00:00\", \"state\": \"FL\", \"positive\": 2765.0, \"negative\": 28186.0, \"pending\": 1517.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 456.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b93ab29f799aa9d89c0f98c7f427278725445572\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 34.0, \"hospitalized\": 456.0, \"total\": 32468, \"totalTestResults\": 30951, \"posNeg\": 30951, \"fips\": 12, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 50.0, \"negativeIncrease\": 4445.0, \"positiveIncrease\": 410.0, \"totalTestResultsIncrease\": 4855.0, \"ratio\": 0.08516077368485894, \"sinceDay0\": 7}, {\"index\": 346, \"date\": \"2020-03-28T00:00:00\", \"state\": \"FL\", \"positive\": 3763.0, \"negative\": 35366.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 526.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"14cf93a61518d7efeec334a7c7fb1c959060c9f8\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 54.0, \"hospitalized\": 526.0, \"total\": 39129, \"totalTestResults\": 39129, \"posNeg\": 39129, \"fips\": 12, \"deathIncrease\": 20.0, \"hospitalizedIncrease\": 70.0, \"negativeIncrease\": 7180.0, \"positiveIncrease\": 998.0, \"totalTestResultsIncrease\": 8178.0, \"ratio\": 0.09616908175521992, \"sinceDay0\": 8}, {\"index\": 290, \"date\": \"2020-03-29T00:00:00\", \"state\": \"FL\", \"positive\": 4246.0, \"negative\": 39070.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 594.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"39553e3ec095e3143e776031465d2e90ade6c787\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 56.0, \"hospitalized\": 594.0, \"total\": 43316, \"totalTestResults\": 43316, \"posNeg\": 43316, \"fips\": 12, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 68.0, \"negativeIncrease\": 3704.0, \"positiveIncrease\": 483.0, \"totalTestResultsIncrease\": 4187.0, \"ratio\": 0.09802382491458121, \"sinceDay0\": 9}, {\"index\": 234, \"date\": \"2020-03-30T00:00:00\", \"state\": \"FL\", \"positive\": 5473.0, \"negative\": 48225.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 652.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9a3e8154ce0eca0c63b55151a437a020a79406e3\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 63.0, \"hospitalized\": 652.0, \"total\": 53698, \"totalTestResults\": 53698, \"posNeg\": 53698, \"fips\": 12, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 58.0, \"negativeIncrease\": 9155.0, \"positiveIncrease\": 1227.0, \"totalTestResultsIncrease\": 10382.0, \"ratio\": 0.10192185928712429, \"sinceDay0\": 10}, {\"index\": 178, \"date\": \"2020-03-31T00:00:00\", \"state\": \"FL\", \"positive\": 6338.0, \"negative\": 54285.0, \"pending\": 1163.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 823.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c0d094c60a3352b108e4b759b45b066bd56cc068\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 77.0, \"hospitalized\": 823.0, \"total\": 61786, \"totalTestResults\": 60623, \"posNeg\": 60623, \"fips\": 12, \"deathIncrease\": 14.0, \"hospitalizedIncrease\": 171.0, \"negativeIncrease\": 6060.0, \"positiveIncrease\": 865.0, \"totalTestResultsIncrease\": 6925.0, \"ratio\": 0.10257987246301752, \"sinceDay0\": 11}, {\"index\": 122, \"date\": \"2020-04-01T00:00:00\", \"state\": \"FL\", \"positive\": 6955.0, \"negative\": 59529.0, \"pending\": 1235.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 949.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d9a24f33db59e2a7276a3019ee2e37f41f9bfb06\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 87.0, \"hospitalized\": 949.0, \"total\": 67719, \"totalTestResults\": 66484, \"posNeg\": 66484, \"fips\": 12, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 126.0, \"negativeIncrease\": 5244.0, \"positiveIncrease\": 617.0, \"totalTestResultsIncrease\": 5861.0, \"ratio\": 0.10270382019817186, \"sinceDay0\": 12}, {\"index\": 66, \"date\": \"2020-04-02T00:00:00\", \"state\": \"FL\", \"positive\": 8010.0, \"negative\": 69286.0, \"pending\": 1285.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1123.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"174161bf2644248219c4f77323f7aa378fc8d409\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 128.0, \"hospitalized\": 1123.0, \"total\": 78581, \"totalTestResults\": 77296, \"posNeg\": 77296, \"fips\": 12, \"deathIncrease\": 41.0, \"hospitalizedIncrease\": 174.0, \"negativeIncrease\": 9757.0, \"positiveIncrease\": 1055.0, \"totalTestResultsIncrease\": 10812.0, \"ratio\": 0.10193303724818976, \"sinceDay0\": 13}, {\"index\": 10, \"date\": \"2020-04-03T00:00:00\", \"state\": \"FL\", \"positive\": 9585.0, \"negative\": 82137.0, \"pending\": 1225.0, \"hospitalizedCurrently\": 1215.0, \"hospitalizedCumulative\": 1287.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"fd0c37309c79ae95c06c48e43ce956652814c5e5\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 163.0, \"hospitalized\": 1287.0, \"total\": 92947, \"totalTestResults\": 91722, \"posNeg\": 91722, \"fips\": 12, \"deathIncrease\": 35.0, \"hospitalizedIncrease\": 164.0, \"negativeIncrease\": 12851.0, \"positiveIncrease\": 1575.0, \"totalTestResultsIncrease\": 14426.0, \"ratio\": 0.10312328531313544, \"sinceDay0\": 14}, {\"index\": 851, \"date\": \"2020-03-19T00:00:00\", \"state\": \"GA\", \"positive\": 287.0, \"negative\": 1544.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5b54c8e2862e3541c6cb2a4a0a6d3fc93891f218\", \"dateChecked\": \"2020-03-19T20:00:00Z\", \"death\": 10.0, \"hospitalized\": null, \"total\": 1831, \"totalTestResults\": 1831, \"posNeg\": 1831, \"fips\": 13, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 233.0, \"positiveIncrease\": 90.0, \"totalTestResultsIncrease\": 323.0, \"ratio\": 0.1567449481157837, \"sinceDay0\": 0}, {\"index\": 795, \"date\": \"2020-03-20T00:00:00\", \"state\": \"GA\", \"positive\": 420.0, \"negative\": 1966.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c1099b472676eb4813360be325975832eeeecc23\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 13.0, \"hospitalized\": null, \"total\": 2386, \"totalTestResults\": 2386, \"posNeg\": 2386, \"fips\": 13, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 422.0, \"positiveIncrease\": 133.0, \"totalTestResultsIncrease\": 555.0, \"ratio\": 0.1760268231349539, \"sinceDay0\": 1}, {\"index\": 739, \"date\": \"2020-03-21T00:00:00\", \"state\": \"GA\", \"positive\": 507.0, \"negative\": 2557.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"fa63ec9c063c79b907568e755be9a52e3851b5e5\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 14.0, \"hospitalized\": null, \"total\": 3064, \"totalTestResults\": 3064, \"posNeg\": 3064, \"fips\": 13, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 591.0, \"positiveIncrease\": 87.0, \"totalTestResultsIncrease\": 678.0, \"ratio\": 0.16546997389033943, \"sinceDay0\": 2}, {\"index\": 683, \"date\": \"2020-03-22T00:00:00\", \"state\": \"GA\", \"positive\": 600.0, \"negative\": 3420.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"69702dd23d01e4995145ae809b89338c1dd848e2\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 23.0, \"hospitalized\": null, \"total\": 4020, \"totalTestResults\": 4020, \"posNeg\": 4020, \"fips\": 13, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 863.0, \"positiveIncrease\": 93.0, \"totalTestResultsIncrease\": 956.0, \"ratio\": 0.14925373134328357, \"sinceDay0\": 3}, {\"index\": 627, \"date\": \"2020-03-23T00:00:00\", \"state\": \"GA\", \"positive\": 772.0, \"negative\": 4297.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0f7832c9c3f96874233ce85032ac2f2d78f66eb8\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 25.0, \"hospitalized\": null, \"total\": 5069, \"totalTestResults\": 5069, \"posNeg\": 5069, \"fips\": 13, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 877.0, \"positiveIncrease\": 172.0, \"totalTestResultsIncrease\": 1049.0, \"ratio\": 0.152298283685145, \"sinceDay0\": 4}, {\"index\": 571, \"date\": \"2020-03-24T00:00:00\", \"state\": \"GA\", \"positive\": 1026.0, \"negative\": 4458.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"837865a88d570829d28bd06b24a4d97e5e901ddb\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 32.0, \"hospitalized\": null, \"total\": 5484, \"totalTestResults\": 5484, \"posNeg\": 5484, \"fips\": 13, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 161.0, \"positiveIncrease\": 254.0, \"totalTestResultsIncrease\": 415.0, \"ratio\": 0.18708971553610504, \"sinceDay0\": 5}, {\"index\": 515, \"date\": \"2020-03-25T00:00:00\", \"state\": \"GA\", \"positive\": 1247.0, \"negative\": 4932.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 394.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0608d7952fefcad2df075352ee28eb32e13426be\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 40.0, \"hospitalized\": 394.0, \"total\": 6179, \"totalTestResults\": 6179, \"posNeg\": 6179, \"fips\": 13, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 394.0, \"negativeIncrease\": 474.0, \"positiveIncrease\": 221.0, \"totalTestResultsIncrease\": 695.0, \"ratio\": 0.20181259103414792, \"sinceDay0\": 6}, {\"index\": 459, \"date\": \"2020-03-26T00:00:00\", \"state\": \"GA\", \"positive\": 1525.0, \"negative\": 7401.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 473.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5bd7f61bc12b4e207e0ceda50e5fe469273a6b44\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 48.0, \"hospitalized\": 473.0, \"total\": 8926, \"totalTestResults\": 8926, \"posNeg\": 8926, \"fips\": 13, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 79.0, \"negativeIncrease\": 2469.0, \"positiveIncrease\": 278.0, \"totalTestResultsIncrease\": 2747.0, \"ratio\": 0.17084920457091643, \"sinceDay0\": 7}, {\"index\": 403, \"date\": \"2020-03-27T00:00:00\", \"state\": \"GA\", \"positive\": 2001.0, \"negative\": 7864.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 566.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b85e11000166a29096d95a7188bd6313144ef7fe\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 64.0, \"hospitalized\": 566.0, \"total\": 9865, \"totalTestResults\": 9865, \"posNeg\": 9865, \"fips\": 13, \"deathIncrease\": 16.0, \"hospitalizedIncrease\": 93.0, \"negativeIncrease\": 463.0, \"positiveIncrease\": 476.0, \"totalTestResultsIncrease\": 939.0, \"ratio\": 0.20283831728332488, \"sinceDay0\": 8}, {\"index\": 347, \"date\": \"2020-03-28T00:00:00\", \"state\": \"GA\", \"positive\": 2366.0, \"negative\": 8685.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 617.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"202f88e65247b72d32891c53d6d6c15fd209d322\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 69.0, \"hospitalized\": 617.0, \"total\": 11051, \"totalTestResults\": 11051, \"posNeg\": 11051, \"fips\": 13, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 51.0, \"negativeIncrease\": 821.0, \"positiveIncrease\": 365.0, \"totalTestResultsIncrease\": 1186.0, \"ratio\": 0.21409827164962447, \"sinceDay0\": 9}, {\"index\": 291, \"date\": \"2020-03-29T00:00:00\", \"state\": \"GA\", \"positive\": 2651.0, \"negative\": 9913.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 666.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8fd5124a5d60c405bdada62747c232a41e2f9111\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 80.0, \"hospitalized\": 666.0, \"total\": 12564, \"totalTestResults\": 12564, \"posNeg\": 12564, \"fips\": 13, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 49.0, \"negativeIncrease\": 1228.0, \"positiveIncrease\": 285.0, \"totalTestResultsIncrease\": 1513.0, \"ratio\": 0.21099968163005411, \"sinceDay0\": 10}, {\"index\": 235, \"date\": \"2020-03-30T00:00:00\", \"state\": \"GA\", \"positive\": 2809.0, \"negative\": 9915.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 707.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"25ceba85ecebfa065b3994c5a0511a721902a2a5\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 87.0, \"hospitalized\": 707.0, \"total\": 12724, \"totalTestResults\": 12724, \"posNeg\": 12724, \"fips\": 13, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 41.0, \"negativeIncrease\": 2.0, \"positiveIncrease\": 158.0, \"totalTestResultsIncrease\": 160.0, \"ratio\": 0.2207639107198994, \"sinceDay0\": 11}, {\"index\": 179, \"date\": \"2020-03-31T00:00:00\", \"state\": \"GA\", \"positive\": 3929.0, \"negative\": 12252.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 833.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"59e2183e84ee35f0e1c3432ef7380d6b2ba4f740\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 111.0, \"hospitalized\": 833.0, \"total\": 16181, \"totalTestResults\": 16181, \"posNeg\": 16181, \"fips\": 13, \"deathIncrease\": 24.0, \"hospitalizedIncrease\": 126.0, \"negativeIncrease\": 2337.0, \"positiveIncrease\": 1120.0, \"totalTestResultsIncrease\": 3457.0, \"ratio\": 0.24281564798220134, \"sinceDay0\": 12}, {\"index\": 123, \"date\": \"2020-04-01T00:00:00\", \"state\": \"GA\", \"positive\": 4638.0, \"negative\": 15688.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 952.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d6147a1075561f5d68ac98a7cb4dedb3e75bcd4c\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 139.0, \"hospitalized\": 952.0, \"total\": 20326, \"totalTestResults\": 20326, \"posNeg\": 20326, \"fips\": 13, \"deathIncrease\": 28.0, \"hospitalizedIncrease\": 119.0, \"negativeIncrease\": 3436.0, \"positiveIncrease\": 709.0, \"totalTestResultsIncrease\": 4145.0, \"ratio\": 0.22818065531831153, \"sinceDay0\": 13}, {\"index\": 67, \"date\": \"2020-04-02T00:00:00\", \"state\": \"GA\", \"positive\": 5348.0, \"negative\": 17609.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1056.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"15b36e0f73598e9edefa4eb26b735231587f472d\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 163.0, \"hospitalized\": 1056.0, \"total\": 22957, \"totalTestResults\": 22957, \"posNeg\": 22957, \"fips\": 13, \"deathIncrease\": 24.0, \"hospitalizedIncrease\": 104.0, \"negativeIncrease\": 1921.0, \"positiveIncrease\": 710.0, \"totalTestResultsIncrease\": 2631.0, \"ratio\": 0.2329572679357059, \"sinceDay0\": 14}, {\"index\": 11, \"date\": \"2020-04-03T00:00:00\", \"state\": \"GA\", \"positive\": 5831.0, \"negative\": 19434.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1158.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c82f88637af7d0c85b2360390bb2386b0da43065\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 184.0, \"hospitalized\": 1158.0, \"total\": 25265, \"totalTestResults\": 25265, \"posNeg\": 25265, \"fips\": 13, \"deathIncrease\": 21.0, \"hospitalizedIncrease\": 102.0, \"negativeIncrease\": 1825.0, \"positiveIncrease\": 483.0, \"totalTestResultsIncrease\": 2308.0, \"ratio\": 0.23079358796754404, \"sinceDay0\": 15}, {\"index\": 70, \"date\": \"2020-04-02T00:00:00\", \"state\": \"IA\", \"positive\": 614.0, \"negative\": 8054.0, \"pending\": null, \"hospitalizedCurrently\": 74.0, \"hospitalizedCumulative\": 120.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 46.0, \"hash\": \"1f5c0a22d84a29b633b8b5a1fd1154e5b7a69bd9\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 11.0, \"hospitalized\": 120.0, \"total\": 8668, \"totalTestResults\": 8668, \"posNeg\": 8668, \"fips\": 19, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 21.0, \"negativeIncrease\": 750.0, \"positiveIncrease\": 65.0, \"totalTestResultsIncrease\": 815.0, \"ratio\": 0.07083525611444393, \"sinceDay0\": 0}, {\"index\": 14, \"date\": \"2020-04-03T00:00:00\", \"state\": \"IA\", \"positive\": 699.0, \"negative\": 8754.0, \"pending\": null, \"hospitalizedCurrently\": 80.0, \"hospitalizedCumulative\": 138.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 188.0, \"hash\": \"feb894b5b255cf3a6496c9856b448a6307f9b022\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 11.0, \"hospitalized\": 138.0, \"total\": 9453, \"totalTestResults\": 9453, \"posNeg\": 9453, \"fips\": 19, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 18.0, \"negativeIncrease\": 700.0, \"positiveIncrease\": 85.0, \"totalTestResultsIncrease\": 785.0, \"ratio\": 0.07394477943509997, \"sinceDay0\": 1}, {\"index\": 632, \"date\": \"2020-03-23T00:00:00\", \"state\": \"IL\", \"positive\": 1273.0, \"negative\": 8583.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0d6671c3e7d63029f51e664df09115c8458b7875\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 9856, \"totalTestResults\": 9856, \"posNeg\": 9856, \"fips\": 17, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1312.0, \"positiveIncrease\": 224.0, \"totalTestResultsIncrease\": 1536.0, \"ratio\": 0.1291599025974026, \"sinceDay0\": 0}, {\"index\": 576, \"date\": \"2020-03-24T00:00:00\", \"state\": \"IL\", \"positive\": 1535.0, \"negative\": 9934.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9c757789b4681fc36efffd962d3e75fb4ee6374f\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 16.0, \"hospitalized\": null, \"total\": 11469, \"totalTestResults\": 11469, \"posNeg\": 11469, \"fips\": 17, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1351.0, \"positiveIncrease\": 262.0, \"totalTestResultsIncrease\": 1613.0, \"ratio\": 0.13383904438050398, \"sinceDay0\": 1}, {\"index\": 520, \"date\": \"2020-03-25T00:00:00\", \"state\": \"IL\", \"positive\": 1865.0, \"negative\": 12344.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"de4c69056480e6111af2b8aeb434f5f8d597b170\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 19.0, \"hospitalized\": null, \"total\": 14209, \"totalTestResults\": 14209, \"posNeg\": 14209, \"fips\": 17, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2410.0, \"positiveIncrease\": 330.0, \"totalTestResultsIncrease\": 2740.0, \"ratio\": 0.13125483848265185, \"sinceDay0\": 2}, {\"index\": 464, \"date\": \"2020-03-26T00:00:00\", \"state\": \"IL\", \"positive\": 2538.0, \"negative\": 14093.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ede372266e78d0a0ceff08d95ac84932e0fcfc7d\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 26.0, \"hospitalized\": null, \"total\": 16631, \"totalTestResults\": 16631, \"posNeg\": 16631, \"fips\": 17, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1749.0, \"positiveIncrease\": 673.0, \"totalTestResultsIncrease\": 2422.0, \"ratio\": 0.15260657807708497, \"sinceDay0\": 3}, {\"index\": 408, \"date\": \"2020-03-27T00:00:00\", \"state\": \"IL\", \"positive\": 3026.0, \"negative\": 18516.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"65f47d4e133e84caba214c7a0efd4f69e51ceb5a\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 34.0, \"hospitalized\": null, \"total\": 21542, \"totalTestResults\": 21542, \"posNeg\": 21542, \"fips\": 17, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4423.0, \"positiveIncrease\": 488.0, \"totalTestResultsIncrease\": 4911.0, \"ratio\": 0.14046977996472007, \"sinceDay0\": 4}, {\"index\": 352, \"date\": \"2020-03-28T00:00:00\", \"state\": \"IL\", \"positive\": 3491.0, \"negative\": 22000.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"073372a26378c93d1b5b6ee7307fb9c030f82f2d\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 47.0, \"hospitalized\": null, \"total\": 25491, \"totalTestResults\": 25491, \"posNeg\": 25491, \"fips\": 17, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3484.0, \"positiveIncrease\": 465.0, \"totalTestResultsIncrease\": 3949.0, \"ratio\": 0.13695029618296653, \"sinceDay0\": 5}, {\"index\": 296, \"date\": \"2020-03-29T00:00:00\", \"state\": \"IL\", \"positive\": 4596.0, \"negative\": 23166.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"bd7639325f1e033630241a08bc0e4cfebae48436\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 65.0, \"hospitalized\": null, \"total\": 27762, \"totalTestResults\": 27762, \"posNeg\": 27762, \"fips\": 17, \"deathIncrease\": 18.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1166.0, \"positiveIncrease\": 1105.0, \"totalTestResultsIncrease\": 2271.0, \"ratio\": 0.16555003241841365, \"sinceDay0\": 6}, {\"index\": 240, \"date\": \"2020-03-30T00:00:00\", \"state\": \"IL\", \"positive\": 5057.0, \"negative\": 25389.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"49eda929cdc14ecc7beeaffc5a03863b651175f5\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 73.0, \"hospitalized\": null, \"total\": 30446, \"totalTestResults\": 30446, \"posNeg\": 30446, \"fips\": 17, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2223.0, \"positiveIncrease\": 461.0, \"totalTestResultsIncrease\": 2684.0, \"ratio\": 0.16609735269000853, \"sinceDay0\": 7}, {\"index\": 184, \"date\": \"2020-03-31T00:00:00\", \"state\": \"IL\", \"positive\": 5994.0, \"negative\": 29231.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"979983c53f3fef1cf573ae3a61de7f9166197b17\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 99.0, \"hospitalized\": null, \"total\": 35225, \"totalTestResults\": 35225, \"posNeg\": 35225, \"fips\": 17, \"deathIncrease\": 26.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3842.0, \"positiveIncrease\": 937.0, \"totalTestResultsIncrease\": 4779.0, \"ratio\": 0.17016323633782826, \"sinceDay0\": 8}, {\"index\": 128, \"date\": \"2020-04-01T00:00:00\", \"state\": \"IL\", \"positive\": 6980.0, \"negative\": 33404.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"026b984139faebf730612961db2541ecac874f45\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 141.0, \"hospitalized\": null, \"total\": 40384, \"totalTestResults\": 40384, \"posNeg\": 40384, \"fips\": 17, \"deathIncrease\": 42.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4173.0, \"positiveIncrease\": 986.0, \"totalTestResultsIncrease\": 5159.0, \"ratio\": 0.1728407290015848, \"sinceDay0\": 9}, {\"index\": 72, \"date\": \"2020-04-02T00:00:00\", \"state\": \"IL\", \"positive\": 7695.0, \"negative\": 35961.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1a8b1e0bab7743ed9c982d78d0d7844622a6d6a3\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 157.0, \"hospitalized\": null, \"total\": 43656, \"totalTestResults\": 43656, \"posNeg\": 43656, \"fips\": 17, \"deathIncrease\": 16.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2557.0, \"positiveIncrease\": 715.0, \"totalTestResultsIncrease\": 3272.0, \"ratio\": 0.17626443100604727, \"sinceDay0\": 10}, {\"index\": 16, \"date\": \"2020-04-03T00:00:00\", \"state\": \"IL\", \"positive\": 8904.0, \"negative\": 39144.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5393eb554824524a4a63bbec9c795869c7869414\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 210.0, \"hospitalized\": null, \"total\": 48048, \"totalTestResults\": 48048, \"posNeg\": 48048, \"fips\": 17, \"deathIncrease\": 53.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3183.0, \"positiveIncrease\": 1209.0, \"totalTestResultsIncrease\": 4392.0, \"ratio\": 0.1853146853146853, \"sinceDay0\": 11}, {\"index\": 577, \"date\": \"2020-03-24T00:00:00\", \"state\": \"IN\", \"positive\": 365.0, \"negative\": 2566.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d20aff6badc212807b7cd5db58fc6d2b08795e49\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 12.0, \"hospitalized\": 1.0, \"total\": 2931, \"totalTestResults\": 2931, \"posNeg\": 2931, \"fips\": 18, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 865.0, \"positiveIncrease\": 106.0, \"totalTestResultsIncrease\": 971.0, \"ratio\": 0.1245308768338451, \"sinceDay0\": 0}, {\"index\": 521, \"date\": \"2020-03-25T00:00:00\", \"state\": \"IN\", \"positive\": 477.0, \"negative\": 2879.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1a6af9e7ccb688e3321a736a824bb1fe799b7ef8\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 14.0, \"hospitalized\": 1.0, \"total\": 3356, \"totalTestResults\": 3356, \"posNeg\": 3356, \"fips\": 18, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 313.0, \"positiveIncrease\": 112.0, \"totalTestResultsIncrease\": 425.0, \"ratio\": 0.14213349225268176, \"sinceDay0\": 1}, {\"index\": 465, \"date\": \"2020-03-26T00:00:00\", \"state\": \"IN\", \"positive\": 645.0, \"negative\": 4006.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d09dec87fbea244ee83df1fb0d61288197978934\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 17.0, \"hospitalized\": null, \"total\": 4651, \"totalTestResults\": 4651, \"posNeg\": 4651, \"fips\": 18, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1127.0, \"positiveIncrease\": 168.0, \"totalTestResultsIncrease\": 1295.0, \"ratio\": 0.13867985379488282, \"sinceDay0\": 2}, {\"index\": 409, \"date\": \"2020-03-27T00:00:00\", \"state\": \"IN\", \"positive\": 981.0, \"negative\": 5955.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"3708ffb8604728a20d1032f73b6da67ee72ea866\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 24.0, \"hospitalized\": null, \"total\": 6936, \"totalTestResults\": 6936, \"posNeg\": 6936, \"fips\": 18, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1949.0, \"positiveIncrease\": 336.0, \"totalTestResultsIncrease\": 2285.0, \"ratio\": 0.14143598615916955, \"sinceDay0\": 3}, {\"index\": 353, \"date\": \"2020-03-28T00:00:00\", \"state\": \"IN\", \"positive\": 1232.0, \"negative\": 7175.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"bb33e7862d580175dc4ae2bfe3b91be2dd68c719\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 31.0, \"hospitalized\": null, \"total\": 8407, \"totalTestResults\": 8407, \"posNeg\": 8407, \"fips\": 18, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1220.0, \"positiveIncrease\": 251.0, \"totalTestResultsIncrease\": 1471.0, \"ratio\": 0.14654454621149043, \"sinceDay0\": 4}, {\"index\": 297, \"date\": \"2020-03-29T00:00:00\", \"state\": \"IN\", \"positive\": 1514.0, \"negative\": 8316.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"7218f7ee5dcf63b69f6d3a8be6ab8404ecd588c4\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 32.0, \"hospitalized\": null, \"total\": 9830, \"totalTestResults\": 9830, \"posNeg\": 9830, \"fips\": 18, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1141.0, \"positiveIncrease\": 282.0, \"totalTestResultsIncrease\": 1423.0, \"ratio\": 0.1540183112919634, \"sinceDay0\": 5}, {\"index\": 241, \"date\": \"2020-03-30T00:00:00\", \"state\": \"IN\", \"positive\": 1786.0, \"negative\": 9872.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1eb08f6c84c1646c1611f46dfcb77c86a50479fc\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 35.0, \"hospitalized\": null, \"total\": 11658, \"totalTestResults\": 11658, \"posNeg\": 11658, \"fips\": 18, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1556.0, \"positiveIncrease\": 272.0, \"totalTestResultsIncrease\": 1828.0, \"ratio\": 0.1531995196431635, \"sinceDay0\": 6}, {\"index\": 185, \"date\": \"2020-03-31T00:00:00\", \"state\": \"IN\", \"positive\": 2159.0, \"negative\": 11214.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"76b4fbd00067fbb532bb2d0c63800ffa814d75c9\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 49.0, \"hospitalized\": null, \"total\": 13373, \"totalTestResults\": 13373, \"posNeg\": 13373, \"fips\": 18, \"deathIncrease\": 14.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1342.0, \"positiveIncrease\": 373.0, \"totalTestResultsIncrease\": 1715.0, \"ratio\": 0.16144470201151573, \"sinceDay0\": 7}, {\"index\": 129, \"date\": \"2020-04-01T00:00:00\", \"state\": \"IN\", \"positive\": 2565.0, \"negative\": 11810.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"fcc053001d98ddb6739b2610781931fbb476aac3\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 65.0, \"hospitalized\": null, \"total\": 14375, \"totalTestResults\": 14375, \"posNeg\": 14375, \"fips\": 18, \"deathIncrease\": 16.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 596.0, \"positiveIncrease\": 406.0, \"totalTestResultsIncrease\": 1002.0, \"ratio\": 0.17843478260869566, \"sinceDay0\": 8}, {\"index\": 73, \"date\": \"2020-04-02T00:00:00\", \"state\": \"IN\", \"positive\": 3039.0, \"negative\": 13246.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"7efa7f48655167cc1d748ae1740c9b97dd06a209\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 78.0, \"hospitalized\": null, \"total\": 16285, \"totalTestResults\": 16285, \"posNeg\": 16285, \"fips\": 18, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1436.0, \"positiveIncrease\": 474.0, \"totalTestResultsIncrease\": 1910.0, \"ratio\": 0.18661344795824378, \"sinceDay0\": 9}, {\"index\": 17, \"date\": \"2020-04-03T00:00:00\", \"state\": \"IN\", \"positive\": 3437.0, \"negative\": 14398.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b6a582ed478dfba401e4a56efe6e9e4a1b532d04\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 102.0, \"hospitalized\": null, \"total\": 17835, \"totalTestResults\": 17835, \"posNeg\": 17835, \"fips\": 18, \"deathIncrease\": 24.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1152.0, \"positiveIncrease\": 398.0, \"totalTestResultsIncrease\": 1550.0, \"ratio\": 0.19271096159237455, \"sinceDay0\": 10}, {\"index\": 130, \"date\": \"2020-04-01T00:00:00\", \"state\": \"KS\", \"positive\": 482.0, \"negative\": 5411.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 114.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d8abbc3a45478014e68bb1033ec072f19a68ec6a\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 10.0, \"hospitalized\": 114.0, \"total\": 5893, \"totalTestResults\": 5893, \"posNeg\": 5893, \"fips\": 20, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 35.0, \"negativeIncrease\": 415.0, \"positiveIncrease\": 54.0, \"totalTestResultsIncrease\": 469.0, \"ratio\": 0.08179195655862888, \"sinceDay0\": 0}, {\"index\": 74, \"date\": \"2020-04-02T00:00:00\", \"state\": \"KS\", \"positive\": 552.0, \"negative\": 6059.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 138.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e1d064496cc599d8997422f5393e363895fed048\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 13.0, \"hospitalized\": 138.0, \"total\": 6611, \"totalTestResults\": 6611, \"posNeg\": 6611, \"fips\": 20, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 24.0, \"negativeIncrease\": 648.0, \"positiveIncrease\": 70.0, \"totalTestResultsIncrease\": 718.0, \"ratio\": 0.0834972016336409, \"sinceDay0\": 1}, {\"index\": 18, \"date\": \"2020-04-03T00:00:00\", \"state\": \"KS\", \"positive\": 620.0, \"negative\": 6454.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 151.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"423f188ae5bf45319e336f75b49a3708bdbc8494\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 17.0, \"hospitalized\": 151.0, \"total\": 7074, \"totalTestResults\": 7074, \"posNeg\": 7074, \"fips\": 20, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 13.0, \"negativeIncrease\": 395.0, \"positiveIncrease\": 68.0, \"totalTestResultsIncrease\": 463.0, \"ratio\": 0.08764489680520215, \"sinceDay0\": 2}, {\"index\": 187, \"date\": \"2020-03-31T00:00:00\", \"state\": \"KY\", \"positive\": 480.0, \"negative\": 6330.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"37e85814eaa2e8744faaf12a5995d3a1d5958614\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 11.0, \"hospitalized\": null, \"total\": 6810, \"totalTestResults\": 6810, \"posNeg\": 6810, \"fips\": 21, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 751.0, \"positiveIncrease\": 41.0, \"totalTestResultsIncrease\": 792.0, \"ratio\": 0.07048458149779736, \"sinceDay0\": 0}, {\"index\": 131, \"date\": \"2020-04-01T00:00:00\", \"state\": \"KY\", \"positive\": 591.0, \"negative\": 6965.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d401a0f0702a3e7442668504f89d9bbf0fd9db08\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 17.0, \"hospitalized\": null, \"total\": 7556, \"totalTestResults\": 7556, \"posNeg\": 7556, \"fips\": 21, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 635.0, \"positiveIncrease\": 111.0, \"totalTestResultsIncrease\": 746.0, \"ratio\": 0.07821598729486501, \"sinceDay0\": 1}, {\"index\": 75, \"date\": \"2020-04-02T00:00:00\", \"state\": \"KY\", \"positive\": 680.0, \"negative\": 7220.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9ab2e64fd49a2aba449f469559e03c171789906f\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 20.0, \"hospitalized\": null, \"total\": 7900, \"totalTestResults\": 7900, \"posNeg\": 7900, \"fips\": 21, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 255.0, \"positiveIncrease\": 89.0, \"totalTestResultsIncrease\": 344.0, \"ratio\": 0.08607594936708861, \"sinceDay0\": 2}, {\"index\": 19, \"date\": \"2020-04-03T00:00:00\", \"state\": \"KY\", \"positive\": 770.0, \"negative\": 12034.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b7ec08543b9b2324d60694f6721979dc00c54543\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 31.0, \"hospitalized\": null, \"total\": 12804, \"totalTestResults\": 12804, \"posNeg\": 12804, \"fips\": 21, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4814.0, \"positiveIncrease\": 90.0, \"totalTestResultsIncrease\": 4904.0, \"ratio\": 0.06013745704467354, \"sinceDay0\": 3}, {\"index\": 804, \"date\": \"2020-03-20T00:00:00\", \"state\": \"LA\", \"positive\": 479.0, \"negative\": 568.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e67536ea67b77d8ca65be412882b0f4d055238f5\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 1047, \"totalTestResults\": 1047, \"posNeg\": 1047, \"fips\": 22, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 110.0, \"positiveIncrease\": 132.0, \"totalTestResultsIncrease\": 242.0, \"ratio\": 0.4574976122254059, \"sinceDay0\": 0}, {\"index\": 748, \"date\": \"2020-03-21T00:00:00\", \"state\": \"LA\", \"positive\": 585.0, \"negative\": 2180.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f7c6c177e7b1f643227b1bc755f63bbb75468835\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 16.0, \"hospitalized\": null, \"total\": 2765, \"totalTestResults\": 2765, \"posNeg\": 2765, \"fips\": 22, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1612.0, \"positiveIncrease\": 106.0, \"totalTestResultsIncrease\": 1718.0, \"ratio\": 0.2115732368896926, \"sinceDay0\": 1}, {\"index\": 692, \"date\": \"2020-03-22T00:00:00\", \"state\": \"LA\", \"positive\": 837.0, \"negative\": 2661.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c89220ae4e2b0931fb785ec35f44887bf5a5355b\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 20.0, \"hospitalized\": null, \"total\": 3498, \"totalTestResults\": 3498, \"posNeg\": 3498, \"fips\": 22, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 481.0, \"positiveIncrease\": 252.0, \"totalTestResultsIncrease\": 733.0, \"ratio\": 0.23927958833619212, \"sinceDay0\": 2}, {\"index\": 636, \"date\": \"2020-03-23T00:00:00\", \"state\": \"LA\", \"positive\": 1172.0, \"negative\": 4776.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"fd499be556bb029c4bc349ac19373d9ba7b95fcd\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 34.0, \"hospitalized\": null, \"total\": 5948, \"totalTestResults\": 5948, \"posNeg\": 5948, \"fips\": 22, \"deathIncrease\": 14.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2115.0, \"positiveIncrease\": 335.0, \"totalTestResultsIncrease\": 2450.0, \"ratio\": 0.19704102219233355, \"sinceDay0\": 3}, {\"index\": 580, \"date\": \"2020-03-24T00:00:00\", \"state\": \"LA\", \"positive\": 1388.0, \"negative\": 7215.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 271.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c443054e2ff12e070077b14d3071b89ea08d7346\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 46.0, \"hospitalized\": 271.0, \"total\": 8603, \"totalTestResults\": 8603, \"posNeg\": 8603, \"fips\": 22, \"deathIncrease\": 12.0, \"hospitalizedIncrease\": 271.0, \"negativeIncrease\": 2439.0, \"positiveIncrease\": 216.0, \"totalTestResultsIncrease\": 2655.0, \"ratio\": 0.161339067767058, \"sinceDay0\": 4}, {\"index\": 524, \"date\": \"2020-03-25T00:00:00\", \"state\": \"LA\", \"positive\": 1795.0, \"negative\": 9656.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 491.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 163.0, \"recovered\": null, \"hash\": \"b9c6d4f81c9f0b6777df7bd4190349d006d90222\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 65.0, \"hospitalized\": 491.0, \"total\": 11451, \"totalTestResults\": 11451, \"posNeg\": 11451, \"fips\": 22, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 220.0, \"negativeIncrease\": 2441.0, \"positiveIncrease\": 407.0, \"totalTestResultsIncrease\": 2848.0, \"ratio\": 0.15675486857043053, \"sinceDay0\": 5}, {\"index\": 468, \"date\": \"2020-03-26T00:00:00\", \"state\": \"LA\", \"positive\": 2305.0, \"negative\": 15724.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 676.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 239.0, \"recovered\": null, \"hash\": \"a3dd3f994877e467e4b0eede332659cfeca99714\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 83.0, \"hospitalized\": 676.0, \"total\": 18029, \"totalTestResults\": 18029, \"posNeg\": 18029, \"fips\": 22, \"deathIncrease\": 18.0, \"hospitalizedIncrease\": 185.0, \"negativeIncrease\": 6068.0, \"positiveIncrease\": 510.0, \"totalTestResultsIncrease\": 6578.0, \"ratio\": 0.12784957568362082, \"sinceDay0\": 6}, {\"index\": 412, \"date\": \"2020-03-27T00:00:00\", \"state\": \"LA\", \"positive\": 2746.0, \"negative\": 18613.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 773.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 270.0, \"recovered\": null, \"hash\": \"8403ec4e8479f56c60ee105634c0b15796c301c3\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 119.0, \"hospitalized\": 773.0, \"total\": 21359, \"totalTestResults\": 21359, \"posNeg\": 21359, \"fips\": 22, \"deathIncrease\": 36.0, \"hospitalizedIncrease\": 97.0, \"negativeIncrease\": 2889.0, \"positiveIncrease\": 441.0, \"totalTestResultsIncrease\": 3330.0, \"ratio\": 0.12856407135165504, \"sinceDay0\": 7}, {\"index\": 356, \"date\": \"2020-03-28T00:00:00\", \"state\": \"LA\", \"positive\": 3315.0, \"negative\": 21846.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 927.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 336.0, \"recovered\": null, \"hash\": \"4a0d79bda0eb000ea91e7c858e929eb0342be5af\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 137.0, \"hospitalized\": 927.0, \"total\": 25161, \"totalTestResults\": 25161, \"posNeg\": 25161, \"fips\": 22, \"deathIncrease\": 18.0, \"hospitalizedIncrease\": 154.0, \"negativeIncrease\": 3233.0, \"positiveIncrease\": 569.0, \"totalTestResultsIncrease\": 3802.0, \"ratio\": 0.13175152020984857, \"sinceDay0\": 8}, {\"index\": 300, \"date\": \"2020-03-29T00:00:00\", \"state\": \"LA\", \"positive\": 3540.0, \"negative\": 24331.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1127.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 380.0, \"recovered\": null, \"hash\": \"c7306243e89fb0a9690d4531ca9ba00b354540bd\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 151.0, \"hospitalized\": 1127.0, \"total\": 27871, \"totalTestResults\": 27871, \"posNeg\": 27871, \"fips\": 22, \"deathIncrease\": 14.0, \"hospitalizedIncrease\": 200.0, \"negativeIncrease\": 2485.0, \"positiveIncrease\": 225.0, \"totalTestResultsIncrease\": 2710.0, \"ratio\": 0.12701374188224318, \"sinceDay0\": 9}, {\"index\": 244, \"date\": \"2020-03-30T00:00:00\", \"state\": \"LA\", \"positive\": 4025.0, \"negative\": 30008.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1185.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 385.0, \"recovered\": null, \"hash\": \"83cdef3008fd6d32b51fc602cee4e1df98d1e7e0\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 185.0, \"hospitalized\": 1185.0, \"total\": 34033, \"totalTestResults\": 34033, \"posNeg\": 34033, \"fips\": 22, \"deathIncrease\": 34.0, \"hospitalizedIncrease\": 58.0, \"negativeIncrease\": 5677.0, \"positiveIncrease\": 485.0, \"totalTestResultsIncrease\": 6162.0, \"ratio\": 0.11826756383510123, \"sinceDay0\": 10}, {\"index\": 188, \"date\": \"2020-03-31T00:00:00\", \"state\": \"LA\", \"positive\": 5237.0, \"negative\": 33730.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1355.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 438.0, \"recovered\": null, \"hash\": \"9afe3b0050bd01d1928766a6d12d65c23f10d0b9\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 239.0, \"hospitalized\": 1355.0, \"total\": 38967, \"totalTestResults\": 38967, \"posNeg\": 38967, \"fips\": 22, \"deathIncrease\": 54.0, \"hospitalizedIncrease\": 170.0, \"negativeIncrease\": 3722.0, \"positiveIncrease\": 1212.0, \"totalTestResultsIncrease\": 4934.0, \"ratio\": 0.13439577078040393, \"sinceDay0\": 11}, {\"index\": 132, \"date\": \"2020-04-01T00:00:00\", \"state\": \"LA\", \"positive\": 6424.0, \"negative\": 39352.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1498.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 490.0, \"recovered\": null, \"hash\": \"3e4974bc6afa3064f7b37913b0497195237d9651\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 273.0, \"hospitalized\": 1498.0, \"total\": 45776, \"totalTestResults\": 45776, \"posNeg\": 45776, \"fips\": 22, \"deathIncrease\": 34.0, \"hospitalizedIncrease\": 143.0, \"negativeIncrease\": 5622.0, \"positiveIncrease\": 1187.0, \"totalTestResultsIncrease\": 6809.0, \"ratio\": 0.14033554701153442, \"sinceDay0\": 12}, {\"index\": 76, \"date\": \"2020-04-02T00:00:00\", \"state\": \"LA\", \"positive\": 9150.0, \"negative\": 41936.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1639.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 507.0, \"recovered\": null, \"hash\": \"00bc323a6acfed050d7eb6527cbc2edd1bea6eb7\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 310.0, \"hospitalized\": 1639.0, \"total\": 51086, \"totalTestResults\": 51086, \"posNeg\": 51086, \"fips\": 22, \"deathIncrease\": 37.0, \"hospitalizedIncrease\": 141.0, \"negativeIncrease\": 2584.0, \"positiveIncrease\": 2726.0, \"totalTestResultsIncrease\": 5310.0, \"ratio\": 0.17910973652272638, \"sinceDay0\": 13}, {\"index\": 20, \"date\": \"2020-04-03T00:00:00\", \"state\": \"LA\", \"positive\": 10297.0, \"negative\": 43348.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1707.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 535.0, \"recovered\": null, \"hash\": \"0694f8cf6531a993f01c11a566a18087757b24d2\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 370.0, \"hospitalized\": 1707.0, \"total\": 53645, \"totalTestResults\": 53645, \"posNeg\": 53645, \"fips\": 22, \"deathIncrease\": 60.0, \"hospitalizedIncrease\": 68.0, \"negativeIncrease\": 1412.0, \"positiveIncrease\": 1147.0, \"totalTestResultsIncrease\": 2559.0, \"ratio\": 0.19194705937179607, \"sinceDay0\": 14}, {\"index\": 581, \"date\": \"2020-03-24T00:00:00\", \"state\": \"MA\", \"positive\": 1159.0, \"negative\": 12590.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 94.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"7dba190b6c130ef5b8427912adbcf550a3e63368\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 11.0, \"hospitalized\": 94.0, \"total\": 13749, \"totalTestResults\": 13749, \"posNeg\": 13749, \"fips\": 25, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 15.0, \"negativeIncrease\": 4445.0, \"positiveIncrease\": 382.0, \"totalTestResultsIncrease\": 4827.0, \"ratio\": 0.08429703978471162, \"sinceDay0\": 0}, {\"index\": 525, \"date\": \"2020-03-25T00:00:00\", \"state\": \"MA\", \"positive\": 1838.0, \"negative\": 17956.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 103.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"95bb4fdcf8938f1681915e4ab6cd29914ed60b24\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 15.0, \"hospitalized\": 103.0, \"total\": 19794, \"totalTestResults\": 19794, \"posNeg\": 19794, \"fips\": 25, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 9.0, \"negativeIncrease\": 5366.0, \"positiveIncrease\": 679.0, \"totalTestResultsIncrease\": 6045.0, \"ratio\": 0.0928564211377185, \"sinceDay0\": 1}, {\"index\": 469, \"date\": \"2020-03-26T00:00:00\", \"state\": \"MA\", \"positive\": 2417.0, \"negative\": 21204.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 219.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"83a4a37ff66f38e205b0b18839828d141802f5c1\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 25.0, \"hospitalized\": 219.0, \"total\": 23621, \"totalTestResults\": 23621, \"posNeg\": 23621, \"fips\": 25, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 116.0, \"negativeIncrease\": 3248.0, \"positiveIncrease\": 579.0, \"totalTestResultsIncrease\": 3827.0, \"ratio\": 0.10232420303966809, \"sinceDay0\": 2}, {\"index\": 413, \"date\": \"2020-03-27T00:00:00\", \"state\": \"MA\", \"positive\": 3240.0, \"negative\": 26131.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 219.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"016484cf6143f06b89bdb98758e558945940304e\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 35.0, \"hospitalized\": 219.0, \"total\": 29371, \"totalTestResults\": 29371, \"posNeg\": 29371, \"fips\": 25, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4927.0, \"positiveIncrease\": 823.0, \"totalTestResultsIncrease\": 5750.0, \"ratio\": 0.1103128936706275, \"sinceDay0\": 3}, {\"index\": 357, \"date\": \"2020-03-28T00:00:00\", \"state\": \"MA\", \"positive\": 4257.0, \"negative\": 30792.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 350.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c038ffa81528722c23a2ffffda17f2495a188ded\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 44.0, \"hospitalized\": 350.0, \"total\": 35049, \"totalTestResults\": 35049, \"posNeg\": 35049, \"fips\": 25, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 131.0, \"negativeIncrease\": 4661.0, \"positiveIncrease\": 1017.0, \"totalTestResultsIncrease\": 5678.0, \"ratio\": 0.12145852948728922, \"sinceDay0\": 4}, {\"index\": 301, \"date\": \"2020-03-29T00:00:00\", \"state\": \"MA\", \"positive\": 4955.0, \"negative\": 34111.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 399.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1de5b22e00296e1b0a1fea40b858c4f6d2eeb1b0\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 48.0, \"hospitalized\": 399.0, \"total\": 39066, \"totalTestResults\": 39066, \"posNeg\": 39066, \"fips\": 25, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 49.0, \"negativeIncrease\": 3319.0, \"positiveIncrease\": 698.0, \"totalTestResultsIncrease\": 4017.0, \"ratio\": 0.1268366354374648, \"sinceDay0\": 5}, {\"index\": 245, \"date\": \"2020-03-30T00:00:00\", \"state\": \"MA\", \"positive\": 5752.0, \"negative\": 37041.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 453.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"559b7707f9c7203da0ea8c07a2bfc9577d331c97\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 56.0, \"hospitalized\": 453.0, \"total\": 42793, \"totalTestResults\": 42793, \"posNeg\": 42793, \"fips\": 25, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 54.0, \"negativeIncrease\": 2930.0, \"positiveIncrease\": 797.0, \"totalTestResultsIncrease\": 3727.0, \"ratio\": 0.13441450704554483, \"sinceDay0\": 6}, {\"index\": 189, \"date\": \"2020-03-31T00:00:00\", \"state\": \"MA\", \"positive\": 6620.0, \"negative\": 40315.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 562.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b113daa2aa839e30f1f3605f00483292aa39a60e\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 89.0, \"hospitalized\": 562.0, \"total\": 46935, \"totalTestResults\": 46935, \"posNeg\": 46935, \"fips\": 25, \"deathIncrease\": 33.0, \"hospitalizedIncrease\": 109.0, \"negativeIncrease\": 3274.0, \"positiveIncrease\": 868.0, \"totalTestResultsIncrease\": 4142.0, \"ratio\": 0.14104612762330884, \"sinceDay0\": 7}, {\"index\": 133, \"date\": \"2020-04-01T00:00:00\", \"state\": \"MA\", \"positive\": 7738.0, \"negative\": 44000.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 682.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"70ea3d599c7c506eafd12cbed1d23daa16709040\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 122.0, \"hospitalized\": 682.0, \"total\": 51738, \"totalTestResults\": 51738, \"posNeg\": 51738, \"fips\": 25, \"deathIncrease\": 33.0, \"hospitalizedIncrease\": 120.0, \"negativeIncrease\": 3685.0, \"positiveIncrease\": 1118.0, \"totalTestResultsIncrease\": 4803.0, \"ratio\": 0.14956125091808728, \"sinceDay0\": 8}, {\"index\": 77, \"date\": \"2020-04-02T00:00:00\", \"state\": \"MA\", \"positive\": 8966.0, \"negative\": 47642.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 813.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"79d0614d1b714ae75a41b332ec20fb5cbecebab8\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 154.0, \"hospitalized\": 813.0, \"total\": 56608, \"totalTestResults\": 56608, \"posNeg\": 56608, \"fips\": 25, \"deathIncrease\": 32.0, \"hospitalizedIncrease\": 131.0, \"negativeIncrease\": 3642.0, \"positiveIncrease\": 1228.0, \"totalTestResultsIncrease\": 4870.0, \"ratio\": 0.15838750706613905, \"sinceDay0\": 9}, {\"index\": 21, \"date\": \"2020-04-03T00:00:00\", \"state\": \"MA\", \"positive\": 10402.0, \"negative\": 52560.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 966.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b7bee14b9475ba25ad0b28497d483cec03221230\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 192.0, \"hospitalized\": 966.0, \"total\": 62962, \"totalTestResults\": 62962, \"posNeg\": 62962, \"fips\": 25, \"deathIncrease\": 38.0, \"hospitalizedIncrease\": 153.0, \"negativeIncrease\": 4918.0, \"positiveIncrease\": 1436.0, \"totalTestResultsIncrease\": 6354.0, \"ratio\": 0.16521076204694896, \"sinceDay0\": 10}, {\"index\": 302, \"date\": \"2020-03-29T00:00:00\", \"state\": \"MD\", \"positive\": 1239.0, \"negative\": 12354.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 277.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"43e502f79bd427c342c79c2281412b86f1c174e1\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 10.0, \"hospitalized\": 277.0, \"total\": 13593, \"totalTestResults\": 13593, \"posNeg\": 13593, \"fips\": 24, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 51.0, \"negativeIncrease\": 838.0, \"positiveIncrease\": 247.0, \"totalTestResultsIncrease\": 1085.0, \"ratio\": 0.09114985654380932, \"sinceDay0\": 0}, {\"index\": 246, \"date\": \"2020-03-30T00:00:00\", \"state\": \"MD\", \"positive\": 1413.0, \"negative\": 13316.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 353.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ea51bd505bfb1c35306ee4e4b22abdad5d2820d8\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 15.0, \"hospitalized\": 353.0, \"total\": 14729, \"totalTestResults\": 14729, \"posNeg\": 14729, \"fips\": 24, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 76.0, \"negativeIncrease\": 962.0, \"positiveIncrease\": 174.0, \"totalTestResultsIncrease\": 1136.0, \"ratio\": 0.09593319302057166, \"sinceDay0\": 1}, {\"index\": 190, \"date\": \"2020-03-31T00:00:00\", \"state\": \"MD\", \"positive\": 1660.0, \"negative\": 14868.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 429.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d7bfec3c323983994ff111c9de7dc7addc251550\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 18.0, \"hospitalized\": 429.0, \"total\": 16528, \"totalTestResults\": 16528, \"posNeg\": 16528, \"fips\": 24, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 76.0, \"negativeIncrease\": 1552.0, \"positiveIncrease\": 247.0, \"totalTestResultsIncrease\": 1799.0, \"ratio\": 0.10043562439496612, \"sinceDay0\": 2}, {\"index\": 134, \"date\": \"2020-04-01T00:00:00\", \"state\": \"MD\", \"positive\": 1985.0, \"negative\": 17233.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 522.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"37fdabd80821d81988b5e5a11005bbe7e3a77a5f\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 31.0, \"hospitalized\": 522.0, \"total\": 19218, \"totalTestResults\": 19218, \"posNeg\": 19218, \"fips\": 24, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 93.0, \"negativeIncrease\": 2365.0, \"positiveIncrease\": 325.0, \"totalTestResultsIncrease\": 2690.0, \"ratio\": 0.10328858361952337, \"sinceDay0\": 3}, {\"index\": 78, \"date\": \"2020-04-02T00:00:00\", \"state\": \"MD\", \"positive\": 2331.0, \"negative\": 18890.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 582.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 81.0, \"hash\": \"ecc07bae25f936e57b3850a6ce3bcb5de2a72e94\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 36.0, \"hospitalized\": 582.0, \"total\": 21221, \"totalTestResults\": 21221, \"posNeg\": 21221, \"fips\": 24, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 60.0, \"negativeIncrease\": 1657.0, \"positiveIncrease\": 346.0, \"totalTestResultsIncrease\": 2003.0, \"ratio\": 0.10984402243061119, \"sinceDay0\": 4}, {\"index\": 22, \"date\": \"2020-04-03T00:00:00\", \"state\": \"MD\", \"positive\": 2758.0, \"negative\": 20932.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 664.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 159.0, \"hash\": \"748f7091af15d9ca085a92ba09b7390f763b6eb5\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 42.0, \"hospitalized\": 664.0, \"total\": 23690, \"totalTestResults\": 23690, \"posNeg\": 23690, \"fips\": 24, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 82.0, \"negativeIncrease\": 2042.0, \"positiveIncrease\": 427.0, \"totalTestResultsIncrease\": 2469.0, \"ratio\": 0.11642043056141832, \"sinceDay0\": 5}, {\"index\": 640, \"date\": \"2020-03-23T00:00:00\", \"state\": \"MI\", \"positive\": 1328.0, \"negative\": 2069.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b3d92249498258b511c3e0096b4740313fcc50e7\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 15.0, \"hospitalized\": null, \"total\": 3397, \"totalTestResults\": 3397, \"posNeg\": 3397, \"fips\": 26, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 293.0, \"totalTestResultsIncrease\": 293.0, \"ratio\": 0.3909331763320577, \"sinceDay0\": 0}, {\"index\": 584, \"date\": \"2020-03-24T00:00:00\", \"state\": \"MI\", \"positive\": 1791.0, \"negative\": 2069.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"51b4853b99e397722bba7993d875ce4f9cf72d4c\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 24.0, \"hospitalized\": null, \"total\": 3860, \"totalTestResults\": 3860, \"posNeg\": 3860, \"fips\": 26, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 463.0, \"totalTestResultsIncrease\": 463.0, \"ratio\": 0.4639896373056995, \"sinceDay0\": 1}, {\"index\": 528, \"date\": \"2020-03-25T00:00:00\", \"state\": \"MI\", \"positive\": 2294.0, \"negative\": 2069.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a9f71d967c982eca5345379d53b1d83b96be4e15\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 43.0, \"hospitalized\": null, \"total\": 4363, \"totalTestResults\": 4363, \"posNeg\": 4363, \"fips\": 26, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 503.0, \"totalTestResultsIncrease\": 503.0, \"ratio\": 0.5257850103140042, \"sinceDay0\": 2}, {\"index\": 472, \"date\": \"2020-03-26T00:00:00\", \"state\": \"MI\", \"positive\": 2856.0, \"negative\": 6550.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"310c71abd72cba718d14795224e4119494c942b2\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 60.0, \"hospitalized\": null, \"total\": 9406, \"totalTestResults\": 9406, \"posNeg\": 9406, \"fips\": 26, \"deathIncrease\": 17.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4481.0, \"positiveIncrease\": 562.0, \"totalTestResultsIncrease\": 5043.0, \"ratio\": 0.30363597703593453, \"sinceDay0\": 3}, {\"index\": 416, \"date\": \"2020-03-27T00:00:00\", \"state\": \"MI\", \"positive\": 3657.0, \"negative\": 6550.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9a88e637206f03a02622b999c68fa4e0b400b417\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 92.0, \"hospitalized\": null, \"total\": 10207, \"totalTestResults\": 10207, \"posNeg\": 10207, \"fips\": 26, \"deathIncrease\": 32.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 801.0, \"totalTestResultsIncrease\": 801.0, \"ratio\": 0.3582835309101597, \"sinceDay0\": 4}, {\"index\": 360, \"date\": \"2020-03-28T00:00:00\", \"state\": \"MI\", \"positive\": 3657.0, \"negative\": 9109.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"19385f58abdb5af8402070c8c995ced4e4a7dd67\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 92.0, \"hospitalized\": null, \"total\": 12766, \"totalTestResults\": 12766, \"posNeg\": 12766, \"fips\": 26, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2559.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 2559.0, \"ratio\": 0.2864640451198496, \"sinceDay0\": 5}, {\"index\": 304, \"date\": \"2020-03-29T00:00:00\", \"state\": \"MI\", \"positive\": 5486.0, \"negative\": 11893.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c8453def420acac39ac418e88b3fa6143a8907e7\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 132.0, \"hospitalized\": null, \"total\": 17379, \"totalTestResults\": 17379, \"posNeg\": 17379, \"fips\": 26, \"deathIncrease\": 40.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2784.0, \"positiveIncrease\": 1829.0, \"totalTestResultsIncrease\": 4613.0, \"ratio\": 0.3156683353472582, \"sinceDay0\": 6}, {\"index\": 248, \"date\": \"2020-03-30T00:00:00\", \"state\": \"MI\", \"positive\": 6498.0, \"negative\": 11893.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1f7c04934f736a642fad67de889c8616b7d6c0bf\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 184.0, \"hospitalized\": null, \"total\": 18391, \"totalTestResults\": 18391, \"posNeg\": 18391, \"fips\": 26, \"deathIncrease\": 52.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 1012.0, \"totalTestResultsIncrease\": 1012.0, \"ratio\": 0.35332499592191835, \"sinceDay0\": 7}, {\"index\": 192, \"date\": \"2020-03-31T00:00:00\", \"state\": \"MI\", \"positive\": 7615.0, \"negative\": 11893.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9c0cc8c0bb411d253f820471b33fd6f20fc98c35\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 259.0, \"hospitalized\": null, \"total\": 19508, \"totalTestResults\": 19508, \"posNeg\": 19508, \"fips\": 26, \"deathIncrease\": 75.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 1117.0, \"totalTestResultsIncrease\": 1117.0, \"ratio\": 0.3903526758253024, \"sinceDay0\": 8}, {\"index\": 136, \"date\": \"2020-04-01T00:00:00\", \"state\": \"MI\", \"positive\": 9334.0, \"negative\": 11893.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"654f19f58224826f0114ad7d33661d9d8880ad78\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 337.0, \"hospitalized\": null, \"total\": 21227, \"totalTestResults\": 21227, \"posNeg\": 21227, \"fips\": 26, \"deathIncrease\": 78.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 1719.0, \"totalTestResultsIncrease\": 1719.0, \"ratio\": 0.4397229942997126, \"sinceDay0\": 9}, {\"index\": 80, \"date\": \"2020-04-02T00:00:00\", \"state\": \"MI\", \"positive\": 10791.0, \"negative\": 11893.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"6f2458a7d5643a87a271e0b9bb088a7bff260de3\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 417.0, \"hospitalized\": null, \"total\": 22684, \"totalTestResults\": 22684, \"posNeg\": 22684, \"fips\": 26, \"deathIncrease\": 80.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 1457.0, \"totalTestResultsIncrease\": 1457.0, \"ratio\": 0.475709751366602, \"sinceDay0\": 10}, {\"index\": 24, \"date\": \"2020-04-03T00:00:00\", \"state\": \"MI\", \"positive\": 12744.0, \"negative\": 11893.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"301039b85ad63d7b9da1b36f9694f4c768754044\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 479.0, \"hospitalized\": null, \"total\": 24637, \"totalTestResults\": 24637, \"posNeg\": 24637, \"fips\": 26, \"deathIncrease\": 62.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 1953.0, \"totalTestResultsIncrease\": 1953.0, \"ratio\": 0.5172707716036855, \"sinceDay0\": 11}, {\"index\": 249, \"date\": \"2020-03-30T00:00:00\", \"state\": \"MN\", \"positive\": 576.0, \"negative\": 18246.0, \"pending\": null, \"hospitalizedCurrently\": 56.0, \"hospitalizedCumulative\": 92.0, \"inIcuCurrently\": 24.0, \"inIcuCumulative\": 24.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f4fd6f4736f788b58399563a48e0a4a14c120ff4\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 10.0, \"hospitalized\": 92.0, \"total\": 18822, \"totalTestResults\": 18822, \"posNeg\": 18822, \"fips\": 27, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 17.0, \"negativeIncrease\": 1092.0, \"positiveIncrease\": 73.0, \"totalTestResultsIncrease\": 1165.0, \"ratio\": 0.030602486452024225, \"sinceDay0\": 0}, {\"index\": 193, \"date\": \"2020-03-31T00:00:00\", \"state\": \"MN\", \"positive\": 629.0, \"negative\": 19151.0, \"pending\": null, \"hospitalizedCurrently\": 56.0, \"hospitalizedCumulative\": 112.0, \"inIcuCurrently\": 26.0, \"inIcuCumulative\": 26.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"cb5ae95ed3bb94c2e6a93343b3be56544a28c7e0\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 12.0, \"hospitalized\": 112.0, \"total\": 19780, \"totalTestResults\": 19780, \"posNeg\": 19780, \"fips\": 27, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 20.0, \"negativeIncrease\": 905.0, \"positiveIncrease\": 53.0, \"totalTestResultsIncrease\": 958.0, \"ratio\": 0.03179979777553084, \"sinceDay0\": 1}, {\"index\": 137, \"date\": \"2020-04-01T00:00:00\", \"state\": \"MN\", \"positive\": 689.0, \"negative\": 20502.0, \"pending\": null, \"hospitalizedCurrently\": 54.0, \"hospitalizedCumulative\": 122.0, \"inIcuCurrently\": 27.0, \"inIcuCumulative\": 27.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f3620fcfc12dce927a8e2f46922b59df0e351756\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 17.0, \"hospitalized\": 122.0, \"total\": 21191, \"totalTestResults\": 21191, \"posNeg\": 21191, \"fips\": 27, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 10.0, \"negativeIncrease\": 1351.0, \"positiveIncrease\": 60.0, \"totalTestResultsIncrease\": 1411.0, \"ratio\": 0.032513803029588034, \"sinceDay0\": 2}, {\"index\": 81, \"date\": \"2020-04-02T00:00:00\", \"state\": \"MN\", \"positive\": 742.0, \"negative\": 21652.0, \"pending\": null, \"hospitalizedCurrently\": 75.0, \"hospitalizedCumulative\": 138.0, \"inIcuCurrently\": 38.0, \"inIcuCumulative\": 38.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"af6b7633af8e8dd204b0ba17fe37e8ade6cd0abb\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 18.0, \"hospitalized\": 138.0, \"total\": 22394, \"totalTestResults\": 22394, \"posNeg\": 22394, \"fips\": 27, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 16.0, \"negativeIncrease\": 1150.0, \"positiveIncrease\": 53.0, \"totalTestResultsIncrease\": 1203.0, \"ratio\": 0.03313387514512816, \"sinceDay0\": 3}, {\"index\": 25, \"date\": \"2020-04-03T00:00:00\", \"state\": \"MN\", \"positive\": 789.0, \"negative\": 23438.0, \"pending\": null, \"hospitalizedCurrently\": 86.0, \"hospitalizedCumulative\": 156.0, \"inIcuCurrently\": 40.0, \"inIcuCumulative\": 40.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"6c45e5c1cc14d97b2d8c49fc1e64ae7a7ebb3861\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 22.0, \"hospitalized\": 156.0, \"total\": 24227, \"totalTestResults\": 24227, \"posNeg\": 24227, \"fips\": 27, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 18.0, \"negativeIncrease\": 1786.0, \"positiveIncrease\": 47.0, \"totalTestResultsIncrease\": 1833.0, \"ratio\": 0.03256697073513023, \"sinceDay0\": 4}, {\"index\": 362, \"date\": \"2020-03-28T00:00:00\", \"state\": \"MO\", \"positive\": 838.0, \"negative\": 10082.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e3f4b93a6ae042958eb8189a70db6a5157dcbfbe\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 10.0, \"hospitalized\": null, \"total\": 10920, \"totalTestResults\": 10920, \"posNeg\": 10920, \"fips\": 29, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 9713.0, \"positiveIncrease\": 169.0, \"totalTestResultsIncrease\": 9882.0, \"ratio\": 0.07673992673992674, \"sinceDay0\": 0}, {\"index\": 306, \"date\": \"2020-03-29T00:00:00\", \"state\": \"MO\", \"positive\": 838.0, \"negative\": 11547.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c9427dccdae92e441cee6fbb2787ea3a231dc686\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 10.0, \"hospitalized\": null, \"total\": 12385, \"totalTestResults\": 12385, \"posNeg\": 12385, \"fips\": 29, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1465.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 1465.0, \"ratio\": 0.06766249495357288, \"sinceDay0\": 1}, {\"index\": 250, \"date\": \"2020-03-30T00:00:00\", \"state\": \"MO\", \"positive\": 1031.0, \"negative\": 13204.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"932b312edc6f1709cc6feaa4afd9e492c17be555\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 13.0, \"hospitalized\": null, \"total\": 14235, \"totalTestResults\": 14235, \"posNeg\": 14235, \"fips\": 29, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1657.0, \"positiveIncrease\": 193.0, \"totalTestResultsIncrease\": 1850.0, \"ratio\": 0.0724271162627327, \"sinceDay0\": 2}, {\"index\": 194, \"date\": \"2020-03-31T00:00:00\", \"state\": \"MO\", \"positive\": 1327.0, \"negative\": 14614.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4fc56f79bf2224a97947093ebb74ae8bf0a5c36f\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 14.0, \"hospitalized\": null, \"total\": 15941, \"totalTestResults\": 15941, \"posNeg\": 15941, \"fips\": 29, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1410.0, \"positiveIncrease\": 296.0, \"totalTestResultsIncrease\": 1706.0, \"ratio\": 0.08324446396085565, \"sinceDay0\": 3}, {\"index\": 138, \"date\": \"2020-04-01T00:00:00\", \"state\": \"MO\", \"positive\": 1581.0, \"negative\": 15846.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"dc97aa93ab282b95a3c23db92cd5efdf0b46ac22\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 18.0, \"hospitalized\": null, \"total\": 17427, \"totalTestResults\": 17427, \"posNeg\": 17427, \"fips\": 29, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1232.0, \"positiveIncrease\": 254.0, \"totalTestResultsIncrease\": 1486.0, \"ratio\": 0.0907212945429506, \"sinceDay0\": 4}, {\"index\": 82, \"date\": \"2020-04-02T00:00:00\", \"state\": \"MO\", \"positive\": 1834.0, \"negative\": 17849.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"db61b660ddb54194c33a182e92605bcbeccb7e37\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 19.0, \"hospitalized\": null, \"total\": 19683, \"totalTestResults\": 19683, \"posNeg\": 19683, \"fips\": 29, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2003.0, \"positiveIncrease\": 253.0, \"totalTestResultsIncrease\": 2256.0, \"ratio\": 0.09317685312198344, \"sinceDay0\": 5}, {\"index\": 26, \"date\": \"2020-04-03T00:00:00\", \"state\": \"MO\", \"positive\": 2113.0, \"negative\": 19357.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4b8f07be28b3788c1fbf8838dfb55730f628b262\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 19.0, \"hospitalized\": null, \"total\": 21470, \"totalTestResults\": 21470, \"posNeg\": 21470, \"fips\": 29, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1508.0, \"positiveIncrease\": 279.0, \"totalTestResultsIncrease\": 1787.0, \"ratio\": 0.0984163949697252, \"sinceDay0\": 6}, {\"index\": 364, \"date\": \"2020-03-28T00:00:00\", \"state\": \"MS\", \"positive\": 663.0, \"negative\": 2560.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 219.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"6abee145ef8e88027852840cb9a48bc1ad203737\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 13.0, \"hospitalized\": 219.0, \"total\": 3223, \"totalTestResults\": 3223, \"posNeg\": 3223, \"fips\": 28, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 34.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 84.0, \"totalTestResultsIncrease\": 84.0, \"ratio\": 0.20570896680111697, \"sinceDay0\": 0}, {\"index\": 308, \"date\": \"2020-03-29T00:00:00\", \"state\": \"MS\", \"positive\": 758.0, \"negative\": 2560.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 235.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"7e0258b174e76d4043c8b6164aa265e2ea9b1f53\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 14.0, \"hospitalized\": 235.0, \"total\": 3318, \"totalTestResults\": 3318, \"posNeg\": 3318, \"fips\": 28, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 16.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 95.0, \"totalTestResultsIncrease\": 95.0, \"ratio\": 0.22845087402049427, \"sinceDay0\": 1}, {\"index\": 252, \"date\": \"2020-03-30T00:00:00\", \"state\": \"MS\", \"positive\": 847.0, \"negative\": 2989.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 195.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"306cc9d00ab15c39bbba409f447156bbece99bfe\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 16.0, \"hospitalized\": 195.0, \"total\": 3836, \"totalTestResults\": 3836, \"posNeg\": 3836, \"fips\": 28, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": -40.0, \"negativeIncrease\": 429.0, \"positiveIncrease\": 89.0, \"totalTestResultsIncrease\": 518.0, \"ratio\": 0.2208029197080292, \"sinceDay0\": 2}, {\"index\": 196, \"date\": \"2020-03-31T00:00:00\", \"state\": \"MS\", \"positive\": 937.0, \"negative\": 3537.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 211.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b44e85184d9a95e733dd5b77766d46986a09876a\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 20.0, \"hospitalized\": 211.0, \"total\": 4474, \"totalTestResults\": 4474, \"posNeg\": 4474, \"fips\": 28, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 16.0, \"negativeIncrease\": 548.0, \"positiveIncrease\": 90.0, \"totalTestResultsIncrease\": 638.0, \"ratio\": 0.2094322753687975, \"sinceDay0\": 3}, {\"index\": 140, \"date\": \"2020-04-01T00:00:00\", \"state\": \"MS\", \"positive\": 1073.0, \"negative\": 3712.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 332.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"03c61b979c5d42a05f6620424c0f7090acc01647\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 22.0, \"hospitalized\": 332.0, \"total\": 4785, \"totalTestResults\": 4785, \"posNeg\": 4785, \"fips\": 28, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 121.0, \"negativeIncrease\": 175.0, \"positiveIncrease\": 136.0, \"totalTestResultsIncrease\": 311.0, \"ratio\": 0.22424242424242424, \"sinceDay0\": 4}, {\"index\": 84, \"date\": \"2020-04-02T00:00:00\", \"state\": \"MS\", \"positive\": 1177.0, \"negative\": 4753.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 360.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"3fcf47375c2d49eb03ea205131eac0e18c42a29d\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 26.0, \"hospitalized\": 360.0, \"total\": 5930, \"totalTestResults\": 5930, \"posNeg\": 5930, \"fips\": 28, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 28.0, \"negativeIncrease\": 1041.0, \"positiveIncrease\": 104.0, \"totalTestResultsIncrease\": 1145.0, \"ratio\": 0.1984822934232715, \"sinceDay0\": 5}, {\"index\": 28, \"date\": \"2020-04-03T00:00:00\", \"state\": \"MS\", \"positive\": 1358.0, \"negative\": 4753.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 420.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8fa26347da7a40d2568c9ec1881dcb83d4ba139c\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 29.0, \"hospitalized\": 420.0, \"total\": 6111, \"totalTestResults\": 6111, \"posNeg\": 6111, \"fips\": 28, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 60.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 181.0, \"totalTestResultsIncrease\": 181.0, \"ratio\": 0.2222222222222222, \"sinceDay0\": 6}, {\"index\": 142, \"date\": \"2020-04-01T00:00:00\", \"state\": \"NC\", \"positive\": 1584.0, \"negative\": 24659.0, \"pending\": null, \"hospitalizedCurrently\": 204.0, \"hospitalizedCumulative\": 204.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e7d16063de0c0d172e6b3c63e9fa5886f5f3311f\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 10.0, \"hospitalized\": 204.0, \"total\": 26243, \"totalTestResults\": 26243, \"posNeg\": 26243, \"fips\": 37, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 47.0, \"negativeIncrease\": 3051.0, \"positiveIncrease\": 86.0, \"totalTestResultsIncrease\": 3137.0, \"ratio\": 0.06035895286362077, \"sinceDay0\": 0}, {\"index\": 86, \"date\": \"2020-04-02T00:00:00\", \"state\": \"NC\", \"positive\": 1857.0, \"negative\": 26822.0, \"pending\": null, \"hospitalizedCurrently\": 184.0, \"hospitalizedCumulative\": 204.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"fc6505af359bdeaf2b3e4eb74c3845c86659e04c\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 16.0, \"hospitalized\": 204.0, \"total\": 28679, \"totalTestResults\": 28679, \"posNeg\": 28679, \"fips\": 37, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2163.0, \"positiveIncrease\": 273.0, \"totalTestResultsIncrease\": 2436.0, \"ratio\": 0.0647512116879947, \"sinceDay0\": 1}, {\"index\": 30, \"date\": \"2020-04-03T00:00:00\", \"state\": \"NC\", \"positive\": 2093.0, \"negative\": 29505.0, \"pending\": null, \"hospitalizedCurrently\": 184.0, \"hospitalizedCumulative\": 259.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"853296f9cd640052947f0851f15fca08782be536\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 19.0, \"hospitalized\": 259.0, \"total\": 31598, \"totalTestResults\": 31598, \"posNeg\": 31598, \"fips\": 37, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 55.0, \"negativeIncrease\": 2683.0, \"positiveIncrease\": 236.0, \"totalTestResultsIncrease\": 2919.0, \"ratio\": 0.06623836951705804, \"sinceDay0\": 2}, {\"index\": 818, \"date\": \"2020-03-20T00:00:00\", \"state\": \"NJ\", \"positive\": 890.0, \"negative\": 264.0, \"pending\": 86.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"42bf8537b56da3791417f26b573d6c19e37af697\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 11.0, \"hospitalized\": null, \"total\": 1240, \"totalTestResults\": 1154, \"posNeg\": 1154, \"fips\": 34, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 54.0, \"positiveIncrease\": 148.0, \"totalTestResultsIncrease\": 202.0, \"ratio\": 0.717741935483871, \"sinceDay0\": 0}, {\"index\": 762, \"date\": \"2020-03-21T00:00:00\", \"state\": \"NJ\", \"positive\": 1327.0, \"negative\": 294.0, \"pending\": 40.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"619c8150d5592b43e0b0c8a542f3ce57862c85b9\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 16.0, \"hospitalized\": null, \"total\": 1661, \"totalTestResults\": 1621, \"posNeg\": 1621, \"fips\": 34, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 30.0, \"positiveIncrease\": 437.0, \"totalTestResultsIncrease\": 467.0, \"ratio\": 0.7989163154726069, \"sinceDay0\": 1}, {\"index\": 706, \"date\": \"2020-03-22T00:00:00\", \"state\": \"NJ\", \"positive\": 1914.0, \"negative\": 327.0, \"pending\": 49.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"facc3296d95ab4cdeff98dca4f6628c0c6c8a193\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 20.0, \"hospitalized\": null, \"total\": 2290, \"totalTestResults\": 2241, \"posNeg\": 2241, \"fips\": 34, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 33.0, \"positiveIncrease\": 587.0, \"totalTestResultsIncrease\": 620.0, \"ratio\": 0.8358078602620087, \"sinceDay0\": 2}, {\"index\": 650, \"date\": \"2020-03-23T00:00:00\", \"state\": \"NJ\", \"positive\": 2844.0, \"negative\": 359.0, \"pending\": 94.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"31b24615de8d15c0b6de14c1d8d6d4f06708f56f\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 27.0, \"hospitalized\": null, \"total\": 3297, \"totalTestResults\": 3203, \"posNeg\": 3203, \"fips\": 34, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 32.0, \"positiveIncrease\": 930.0, \"totalTestResultsIncrease\": 962.0, \"ratio\": 0.8626023657870792, \"sinceDay0\": 3}, {\"index\": 594, \"date\": \"2020-03-24T00:00:00\", \"state\": \"NJ\", \"positive\": 3675.0, \"negative\": 8325.0, \"pending\": 45.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"3298b6676fb93503cc4695dfd502db188db72854\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 44.0, \"hospitalized\": null, \"total\": 12045, \"totalTestResults\": 12000, \"posNeg\": 12000, \"fips\": 34, \"deathIncrease\": 17.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 7966.0, \"positiveIncrease\": 831.0, \"totalTestResultsIncrease\": 8797.0, \"ratio\": 0.30510585305105853, \"sinceDay0\": 4}, {\"index\": 538, \"date\": \"2020-03-25T00:00:00\", \"state\": \"NJ\", \"positive\": 4402.0, \"negative\": 10452.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"db32961abdc494e4610cb9201238755c5dbe9c9d\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 62.0, \"hospitalized\": null, \"total\": 14854, \"totalTestResults\": 14854, \"posNeg\": 14854, \"fips\": 34, \"deathIncrease\": 18.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2127.0, \"positiveIncrease\": 727.0, \"totalTestResultsIncrease\": 2854.0, \"ratio\": 0.2963511512050626, \"sinceDay0\": 5}, {\"index\": 482, \"date\": \"2020-03-26T00:00:00\", \"state\": \"NJ\", \"positive\": 6876.0, \"negative\": 13661.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"71a03230e8915d5c02cdc6c56ad1fb7e389070b8\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 81.0, \"hospitalized\": null, \"total\": 20537, \"totalTestResults\": 20537, \"posNeg\": 20537, \"fips\": 34, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3209.0, \"positiveIncrease\": 2474.0, \"totalTestResultsIncrease\": 5683.0, \"ratio\": 0.33481034230900325, \"sinceDay0\": 6}, {\"index\": 426, \"date\": \"2020-03-27T00:00:00\", \"state\": \"NJ\", \"positive\": 8825.0, \"negative\": 16547.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4f710137c0893063153d8fe5d0e84c4ea0db8bc4\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 108.0, \"hospitalized\": null, \"total\": 25372, \"totalTestResults\": 25372, \"posNeg\": 25372, \"fips\": 34, \"deathIncrease\": 27.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2886.0, \"positiveIncrease\": 1949.0, \"totalTestResultsIncrease\": 4835.0, \"ratio\": 0.3478243733249251, \"sinceDay0\": 7}, {\"index\": 370, \"date\": \"2020-03-28T00:00:00\", \"state\": \"NJ\", \"positive\": 11124.0, \"negative\": 19386.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c6cebd8484d76c0eb029b134ec375b577bb3c0fa\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 140.0, \"hospitalized\": null, \"total\": 30510, \"totalTestResults\": 30510, \"posNeg\": 30510, \"fips\": 34, \"deathIncrease\": 32.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2839.0, \"positiveIncrease\": 2299.0, \"totalTestResultsIncrease\": 5138.0, \"ratio\": 0.36460176991150445, \"sinceDay0\": 8}, {\"index\": 314, \"date\": \"2020-03-29T00:00:00\", \"state\": \"NJ\", \"positive\": 13386.0, \"negative\": 22216.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"818cb76f7734f5c5a61d07feec6d212f8717396e\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 161.0, \"hospitalized\": null, \"total\": 35602, \"totalTestResults\": 35602, \"posNeg\": 35602, \"fips\": 34, \"deathIncrease\": 21.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2830.0, \"positiveIncrease\": 2262.0, \"totalTestResultsIncrease\": 5092.0, \"ratio\": 0.3759901129150048, \"sinceDay0\": 9}, {\"index\": 258, \"date\": \"2020-03-30T00:00:00\", \"state\": \"NJ\", \"positive\": 16636.0, \"negative\": 25224.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0d0e43bb75f7d3018b323178e9b3ff278f6f6451\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 198.0, \"hospitalized\": null, \"total\": 41860, \"totalTestResults\": 41860, \"posNeg\": 41860, \"fips\": 34, \"deathIncrease\": 37.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3008.0, \"positiveIncrease\": 3250.0, \"totalTestResultsIncrease\": 6258.0, \"ratio\": 0.3974199713330148, \"sinceDay0\": 10}, {\"index\": 202, \"date\": \"2020-03-31T00:00:00\", \"state\": \"NJ\", \"positive\": 18696.0, \"negative\": 27077.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f358cd5dac93690b31a9d665dcb3fb4b046eca97\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 267.0, \"hospitalized\": null, \"total\": 45773, \"totalTestResults\": 45773, \"posNeg\": 45773, \"fips\": 34, \"deathIncrease\": 69.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1853.0, \"positiveIncrease\": 2060.0, \"totalTestResultsIncrease\": 3913.0, \"ratio\": 0.4084503965219671, \"sinceDay0\": 11}, {\"index\": 146, \"date\": \"2020-04-01T00:00:00\", \"state\": \"NJ\", \"positive\": 22255.0, \"negative\": 30387.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c70a3b11fb70789f402a5509b3c0000548c2587b\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 355.0, \"hospitalized\": null, \"total\": 52642, \"totalTestResults\": 52642, \"posNeg\": 52642, \"fips\": 34, \"deathIncrease\": 88.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3310.0, \"positiveIncrease\": 3559.0, \"totalTestResultsIncrease\": 6869.0, \"ratio\": 0.42276129326393375, \"sinceDay0\": 12}, {\"index\": 90, \"date\": \"2020-04-02T00:00:00\", \"state\": \"NJ\", \"positive\": 25590.0, \"negative\": 33520.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1350231ad51ae6e7e6b55243f9566d17a5460703\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 537.0, \"hospitalized\": null, \"total\": 59110, \"totalTestResults\": 59110, \"posNeg\": 59110, \"fips\": 34, \"deathIncrease\": 182.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3133.0, \"positiveIncrease\": 3335.0, \"totalTestResultsIncrease\": 6468.0, \"ratio\": 0.43292167145998983, \"sinceDay0\": 13}, {\"index\": 34, \"date\": \"2020-04-03T00:00:00\", \"state\": \"NJ\", \"positive\": 29895.0, \"negative\": 37608.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f3e8ae961e46883c951b2ac5ddd22f46055c6af3\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 646.0, \"hospitalized\": null, \"total\": 67503, \"totalTestResults\": 67503, \"posNeg\": 67503, \"fips\": 34, \"deathIncrease\": 109.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4088.0, \"positiveIncrease\": 4305.0, \"totalTestResultsIncrease\": 8393.0, \"ratio\": 0.442869205813075, \"sinceDay0\": 14}, {\"index\": 484, \"date\": \"2020-03-26T00:00:00\", \"state\": \"NV\", \"positive\": 420.0, \"negative\": 4697.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8439b92c8ef2ecd1b055e3ed1acbab7bedd90001\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 10.0, \"hospitalized\": null, \"total\": 5117, \"totalTestResults\": 5117, \"posNeg\": 5117, \"fips\": 32, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 446.0, \"positiveIncrease\": 99.0, \"totalTestResultsIncrease\": 545.0, \"ratio\": 0.08207934336525308, \"sinceDay0\": 0}, {\"index\": 428, \"date\": \"2020-03-27T00:00:00\", \"state\": \"NV\", \"positive\": 535.0, \"negative\": 6161.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c45254e1c7f4cc7635c3cc42cc996a47b745d36c\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 10.0, \"hospitalized\": null, \"total\": 6696, \"totalTestResults\": 6696, \"posNeg\": 6696, \"fips\": 32, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1464.0, \"positiveIncrease\": 115.0, \"totalTestResultsIncrease\": 1579.0, \"ratio\": 0.0798984468339307, \"sinceDay0\": 1}, {\"index\": 372, \"date\": \"2020-03-28T00:00:00\", \"state\": \"NV\", \"positive\": 621.0, \"negative\": 7901.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"38aee6610ca54e785d7593c3916d7256e0ac2a9b\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 10.0, \"hospitalized\": null, \"total\": 8522, \"totalTestResults\": 8522, \"posNeg\": 8522, \"fips\": 32, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1740.0, \"positiveIncrease\": 86.0, \"totalTestResultsIncrease\": 1826.0, \"ratio\": 0.07287021825862473, \"sinceDay0\": 2}, {\"index\": 316, \"date\": \"2020-03-29T00:00:00\", \"state\": \"NV\", \"positive\": 738.0, \"negative\": 8412.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0c74530736aea27f85556493e8fa89eb8b417763\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 14.0, \"hospitalized\": null, \"total\": 9150, \"totalTestResults\": 9150, \"posNeg\": 9150, \"fips\": 32, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 511.0, \"positiveIncrease\": 117.0, \"totalTestResultsIncrease\": 628.0, \"ratio\": 0.08065573770491803, \"sinceDay0\": 3}, {\"index\": 260, \"date\": \"2020-03-30T00:00:00\", \"state\": \"NV\", \"positive\": 1008.0, \"negative\": 10207.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"34628b797fa0cbc9196833ea89dc685929e71e86\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 15.0, \"hospitalized\": null, \"total\": 11215, \"totalTestResults\": 11215, \"posNeg\": 11215, \"fips\": 32, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1795.0, \"positiveIncrease\": 270.0, \"totalTestResultsIncrease\": 2065.0, \"ratio\": 0.08987962550156041, \"sinceDay0\": 4}, {\"index\": 204, \"date\": \"2020-03-31T00:00:00\", \"state\": \"NV\", \"positive\": 1113.0, \"negative\": 10681.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"75bc5c5fe829f18065e4706cf35ef2994fb69f7b\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 17.0, \"hospitalized\": null, \"total\": 11794, \"totalTestResults\": 11794, \"posNeg\": 11794, \"fips\": 32, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 474.0, \"positiveIncrease\": 105.0, \"totalTestResultsIncrease\": 579.0, \"ratio\": 0.09437001865355266, \"sinceDay0\": 5}, {\"index\": 148, \"date\": \"2020-04-01T00:00:00\", \"state\": \"NV\", \"positive\": 1279.0, \"negative\": 11519.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"99ca8c448bcd3a57ffe6454db6a4b2533447a96b\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 26.0, \"hospitalized\": null, \"total\": 12798, \"totalTestResults\": 12798, \"posNeg\": 12798, \"fips\": 32, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 838.0, \"positiveIncrease\": 166.0, \"totalTestResultsIncrease\": 1004.0, \"ratio\": 0.09993749023284888, \"sinceDay0\": 6}, {\"index\": 92, \"date\": \"2020-04-02T00:00:00\", \"state\": \"NV\", \"positive\": 1458.0, \"negative\": 12588.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ac281047995939a05d81fab70153c5a347c9a93f\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 38.0, \"hospitalized\": null, \"total\": 14046, \"totalTestResults\": 14046, \"posNeg\": 14046, \"fips\": 32, \"deathIncrease\": 12.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1069.0, \"positiveIncrease\": 179.0, \"totalTestResultsIncrease\": 1248.0, \"ratio\": 0.10380179410508329, \"sinceDay0\": 7}, {\"index\": 36, \"date\": \"2020-04-03T00:00:00\", \"state\": \"NV\", \"positive\": 1514.0, \"negative\": 13018.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b06428c9678bd268d2992c491635ac82ec96bf35\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 43.0, \"hospitalized\": null, \"total\": 14532, \"totalTestResults\": 14532, \"posNeg\": 14532, \"fips\": 32, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 430.0, \"positiveIncrease\": 56.0, \"totalTestResultsIncrease\": 486.0, \"ratio\": 0.10418387007982384, \"sinceDay0\": 8}, {\"index\": 933, \"date\": \"2020-03-18T00:00:00\", \"state\": \"NY\", \"positive\": 2382.0, \"negative\": 12215.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"65a08e6a0f81bd2c4bbc9988a17f0892d2ec4d35\", \"dateChecked\": \"2020-03-18T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 14597, \"totalTestResults\": 14597, \"posNeg\": 14597, \"fips\": 36, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 6709.0, \"positiveIncrease\": 682.0, \"totalTestResultsIncrease\": 7391.0, \"ratio\": 0.1631842159347811, \"sinceDay0\": 0}, {\"index\": 877, \"date\": \"2020-03-19T00:00:00\", \"state\": \"NY\", \"positive\": 4152.0, \"negative\": 18132.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"2eabc9b73139066e3613021b1e9c9deaf8af733c\", \"dateChecked\": \"2020-03-19T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 22284, \"totalTestResults\": 22284, \"posNeg\": 22284, \"fips\": 36, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5917.0, \"positiveIncrease\": 1770.0, \"totalTestResultsIncrease\": 7687.0, \"ratio\": 0.18632202477113624, \"sinceDay0\": 1}, {\"index\": 821, \"date\": \"2020-03-20T00:00:00\", \"state\": \"NY\", \"positive\": 7102.0, \"negative\": 25325.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5293b5c5920709d4f3cf66b901621a61a47d0d23\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 35.0, \"hospitalized\": null, \"total\": 32427, \"totalTestResults\": 32427, \"posNeg\": 32427, \"fips\": 36, \"deathIncrease\": 23.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 7193.0, \"positiveIncrease\": 2950.0, \"totalTestResultsIncrease\": 10143.0, \"ratio\": 0.21901501834890677, \"sinceDay0\": 2}, {\"index\": 765, \"date\": \"2020-03-21T00:00:00\", \"state\": \"NY\", \"positive\": 10356.0, \"negative\": 35081.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1603.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"eb983c3fb4fc2d7f3c2c1250578379f502787c29\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 44.0, \"hospitalized\": 1603.0, \"total\": 45437, \"totalTestResults\": 45437, \"posNeg\": 45437, \"fips\": 36, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 1603.0, \"negativeIncrease\": 9756.0, \"positiveIncrease\": 3254.0, \"totalTestResultsIncrease\": 13010.0, \"ratio\": 0.2279199771111649, \"sinceDay0\": 3}, {\"index\": 709, \"date\": \"2020-03-22T00:00:00\", \"state\": \"NY\", \"positive\": 15168.0, \"negative\": 46233.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1974.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0df3f76e6407f511b0c5bf4f5647cce8f407250e\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 114.0, \"hospitalized\": 1974.0, \"total\": 61401, \"totalTestResults\": 61401, \"posNeg\": 61401, \"fips\": 36, \"deathIncrease\": 70.0, \"hospitalizedIncrease\": 371.0, \"negativeIncrease\": 11152.0, \"positiveIncrease\": 4812.0, \"totalTestResultsIncrease\": 15964.0, \"ratio\": 0.24703180729955537, \"sinceDay0\": 4}, {\"index\": 653, \"date\": \"2020-03-23T00:00:00\", \"state\": \"NY\", \"positive\": 20875.0, \"negative\": 57414.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 2635.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"40440cdc2bc6ecd1d88040f01ebbdcb130a33257\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 114.0, \"hospitalized\": 2635.0, \"total\": 78289, \"totalTestResults\": 78289, \"posNeg\": 78289, \"fips\": 36, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 661.0, \"negativeIncrease\": 11181.0, \"positiveIncrease\": 5707.0, \"totalTestResultsIncrease\": 16888.0, \"ratio\": 0.2666402687478445, \"sinceDay0\": 5}, {\"index\": 597, \"date\": \"2020-03-24T00:00:00\", \"state\": \"NY\", \"positive\": 25665.0, \"negative\": 65605.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 3234.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ea3323c8187b8ff5574d3576f83791e01dd1521f\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 210.0, \"hospitalized\": 3234.0, \"total\": 91270, \"totalTestResults\": 91270, \"posNeg\": 91270, \"fips\": 36, \"deathIncrease\": 96.0, \"hospitalizedIncrease\": 599.0, \"negativeIncrease\": 8191.0, \"positiveIncrease\": 4790.0, \"totalTestResultsIncrease\": 12981.0, \"ratio\": 0.2811986413936671, \"sinceDay0\": 6}, {\"index\": 541, \"date\": \"2020-03-25T00:00:00\", \"state\": \"NY\", \"positive\": 30811.0, \"negative\": 72668.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 3805.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"332b18596170cd3e35617cfba48a5723aa2ec8f3\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 285.0, \"hospitalized\": 3805.0, \"total\": 103479, \"totalTestResults\": 103479, \"posNeg\": 103479, \"fips\": 36, \"deathIncrease\": 75.0, \"hospitalizedIncrease\": 571.0, \"negativeIncrease\": 7063.0, \"positiveIncrease\": 5146.0, \"totalTestResultsIncrease\": 12209.0, \"ratio\": 0.2977512345500053, \"sinceDay0\": 7}, {\"index\": 485, \"date\": \"2020-03-26T00:00:00\", \"state\": \"NY\", \"positive\": 37258.0, \"negative\": 84846.0, \"pending\": null, \"hospitalizedCurrently\": 5327.0, \"hospitalizedCumulative\": 6844.0, \"inIcuCurrently\": 1290.0, \"inIcuCumulative\": 1290.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c9e5180c39aab68a5662116651d17a05f4e4b966\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 385.0, \"hospitalized\": 6844.0, \"total\": 122104, \"totalTestResults\": 122104, \"posNeg\": 122104, \"fips\": 36, \"deathIncrease\": 100.0, \"hospitalizedIncrease\": 3039.0, \"negativeIncrease\": 12178.0, \"positiveIncrease\": 6447.0, \"totalTestResultsIncrease\": 18625.0, \"ratio\": 0.3051333289654721, \"sinceDay0\": 8}, {\"index\": 429, \"date\": \"2020-03-27T00:00:00\", \"state\": \"NY\", \"positive\": 44635.0, \"negative\": 101118.0, \"pending\": null, \"hospitalizedCurrently\": 6481.0, \"hospitalizedCumulative\": 8526.0, \"inIcuCurrently\": 1583.0, \"inIcuCumulative\": 1583.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 2045.0, \"hash\": \"d7f2dd3fcfbabebfdaeaa0a19e5db38d94fb112a\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 519.0, \"hospitalized\": 8526.0, \"total\": 145753, \"totalTestResults\": 145753, \"posNeg\": 145753, \"fips\": 36, \"deathIncrease\": 134.0, \"hospitalizedIncrease\": 1682.0, \"negativeIncrease\": 16272.0, \"positiveIncrease\": 7377.0, \"totalTestResultsIncrease\": 23649.0, \"ratio\": 0.3062372644130824, \"sinceDay0\": 9}, {\"index\": 373, \"date\": \"2020-03-28T00:00:00\", \"state\": \"NY\", \"positive\": 52318.0, \"negative\": 103616.0, \"pending\": null, \"hospitalizedCurrently\": 7328.0, \"hospitalizedCumulative\": 10054.0, \"inIcuCurrently\": 1755.0, \"inIcuCumulative\": 1755.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 2726.0, \"hash\": \"7592db95575a5d4ef226ff6014283d8d85a0db52\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 728.0, \"hospitalized\": 10054.0, \"total\": 155934, \"totalTestResults\": 155934, \"posNeg\": 155934, \"fips\": 36, \"deathIncrease\": 209.0, \"hospitalizedIncrease\": 1528.0, \"negativeIncrease\": 2498.0, \"positiveIncrease\": 7683.0, \"totalTestResultsIncrease\": 10181.0, \"ratio\": 0.33551374299383074, \"sinceDay0\": 10}, {\"index\": 317, \"date\": \"2020-03-29T00:00:00\", \"state\": \"NY\", \"positive\": 59513.0, \"negative\": 112847.0, \"pending\": null, \"hospitalizedCurrently\": 8503.0, \"hospitalizedCumulative\": 12075.0, \"inIcuCurrently\": 2037.0, \"inIcuCumulative\": 2037.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 3572.0, \"hash\": \"b5656122e28105ae4788a0d68eabb1ef68a06287\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 965.0, \"hospitalized\": 12075.0, \"total\": 172360, \"totalTestResults\": 172360, \"posNeg\": 172360, \"fips\": 36, \"deathIncrease\": 237.0, \"hospitalizedIncrease\": 2021.0, \"negativeIncrease\": 9231.0, \"positiveIncrease\": 7195.0, \"totalTestResultsIncrease\": 16426.0, \"ratio\": 0.34528312833604086, \"sinceDay0\": 11}, {\"index\": 261, \"date\": \"2020-03-30T00:00:00\", \"state\": \"NY\", \"positive\": 66497.0, \"negative\": 119971.0, \"pending\": null, \"hospitalizedCurrently\": 9517.0, \"hospitalizedCumulative\": 13721.0, \"inIcuCurrently\": 2352.0, \"inIcuCumulative\": 2352.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 4204.0, \"hash\": \"a749060bc47c2573b505c13198673b348ed3cc2b\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 1218.0, \"hospitalized\": 13721.0, \"total\": 186468, \"totalTestResults\": 186468, \"posNeg\": 186468, \"fips\": 36, \"deathIncrease\": 253.0, \"hospitalizedIncrease\": 1646.0, \"negativeIncrease\": 7124.0, \"positiveIncrease\": 6984.0, \"totalTestResultsIncrease\": 14108.0, \"ratio\": 0.35661346719008086, \"sinceDay0\": 12}, {\"index\": 205, \"date\": \"2020-03-31T00:00:00\", \"state\": \"NY\", \"positive\": 75795.0, \"negative\": 129391.0, \"pending\": null, \"hospitalizedCurrently\": 10929.0, \"hospitalizedCumulative\": 15904.0, \"inIcuCurrently\": 2710.0, \"inIcuCumulative\": 2710.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 4975.0, \"hash\": \"a3afdea93fae4daf8073978749d736d46e9134c6\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 1550.0, \"hospitalized\": 15904.0, \"total\": 205186, \"totalTestResults\": 205186, \"posNeg\": 205186, \"fips\": 36, \"deathIncrease\": 332.0, \"hospitalizedIncrease\": 2183.0, \"negativeIncrease\": 9420.0, \"positiveIncrease\": 9298.0, \"totalTestResultsIncrease\": 18718.0, \"ratio\": 0.3693965475227355, \"sinceDay0\": 13}, {\"index\": 149, \"date\": \"2020-04-01T00:00:00\", \"state\": \"NY\", \"positive\": 83712.0, \"negative\": 137168.0, \"pending\": null, \"hospitalizedCurrently\": 12226.0, \"hospitalizedCumulative\": 18368.0, \"inIcuCurrently\": 3022.0, \"inIcuCumulative\": 3022.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 6142.0, \"hash\": \"bc022c8f01dbc1a4d1f046ebce21c18a7b42cfa6\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 1941.0, \"hospitalized\": 18368.0, \"total\": 220880, \"totalTestResults\": 220880, \"posNeg\": 220880, \"fips\": 36, \"deathIncrease\": 391.0, \"hospitalizedIncrease\": 2464.0, \"negativeIncrease\": 7777.0, \"positiveIncrease\": 7917.0, \"totalTestResultsIncrease\": 15694.0, \"ratio\": 0.3789931184353495, \"sinceDay0\": 14}, {\"index\": 93, \"date\": \"2020-04-02T00:00:00\", \"state\": \"NY\", \"positive\": 92381.0, \"negative\": 146584.0, \"pending\": null, \"hospitalizedCurrently\": 13383.0, \"hospitalizedCumulative\": 20817.0, \"inIcuCurrently\": 3396.0, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 7434.0, \"hash\": \"764d0566c27be04c416c502640d5fffbcb8cad26\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 2373.0, \"hospitalized\": 20817.0, \"total\": 238965, \"totalTestResults\": 238965, \"posNeg\": 238965, \"fips\": 36, \"deathIncrease\": 432.0, \"hospitalizedIncrease\": 2449.0, \"negativeIncrease\": 9416.0, \"positiveIncrease\": 8669.0, \"totalTestResultsIncrease\": 18085.0, \"ratio\": 0.3865879940577072, \"sinceDay0\": 15}, {\"index\": 37, \"date\": \"2020-04-03T00:00:00\", \"state\": \"NY\", \"positive\": 102863.0, \"negative\": 168139.0, \"pending\": null, \"hospitalizedCurrently\": 14810.0, \"hospitalizedCumulative\": 23696.0, \"inIcuCurrently\": 3731.0, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 8886.0, \"hash\": \"accc00cef8483cff65936c97844fa6aa44976324\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 2935.0, \"hospitalized\": 23696.0, \"total\": 271002, \"totalTestResults\": 271002, \"posNeg\": 271002, \"fips\": 36, \"deathIncrease\": 562.0, \"hospitalizedIncrease\": 2879.0, \"negativeIncrease\": 21555.0, \"positiveIncrease\": 10482.0, \"totalTestResultsIncrease\": 32037.0, \"ratio\": 0.3795654644615169, \"sinceDay0\": 16}, {\"index\": 542, \"date\": \"2020-03-25T00:00:00\", \"state\": \"OH\", \"positive\": 704.0, \"negative\": 14060.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 182.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 74.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"37f081a41326a68ac5070d7ed52344f4839699b4\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 10.0, \"hospitalized\": 182.0, \"total\": 14764, \"totalTestResults\": 14764, \"posNeg\": 14764, \"fips\": 39, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 37.0, \"negativeIncrease\": 13920.0, \"positiveIncrease\": 140.0, \"totalTestResultsIncrease\": 14060.0, \"ratio\": 0.047683554592251425, \"sinceDay0\": 0}, {\"index\": 486, \"date\": \"2020-03-26T00:00:00\", \"state\": \"OH\", \"positive\": 867.0, \"negative\": 16449.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 223.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 91.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ec54f23b722a56fc6cb60ec0603c774a574b1b58\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 15.0, \"hospitalized\": 223.0, \"total\": 17316, \"totalTestResults\": 17316, \"posNeg\": 17316, \"fips\": 39, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 41.0, \"negativeIncrease\": 2389.0, \"positiveIncrease\": 163.0, \"totalTestResultsIncrease\": 2552.0, \"ratio\": 0.05006930006930007, \"sinceDay0\": 1}, {\"index\": 430, \"date\": \"2020-03-27T00:00:00\", \"state\": \"OH\", \"positive\": 1137.0, \"negative\": 19012.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 276.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 107.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"775347bbd54dbd3e3235391c7d2d5eb4c87cab2c\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 19.0, \"hospitalized\": 276.0, \"total\": 20149, \"totalTestResults\": 20149, \"posNeg\": 20149, \"fips\": 39, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 53.0, \"negativeIncrease\": 2563.0, \"positiveIncrease\": 270.0, \"totalTestResultsIncrease\": 2833.0, \"ratio\": 0.05642959948384535, \"sinceDay0\": 2}, {\"index\": 374, \"date\": \"2020-03-28T00:00:00\", \"state\": \"OH\", \"positive\": 1406.0, \"negative\": 19012.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 344.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 123.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e1ae2e6533d6476a00dce3fdf53a9d06d6df11c3\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 25.0, \"hospitalized\": 344.0, \"total\": 20418, \"totalTestResults\": 20418, \"posNeg\": 20418, \"fips\": 39, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 68.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 269.0, \"totalTestResultsIncrease\": 269.0, \"ratio\": 0.06886080909001861, \"sinceDay0\": 3}, {\"index\": 318, \"date\": \"2020-03-29T00:00:00\", \"state\": \"OH\", \"positive\": 1653.0, \"negative\": 19012.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 403.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 139.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"10c9da94683ad45dfb568422d04af2604ade7ca3\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 29.0, \"hospitalized\": 403.0, \"total\": 20665, \"totalTestResults\": 20665, \"posNeg\": 20665, \"fips\": 39, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 59.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 247.0, \"totalTestResultsIncrease\": 247.0, \"ratio\": 0.07999032180014518, \"sinceDay0\": 4}, {\"index\": 262, \"date\": \"2020-03-30T00:00:00\", \"state\": \"OH\", \"positive\": 1933.0, \"negative\": 25342.0, \"pending\": null, \"hospitalizedCurrently\": 312.0, \"hospitalizedCumulative\": 475.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 163.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4919c330ab80341299bf33ea25f67dd58a96dd17\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 39.0, \"hospitalized\": 475.0, \"total\": 27275, \"totalTestResults\": 27275, \"posNeg\": 27275, \"fips\": 39, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 72.0, \"negativeIncrease\": 6330.0, \"positiveIncrease\": 280.0, \"totalTestResultsIncrease\": 6610.0, \"ratio\": 0.07087076076993584, \"sinceDay0\": 5}, {\"index\": 206, \"date\": \"2020-03-31T00:00:00\", \"state\": \"OH\", \"positive\": 2199.0, \"negative\": 26992.0, \"pending\": null, \"hospitalizedCurrently\": 387.0, \"hospitalizedCumulative\": 585.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 198.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"2b80954e16b24e4b7d7e8599a71763c1081a8715\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 55.0, \"hospitalized\": 585.0, \"total\": 29191, \"totalTestResults\": 29191, \"posNeg\": 29191, \"fips\": 39, \"deathIncrease\": 16.0, \"hospitalizedIncrease\": 110.0, \"negativeIncrease\": 1650.0, \"positiveIncrease\": 266.0, \"totalTestResultsIncrease\": 1916.0, \"ratio\": 0.075331437771916, \"sinceDay0\": 6}, {\"index\": 150, \"date\": \"2020-04-01T00:00:00\", \"state\": \"OH\", \"positive\": 2547.0, \"negative\": 26992.0, \"pending\": null, \"hospitalizedCurrently\": 679.0, \"hospitalizedCumulative\": 679.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 222.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"dbf14be5566651ac0a96384a5162108330436895\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 65.0, \"hospitalized\": 679.0, \"total\": 29539, \"totalTestResults\": 29539, \"posNeg\": 29539, \"fips\": 39, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 94.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 348.0, \"totalTestResultsIncrease\": 348.0, \"ratio\": 0.08622499069027388, \"sinceDay0\": 7}, {\"index\": 94, \"date\": \"2020-04-02T00:00:00\", \"state\": \"OH\", \"positive\": 2902.0, \"negative\": 32016.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 802.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 260.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9cb637113ec0c42f449d0e11e3fb945befdcb348\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 81.0, \"hospitalized\": 802.0, \"total\": 34918, \"totalTestResults\": 34918, \"posNeg\": 34918, \"fips\": 39, \"deathIncrease\": 16.0, \"hospitalizedIncrease\": 123.0, \"negativeIncrease\": 5024.0, \"positiveIncrease\": 355.0, \"totalTestResultsIncrease\": 5379.0, \"ratio\": 0.08310899822441148, \"sinceDay0\": 8}, {\"index\": 38, \"date\": \"2020-04-03T00:00:00\", \"state\": \"OH\", \"positive\": 3312.0, \"negative\": 35063.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 895.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 288.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4f9def22c6f51b8839104ffcb46d41122de71744\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 91.0, \"hospitalized\": 895.0, \"total\": 38375, \"totalTestResults\": 38375, \"posNeg\": 38375, \"fips\": 39, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 93.0, \"negativeIncrease\": 3047.0, \"positiveIncrease\": 410.0, \"totalTestResultsIncrease\": 3457.0, \"ratio\": 0.08630618892508143, \"sinceDay0\": 9}, {\"index\": 375, \"date\": \"2020-03-28T00:00:00\", \"state\": \"OK\", \"positive\": 377.0, \"negative\": 1180.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 126.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0955acd0f7dadd282ecf522f79bd9042b3af7b95\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 15.0, \"hospitalized\": 126.0, \"total\": 1557, \"totalTestResults\": 1557, \"posNeg\": 1557, \"fips\": 40, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 21.0, \"negativeIncrease\": 96.0, \"positiveIncrease\": 55.0, \"totalTestResultsIncrease\": 151.0, \"ratio\": 0.24213230571612074, \"sinceDay0\": 0}, {\"index\": 319, \"date\": \"2020-03-29T00:00:00\", \"state\": \"OK\", \"positive\": 429.0, \"negative\": 1205.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 140.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"90830f70410babf14d5be9257a440aec4c3a2752\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 16.0, \"hospitalized\": 140.0, \"total\": 1634, \"totalTestResults\": 1634, \"posNeg\": 1634, \"fips\": 40, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 14.0, \"negativeIncrease\": 25.0, \"positiveIncrease\": 52.0, \"totalTestResultsIncrease\": 77.0, \"ratio\": 0.26254589963280295, \"sinceDay0\": 1}, {\"index\": 263, \"date\": \"2020-03-30T00:00:00\", \"state\": \"OK\", \"positive\": 481.0, \"negative\": 1207.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 153.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b3b3a86a6005e6bb134a5072898bce9dfe1e5b69\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 17.0, \"hospitalized\": 153.0, \"total\": 1688, \"totalTestResults\": 1688, \"posNeg\": 1688, \"fips\": 40, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 13.0, \"negativeIncrease\": 2.0, \"positiveIncrease\": 52.0, \"totalTestResultsIncrease\": 54.0, \"ratio\": 0.2849526066350711, \"sinceDay0\": 2}, {\"index\": 207, \"date\": \"2020-03-31T00:00:00\", \"state\": \"OK\", \"positive\": 565.0, \"negative\": 1229.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 177.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"7644495f3049f57946f6ac8b36f1eb1ffc6b7991\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 23.0, \"hospitalized\": 177.0, \"total\": 1794, \"totalTestResults\": 1794, \"posNeg\": 1794, \"fips\": 40, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 24.0, \"negativeIncrease\": 22.0, \"positiveIncrease\": 84.0, \"totalTestResultsIncrease\": 106.0, \"ratio\": 0.3149386845039019, \"sinceDay0\": 3}, {\"index\": 151, \"date\": \"2020-04-01T00:00:00\", \"state\": \"OK\", \"positive\": 719.0, \"negative\": 1248.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 219.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ac29d7657881eeb536d49135e22894a8e669ba86\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 30.0, \"hospitalized\": 219.0, \"total\": 1967, \"totalTestResults\": 1967, \"posNeg\": 1967, \"fips\": 40, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 42.0, \"negativeIncrease\": 19.0, \"positiveIncrease\": 154.0, \"totalTestResultsIncrease\": 173.0, \"ratio\": 0.36553126588713775, \"sinceDay0\": 4}, {\"index\": 95, \"date\": \"2020-04-02T00:00:00\", \"state\": \"OK\", \"positive\": 879.0, \"negative\": 1265.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 257.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"566ac2a75a879b83eb20085c9ea44852fa14d63a\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 34.0, \"hospitalized\": 257.0, \"total\": 2144, \"totalTestResults\": 2144, \"posNeg\": 2144, \"fips\": 40, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 38.0, \"negativeIncrease\": 17.0, \"positiveIncrease\": 160.0, \"totalTestResultsIncrease\": 177.0, \"ratio\": 0.4099813432835821, \"sinceDay0\": 5}, {\"index\": 39, \"date\": \"2020-04-03T00:00:00\", \"state\": \"OK\", \"positive\": 988.0, \"negative\": 1315.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 289.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8702f6d3df27dc4ba14e053f1f3ea347acc7dbcf\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 38.0, \"hospitalized\": 289.0, \"total\": 2303, \"totalTestResults\": 2303, \"posNeg\": 2303, \"fips\": 40, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 32.0, \"negativeIncrease\": 50.0, \"positiveIncrease\": 109.0, \"totalTestResultsIncrease\": 159.0, \"ratio\": 0.4290056448111159, \"sinceDay0\": 6}, {\"index\": 488, \"date\": \"2020-03-26T00:00:00\", \"state\": \"OR\", \"positive\": 327.0, \"negative\": 6953.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 90.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ddb030ea072a2fe01a8d71d2a5a24e917d4e8ea2\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 11.0, \"hospitalized\": 90.0, \"total\": 7280, \"totalTestResults\": 7280, \"posNeg\": 7280, \"fips\": 41, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 29.0, \"negativeIncrease\": 2603.0, \"positiveIncrease\": 118.0, \"totalTestResultsIncrease\": 2721.0, \"ratio\": 0.04491758241758242, \"sinceDay0\": 0}, {\"index\": 432, \"date\": \"2020-03-27T00:00:00\", \"state\": \"OR\", \"positive\": 414.0, \"negative\": 8510.0, \"pending\": null, \"hospitalizedCurrently\": 91.0, \"hospitalizedCumulative\": 102.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 31.0, \"onVentilatorCumulative\": 31.0, \"recovered\": null, \"hash\": \"b60609c583643679e2b128c34d9394e1a6104f4d\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 12.0, \"hospitalized\": 102.0, \"total\": 8924, \"totalTestResults\": 8924, \"posNeg\": 8924, \"fips\": 41, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 12.0, \"negativeIncrease\": 1557.0, \"positiveIncrease\": 87.0, \"totalTestResultsIncrease\": 1644.0, \"ratio\": 0.04639175257731959, \"sinceDay0\": 1}, {\"index\": 376, \"date\": \"2020-03-28T00:00:00\", \"state\": \"OR\", \"positive\": 479.0, \"negative\": 9693.0, \"pending\": null, \"hospitalizedCurrently\": 107.0, \"hospitalizedCumulative\": 117.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 31.0, \"onVentilatorCumulative\": 31.0, \"recovered\": null, \"hash\": \"4615188d4b688420245f6cee70b98db2cee2680e\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 13.0, \"hospitalized\": 117.0, \"total\": 10172, \"totalTestResults\": 10172, \"posNeg\": 10172, \"fips\": 41, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 15.0, \"negativeIncrease\": 1183.0, \"positiveIncrease\": 65.0, \"totalTestResultsIncrease\": 1248.0, \"ratio\": 0.04709005112072356, \"sinceDay0\": 2}, {\"index\": 320, \"date\": \"2020-03-29T00:00:00\", \"state\": \"OR\", \"positive\": 548.0, \"negative\": 10878.0, \"pending\": null, \"hospitalizedCurrently\": 107.0, \"hospitalizedCumulative\": 129.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 37.0, \"onVentilatorCumulative\": 37.0, \"recovered\": null, \"hash\": \"fe238901e3353621bc8b5a2c6bdc5b61a26b07fb\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 13.0, \"hospitalized\": 129.0, \"total\": 11426, \"totalTestResults\": 11426, \"posNeg\": 11426, \"fips\": 41, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 12.0, \"negativeIncrease\": 1185.0, \"positiveIncrease\": 69.0, \"totalTestResultsIncrease\": 1254.0, \"ratio\": 0.04796079117801506, \"sinceDay0\": 3}, {\"index\": 264, \"date\": \"2020-03-30T00:00:00\", \"state\": \"OR\", \"positive\": 606.0, \"negative\": 12277.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 140.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 39.0, \"onVentilatorCumulative\": 39.0, \"recovered\": null, \"hash\": \"c543299db7bd820697dd1e52f379790ec57de15a\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 16.0, \"hospitalized\": 140.0, \"total\": 12883, \"totalTestResults\": 12883, \"posNeg\": 12883, \"fips\": 41, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 11.0, \"negativeIncrease\": 1399.0, \"positiveIncrease\": 58.0, \"totalTestResultsIncrease\": 1457.0, \"ratio\": 0.047038733214313434, \"sinceDay0\": 4}, {\"index\": 208, \"date\": \"2020-03-31T00:00:00\", \"state\": \"OR\", \"positive\": 690.0, \"negative\": 13136.0, \"pending\": null, \"hospitalizedCurrently\": 132.0, \"hospitalizedCumulative\": 154.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 40.0, \"onVentilatorCumulative\": 40.0, \"recovered\": null, \"hash\": \"e44596521fd7149cd51b2feacaf8439e95aa4e5d\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 18.0, \"hospitalized\": 154.0, \"total\": 13826, \"totalTestResults\": 13826, \"posNeg\": 13826, \"fips\": 41, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 14.0, \"negativeIncrease\": 859.0, \"positiveIncrease\": 84.0, \"totalTestResultsIncrease\": 943.0, \"ratio\": 0.049905974251410384, \"sinceDay0\": 5}, {\"index\": 152, \"date\": \"2020-04-01T00:00:00\", \"state\": \"OR\", \"positive\": 690.0, \"negative\": 13136.0, \"pending\": null, \"hospitalizedCurrently\": 132.0, \"hospitalizedCumulative\": 154.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 40.0, \"onVentilatorCumulative\": 40.0, \"recovered\": null, \"hash\": \"c37eb024e65c3469e098cccb5acb7c4e54ced2df\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 18.0, \"hospitalized\": 154.0, \"total\": 13826, \"totalTestResults\": 13826, \"posNeg\": 13826, \"fips\": 41, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.049905974251410384, \"sinceDay0\": 6}, {\"index\": 96, \"date\": \"2020-04-02T00:00:00\", \"state\": \"OR\", \"positive\": 736.0, \"negative\": 14132.0, \"pending\": null, \"hospitalizedCurrently\": 134.0, \"hospitalizedCumulative\": 167.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 38.0, \"onVentilatorCumulative\": 40.0, \"recovered\": null, \"hash\": \"b771658b625232d8a1f579f80eab46699a03f83b\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 19.0, \"hospitalized\": 167.0, \"total\": 14868, \"totalTestResults\": 14868, \"posNeg\": 14868, \"fips\": 41, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 13.0, \"negativeIncrease\": 996.0, \"positiveIncrease\": 46.0, \"totalTestResultsIncrease\": 1042.0, \"ratio\": 0.04950228679042239, \"sinceDay0\": 7}, {\"index\": 40, \"date\": \"2020-04-03T00:00:00\", \"state\": \"OR\", \"positive\": 826.0, \"negative\": 15259.0, \"pending\": null, \"hospitalizedCurrently\": 188.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 38.0, \"onVentilatorCumulative\": 40.0, \"recovered\": null, \"hash\": \"b2e5b88bbad8239be3032b82f4afe354fc21fe96\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 21.0, \"hospitalized\": null, \"total\": 16085, \"totalTestResults\": 16085, \"posNeg\": 16085, \"fips\": 41, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1127.0, \"positiveIncrease\": 90.0, \"totalTestResultsIncrease\": 1217.0, \"ratio\": 0.0513521914827479, \"sinceDay0\": 8}, {\"index\": 545, \"date\": \"2020-03-25T00:00:00\", \"state\": \"PA\", \"positive\": 1127.0, \"negative\": 11193.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a04cdbf57ddbd0c489b48882295db9559fb037b5\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 11.0, \"hospitalized\": null, \"total\": 12320, \"totalTestResults\": 12320, \"posNeg\": 12320, \"fips\": 42, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2550.0, \"positiveIncrease\": 276.0, \"totalTestResultsIncrease\": 2826.0, \"ratio\": 0.09147727272727273, \"sinceDay0\": 0}, {\"index\": 489, \"date\": \"2020-03-26T00:00:00\", \"state\": \"PA\", \"positive\": 1687.0, \"negative\": 16441.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"7712fd7f15f40e975c2a503bd7633edd4387df7e\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 16.0, \"hospitalized\": null, \"total\": 18128, \"totalTestResults\": 18128, \"posNeg\": 18128, \"fips\": 42, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5248.0, \"positiveIncrease\": 560.0, \"totalTestResultsIncrease\": 5808.0, \"ratio\": 0.09306045895851721, \"sinceDay0\": 1}, {\"index\": 433, \"date\": \"2020-03-27T00:00:00\", \"state\": \"PA\", \"positive\": 2218.0, \"negative\": 21016.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 241.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e80400da9fd2c8e84d22566050fa2b705d7fdde0\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 22.0, \"hospitalized\": 241.0, \"total\": 23234, \"totalTestResults\": 23234, \"posNeg\": 23234, \"fips\": 42, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 241.0, \"negativeIncrease\": 4575.0, \"positiveIncrease\": 531.0, \"totalTestResultsIncrease\": 5106.0, \"ratio\": 0.09546354480502711, \"sinceDay0\": 2}, {\"index\": 377, \"date\": \"2020-03-28T00:00:00\", \"state\": \"PA\", \"positive\": 2751.0, \"negative\": 25254.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 316.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0b00e5e4eec84c744f25bfd23aa3ff905cca2f2e\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 34.0, \"hospitalized\": 316.0, \"total\": 28005, \"totalTestResults\": 28005, \"posNeg\": 28005, \"fips\": 42, \"deathIncrease\": 12.0, \"hospitalizedIncrease\": 75.0, \"negativeIncrease\": 4238.0, \"positiveIncrease\": 533.0, \"totalTestResultsIncrease\": 4771.0, \"ratio\": 0.09823245848955543, \"sinceDay0\": 3}, {\"index\": 321, \"date\": \"2020-03-29T00:00:00\", \"state\": \"PA\", \"positive\": 3394.0, \"negative\": 30061.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 353.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"da55c1eba9c83cb8c9e3ce7b474a2d7f74f7ecbc\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 38.0, \"hospitalized\": 353.0, \"total\": 33455, \"totalTestResults\": 33455, \"posNeg\": 33455, \"fips\": 42, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 37.0, \"negativeIncrease\": 4807.0, \"positiveIncrease\": 643.0, \"totalTestResultsIncrease\": 5450.0, \"ratio\": 0.10144970856374234, \"sinceDay0\": 4}, {\"index\": 265, \"date\": \"2020-03-30T00:00:00\", \"state\": \"PA\", \"positive\": 4087.0, \"negative\": 33777.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 386.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"cac05153a6de7331306734979416c0bbbca4be85\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 49.0, \"hospitalized\": 386.0, \"total\": 37864, \"totalTestResults\": 37864, \"posNeg\": 37864, \"fips\": 42, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 33.0, \"negativeIncrease\": 3716.0, \"positiveIncrease\": 693.0, \"totalTestResultsIncrease\": 4409.0, \"ratio\": 0.1079389393619269, \"sinceDay0\": 5}, {\"index\": 209, \"date\": \"2020-03-31T00:00:00\", \"state\": \"PA\", \"positive\": 4843.0, \"negative\": 37645.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 514.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f2ddb226108bf8650a4c9d6b6394ff9083e3adbc\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 63.0, \"hospitalized\": 514.0, \"total\": 42488, \"totalTestResults\": 42488, \"posNeg\": 42488, \"fips\": 42, \"deathIncrease\": 14.0, \"hospitalizedIncrease\": 128.0, \"negativeIncrease\": 3868.0, \"positiveIncrease\": 756.0, \"totalTestResultsIncrease\": 4624.0, \"ratio\": 0.11398512521182451, \"sinceDay0\": 6}, {\"index\": 153, \"date\": \"2020-04-01T00:00:00\", \"state\": \"PA\", \"positive\": 5805.0, \"negative\": 42427.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 620.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"575ea7e224d4f1f6797bed8fe0a7902daad3ffab\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 74.0, \"hospitalized\": 620.0, \"total\": 48232, \"totalTestResults\": 48232, \"posNeg\": 48232, \"fips\": 42, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 106.0, \"negativeIncrease\": 4782.0, \"positiveIncrease\": 962.0, \"totalTestResultsIncrease\": 5744.0, \"ratio\": 0.12035578039475867, \"sinceDay0\": 7}, {\"index\": 97, \"date\": \"2020-04-02T00:00:00\", \"state\": \"PA\", \"positive\": 7016.0, \"negative\": 47698.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 730.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0dc7935c18797a0f7616c41c364e159c12d62657\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 90.0, \"hospitalized\": 730.0, \"total\": 54714, \"totalTestResults\": 54714, \"posNeg\": 54714, \"fips\": 42, \"deathIncrease\": 16.0, \"hospitalizedIncrease\": 110.0, \"negativeIncrease\": 5271.0, \"positiveIncrease\": 1211.0, \"totalTestResultsIncrease\": 6482.0, \"ratio\": 0.1282304346236795, \"sinceDay0\": 8}, {\"index\": 41, \"date\": \"2020-04-03T00:00:00\", \"state\": \"PA\", \"positive\": 8420.0, \"negative\": 53695.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 852.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"aade9d40167b6e73754871c40386092b362363a2\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 102.0, \"hospitalized\": 852.0, \"total\": 62115, \"totalTestResults\": 62115, \"posNeg\": 62115, \"fips\": 42, \"deathIncrease\": 12.0, \"hospitalizedIncrease\": 122.0, \"negativeIncrease\": 5997.0, \"positiveIncrease\": 1404.0, \"totalTestResultsIncrease\": 7401.0, \"ratio\": 0.1355550189165258, \"sinceDay0\": 9}, {\"index\": 154, \"date\": \"2020-04-01T00:00:00\", \"state\": \"PR\", \"positive\": 286.0, \"negative\": 1409.0, \"pending\": 897.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ae0129f382eb5f04d790633ebc4cfb9e7e00f89a\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 11.0, \"hospitalized\": null, \"total\": 2592, \"totalTestResults\": 1695, \"posNeg\": 1695, \"fips\": 72, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 214.0, \"positiveIncrease\": 47.0, \"totalTestResultsIncrease\": 261.0, \"ratio\": 0.11033950617283951, \"sinceDay0\": 0}, {\"index\": 98, \"date\": \"2020-04-02T00:00:00\", \"state\": \"PR\", \"positive\": 316.0, \"negative\": 1604.0, \"pending\": 1119.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"2b9a9af18f7c56e17ab89f48b071e4c9afd668a9\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 3039, \"totalTestResults\": 1920, \"posNeg\": 1920, \"fips\": 72, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 195.0, \"positiveIncrease\": 30.0, \"totalTestResultsIncrease\": 225.0, \"ratio\": 0.1039815728858177, \"sinceDay0\": 1}, {\"index\": 42, \"date\": \"2020-04-03T00:00:00\", \"state\": \"PR\", \"positive\": 378.0, \"negative\": 2049.0, \"pending\": 1055.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"31c1cb53249716895ec3490c18feb99b785a620a\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 15.0, \"hospitalized\": null, \"total\": 3482, \"totalTestResults\": 2427, \"posNeg\": 2427, \"fips\": 72, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 445.0, \"positiveIncrease\": 62.0, \"totalTestResultsIncrease\": 507.0, \"ratio\": 0.10855829982768524, \"sinceDay0\": 2}, {\"index\": 155, \"date\": \"2020-04-01T00:00:00\", \"state\": \"RI\", \"positive\": 566.0, \"negative\": 3831.0, \"pending\": null, \"hospitalizedCurrently\": 60.0, \"hospitalizedCumulative\": 60.0, \"inIcuCurrently\": 14.0, \"inIcuCumulative\": 14.0, \"onVentilatorCurrently\": 6.0, \"onVentilatorCumulative\": 6.0, \"recovered\": 35.0, \"hash\": \"4a3df6b45504443ee54b0f0fa2910b3a13ffea72\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 10.0, \"hospitalized\": 60.0, \"total\": 4397, \"totalTestResults\": 4397, \"posNeg\": 4397, \"fips\": 44, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 1.0, \"negativeIncrease\": 355.0, \"positiveIncrease\": 78.0, \"totalTestResultsIncrease\": 433.0, \"ratio\": 0.12872413008869685, \"sinceDay0\": 0}, {\"index\": 99, \"date\": \"2020-04-02T00:00:00\", \"state\": \"RI\", \"positive\": 657.0, \"negative\": 4412.0, \"pending\": null, \"hospitalizedCurrently\": 72.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": 14.0, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 6.0, \"onVentilatorCumulative\": 6.0, \"recovered\": 35.0, \"hash\": \"7e7e0cb0eedf94e8de8cc04fbfcbb89fb9b01d54\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 5069, \"totalTestResults\": 5069, \"posNeg\": 5069, \"fips\": 44, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 581.0, \"positiveIncrease\": 91.0, \"totalTestResultsIncrease\": 672.0, \"ratio\": 0.12961136318800554, \"sinceDay0\": 1}, {\"index\": 43, \"date\": \"2020-04-03T00:00:00\", \"state\": \"RI\", \"positive\": 711.0, \"negative\": 4412.0, \"pending\": null, \"hospitalizedCurrently\": 72.0, \"hospitalizedCumulative\": 72.0, \"inIcuCurrently\": 14.0, \"inIcuCumulative\": 14.0, \"onVentilatorCurrently\": 6.0, \"onVentilatorCumulative\": 6.0, \"recovered\": 35.0, \"hash\": \"724f26efb1056eab080d70de6d4ca0dfc034af1c\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 14.0, \"hospitalized\": 72.0, \"total\": 5123, \"totalTestResults\": 5123, \"posNeg\": 5123, \"fips\": 44, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 72.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 54.0, \"totalTestResultsIncrease\": 54.0, \"ratio\": 0.1387858676556705, \"sinceDay0\": 2}, {\"index\": 380, \"date\": \"2020-03-28T00:00:00\", \"state\": \"SC\", \"positive\": 539.0, \"negative\": 2408.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 129.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4328bb39fcb99f8666b72daf09cc3812ab1727cf\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 13.0, \"hospitalized\": 129.0, \"total\": 2947, \"totalTestResults\": 2947, \"posNeg\": 2947, \"fips\": 45, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 20.0, \"negativeIncrease\": 101.0, \"positiveIncrease\": 83.0, \"totalTestResultsIncrease\": 184.0, \"ratio\": 0.1828978622327791, \"sinceDay0\": 0}, {\"index\": 324, \"date\": \"2020-03-29T00:00:00\", \"state\": \"SC\", \"positive\": 774.0, \"negative\": 3015.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 129.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"6e080ec1f424aec417c9000a8c610501e2870c5a\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 16.0, \"hospitalized\": 129.0, \"total\": 3789, \"totalTestResults\": 3789, \"posNeg\": 3789, \"fips\": 45, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 607.0, \"positiveIncrease\": 235.0, \"totalTestResultsIncrease\": 842.0, \"ratio\": 0.2042755344418052, \"sinceDay0\": 1}, {\"index\": 268, \"date\": \"2020-03-30T00:00:00\", \"state\": \"SC\", \"positive\": 925.0, \"negative\": 4160.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 129.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ceb9937dd126bead37bfbbd92bde9286cf955c64\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 18.0, \"hospitalized\": 129.0, \"total\": 5085, \"totalTestResults\": 5085, \"posNeg\": 5085, \"fips\": 45, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1145.0, \"positiveIncrease\": 151.0, \"totalTestResultsIncrease\": 1296.0, \"ratio\": 0.18190757128810225, \"sinceDay0\": 2}, {\"index\": 212, \"date\": \"2020-03-31T00:00:00\", \"state\": \"SC\", \"positive\": 1083.0, \"negative\": 4616.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 259.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"34a657bc2def360f99f18a1a872eae0f3b37583b\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 22.0, \"hospitalized\": 259.0, \"total\": 5699, \"totalTestResults\": 5699, \"posNeg\": 5699, \"fips\": 45, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 130.0, \"negativeIncrease\": 456.0, \"positiveIncrease\": 158.0, \"totalTestResultsIncrease\": 614.0, \"ratio\": 0.1900333391823127, \"sinceDay0\": 3}, {\"index\": 156, \"date\": \"2020-04-01T00:00:00\", \"state\": \"SC\", \"positive\": 1293.0, \"negative\": 5033.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 349.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a321818d113ea1e8063433667ca10f117f264d11\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 26.0, \"hospitalized\": 349.0, \"total\": 6326, \"totalTestResults\": 6326, \"posNeg\": 6326, \"fips\": 45, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 90.0, \"negativeIncrease\": 417.0, \"positiveIncrease\": 210.0, \"totalTestResultsIncrease\": 627.0, \"ratio\": 0.20439456212456528, \"sinceDay0\": 4}, {\"index\": 100, \"date\": \"2020-04-02T00:00:00\", \"state\": \"SC\", \"positive\": 1554.0, \"negative\": 5441.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 896.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0226337007d3996a9de9db3c450c9eae6f65f47d\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 31.0, \"hospitalized\": 896.0, \"total\": 6995, \"totalTestResults\": 6995, \"posNeg\": 6995, \"fips\": 45, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 547.0, \"negativeIncrease\": 408.0, \"positiveIncrease\": 261.0, \"totalTestResultsIncrease\": 669.0, \"ratio\": 0.22215868477483916, \"sinceDay0\": 5}, {\"index\": 44, \"date\": \"2020-04-03T00:00:00\", \"state\": \"SC\", \"positive\": 1554.0, \"negative\": 5441.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 241.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"83a9526f05767b32166dffbd1c0668fe1e12c1b5\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 31.0, \"hospitalized\": 241.0, \"total\": 6995, \"totalTestResults\": 6995, \"posNeg\": 6995, \"fips\": 45, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": -655.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.22215868477483916, \"sinceDay0\": 6}, {\"index\": 270, \"date\": \"2020-03-30T00:00:00\", \"state\": \"TN\", \"positive\": 1834.0, \"negative\": 21470.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 148.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ec22bf9d70375a31624ca8e4f9483a01aac06b52\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 13.0, \"hospitalized\": 148.0, \"total\": 23304, \"totalTestResults\": 23304, \"posNeg\": 23304, \"fips\": 47, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 15.0, \"negativeIncrease\": 2433.0, \"positiveIncrease\": 297.0, \"totalTestResultsIncrease\": 2730.0, \"ratio\": 0.07869893580501201, \"sinceDay0\": 0}, {\"index\": 214, \"date\": \"2020-03-31T00:00:00\", \"state\": \"TN\", \"positive\": 2239.0, \"negative\": 25121.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 175.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 121.0, \"hash\": \"8b236550ae5ec5e539ddcd63854658d0193987d2\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 23.0, \"hospitalized\": 175.0, \"total\": 27360, \"totalTestResults\": 27360, \"posNeg\": 27360, \"fips\": 47, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 27.0, \"negativeIncrease\": 3651.0, \"positiveIncrease\": 405.0, \"totalTestResultsIncrease\": 4056.0, \"ratio\": 0.08183479532163743, \"sinceDay0\": 1}, {\"index\": 158, \"date\": \"2020-04-01T00:00:00\", \"state\": \"TN\", \"positive\": 2683.0, \"negative\": 29769.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 200.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 137.0, \"hash\": \"9e9bb3593287cbf3b938263422d21dba45a771e1\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 24.0, \"hospitalized\": 200.0, \"total\": 32452, \"totalTestResults\": 32452, \"posNeg\": 32452, \"fips\": 47, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 25.0, \"negativeIncrease\": 4648.0, \"positiveIncrease\": 444.0, \"totalTestResultsIncrease\": 5092.0, \"ratio\": 0.08267595217552078, \"sinceDay0\": 2}, {\"index\": 102, \"date\": \"2020-04-02T00:00:00\", \"state\": \"TN\", \"positive\": 2845.0, \"negative\": 31766.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 263.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 220.0, \"hash\": \"59629453e17df16d80dffa1ce35c5dcb1e94c5a2\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 32.0, \"hospitalized\": 263.0, \"total\": 34611, \"totalTestResults\": 34611, \"posNeg\": 34611, \"fips\": 47, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 63.0, \"negativeIncrease\": 1997.0, \"positiveIncrease\": 162.0, \"totalTestResultsIncrease\": 2159.0, \"ratio\": 0.0821993008003236, \"sinceDay0\": 3}, {\"index\": 46, \"date\": \"2020-04-03T00:00:00\", \"state\": \"TN\", \"positive\": 3067.0, \"negative\": 34772.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 293.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 248.0, \"hash\": \"019351b10edda80786a653adea2799cab1992e8a\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 37.0, \"hospitalized\": 293.0, \"total\": 37839, \"totalTestResults\": 37839, \"posNeg\": 37839, \"fips\": 47, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 30.0, \"negativeIncrease\": 3006.0, \"positiveIncrease\": 222.0, \"totalTestResultsIncrease\": 3228.0, \"ratio\": 0.0810539390575861, \"sinceDay0\": 4}, {\"index\": 551, \"date\": \"2020-03-25T00:00:00\", \"state\": \"TX\", \"positive\": 974.0, \"negative\": 12520.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"94d22076ee33e8232bf343c6e7cb48853cad8083\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 13494, \"totalTestResults\": 13494, \"posNeg\": 13494, \"fips\": 48, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1763.0, \"positiveIncrease\": 564.0, \"totalTestResultsIncrease\": 2327.0, \"ratio\": 0.07218022824959242, \"sinceDay0\": 0}, {\"index\": 495, \"date\": \"2020-03-26T00:00:00\", \"state\": \"TX\", \"positive\": 1396.0, \"negative\": 20028.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"fa643c14dbc1c896f7d243f22f25aa05e563d6af\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 18.0, \"hospitalized\": null, \"total\": 21424, \"totalTestResults\": 21424, \"posNeg\": 21424, \"fips\": 48, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 7508.0, \"positiveIncrease\": 422.0, \"totalTestResultsIncrease\": 7930.0, \"ratio\": 0.06516056758775206, \"sinceDay0\": 1}, {\"index\": 439, \"date\": \"2020-03-27T00:00:00\", \"state\": \"TX\", \"positive\": 1731.0, \"negative\": 21935.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8409fedc70d96ce072fcd2c62d1101488f155d94\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 23.0, \"hospitalized\": null, \"total\": 23666, \"totalTestResults\": 23666, \"posNeg\": 23666, \"fips\": 48, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1907.0, \"positiveIncrease\": 335.0, \"totalTestResultsIncrease\": 2242.0, \"ratio\": 0.07314290543395588, \"sinceDay0\": 2}, {\"index\": 383, \"date\": \"2020-03-28T00:00:00\", \"state\": \"TX\", \"positive\": 2052.0, \"negative\": 23208.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9d601857ab7b38aa375d52c046e21db2fe147e92\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 27.0, \"hospitalized\": null, \"total\": 25260, \"totalTestResults\": 25260, \"posNeg\": 25260, \"fips\": 48, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1273.0, \"positiveIncrease\": 321.0, \"totalTestResultsIncrease\": 1594.0, \"ratio\": 0.08123515439429929, \"sinceDay0\": 3}, {\"index\": 327, \"date\": \"2020-03-29T00:00:00\", \"state\": \"TX\", \"positive\": 2552.0, \"negative\": 23208.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a9b7fb107b90949f6bd5ab29b957e2cf6e46f9c5\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 34.0, \"hospitalized\": null, \"total\": 25760, \"totalTestResults\": 25760, \"posNeg\": 25760, \"fips\": 48, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 500.0, \"totalTestResultsIncrease\": 500.0, \"ratio\": 0.09906832298136646, \"sinceDay0\": 4}, {\"index\": 271, \"date\": \"2020-03-30T00:00:00\", \"state\": \"TX\", \"positive\": 2877.0, \"negative\": 33003.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 38.0, \"hash\": \"97f0dea6f50c349bb0a5bb31afde8cf9ad5ffcf8\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 34.0, \"hospitalized\": null, \"total\": 35880, \"totalTestResults\": 35880, \"posNeg\": 35880, \"fips\": 48, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 9795.0, \"positiveIncrease\": 325.0, \"totalTestResultsIncrease\": 10120.0, \"ratio\": 0.08018394648829431, \"sinceDay0\": 5}, {\"index\": 215, \"date\": \"2020-03-31T00:00:00\", \"state\": \"TX\", \"positive\": 3266.0, \"negative\": 39726.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 196.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 38.0, \"hash\": \"49880c7d533574ad29d17299ae133096cba20a3c\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 41.0, \"hospitalized\": 196.0, \"total\": 42992, \"totalTestResults\": 42992, \"posNeg\": 42992, \"fips\": 48, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 196.0, \"negativeIncrease\": 6723.0, \"positiveIncrease\": 389.0, \"totalTestResultsIncrease\": 7112.0, \"ratio\": 0.07596762188314105, \"sinceDay0\": 6}, {\"index\": 159, \"date\": \"2020-04-01T00:00:00\", \"state\": \"TX\", \"positive\": 3997.0, \"negative\": 43860.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 196.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 38.0, \"hash\": \"d7eee4ced63cacacb4fa81132e1bc4fa3884f105\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 58.0, \"hospitalized\": 196.0, \"total\": 47857, \"totalTestResults\": 47857, \"posNeg\": 47857, \"fips\": 48, \"deathIncrease\": 17.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4134.0, \"positiveIncrease\": 731.0, \"totalTestResultsIncrease\": 4865.0, \"ratio\": 0.08351965229746955, \"sinceDay0\": 7}, {\"index\": 103, \"date\": \"2020-04-02T00:00:00\", \"state\": \"TX\", \"positive\": 4669.0, \"negative\": 46010.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 196.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 38.0, \"hash\": \"7d8ea7ba1c7a7c798cfb9c6c3862a58278c06e3b\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 70.0, \"hospitalized\": 196.0, \"total\": 50679, \"totalTestResults\": 50679, \"posNeg\": 50679, \"fips\": 48, \"deathIncrease\": 12.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2150.0, \"positiveIncrease\": 672.0, \"totalTestResultsIncrease\": 2822.0, \"ratio\": 0.09212888967817044, \"sinceDay0\": 8}, {\"index\": 47, \"date\": \"2020-04-03T00:00:00\", \"state\": \"TX\", \"positive\": 5330.0, \"negative\": 50434.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 196.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 38.0, \"hash\": \"18a3dcd9d77854accccca1eb809c495d24501fbf\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 90.0, \"hospitalized\": 196.0, \"total\": 55764, \"totalTestResults\": 55764, \"posNeg\": 55764, \"fips\": 48, \"deathIncrease\": 20.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4424.0, \"positiveIncrease\": 661.0, \"totalTestResultsIncrease\": 5085.0, \"ratio\": 0.09558137866724051, \"sinceDay0\": 9}, {\"index\": 497, \"date\": \"2020-03-26T00:00:00\", \"state\": \"VA\", \"positive\": 460.0, \"negative\": 5729.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 65.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"60d151765c90a17f38487d1089ef283796e1c122\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 13.0, \"hospitalized\": 65.0, \"total\": 6189, \"totalTestResults\": 6189, \"posNeg\": 6189, \"fips\": 51, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 6.0, \"negativeIncrease\": 750.0, \"positiveIncrease\": 69.0, \"totalTestResultsIncrease\": 819.0, \"ratio\": 0.07432541606075295, \"sinceDay0\": 0}, {\"index\": 441, \"date\": \"2020-03-27T00:00:00\", \"state\": \"VA\", \"positive\": 604.0, \"negative\": 6733.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 83.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"376dd9385db92b70861adb4e990699e2ae38ea4f\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 14.0, \"hospitalized\": 83.0, \"total\": 7337, \"totalTestResults\": 7337, \"posNeg\": 7337, \"fips\": 51, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 18.0, \"negativeIncrease\": 1004.0, \"positiveIncrease\": 144.0, \"totalTestResultsIncrease\": 1148.0, \"ratio\": 0.08232247512607332, \"sinceDay0\": 1}, {\"index\": 385, \"date\": \"2020-03-28T00:00:00\", \"state\": \"VA\", \"positive\": 739.0, \"negative\": 8427.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 99.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4a9486b875debc40351684839a6e07900f0fd3ca\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 17.0, \"hospitalized\": 99.0, \"total\": 9166, \"totalTestResults\": 9166, \"posNeg\": 9166, \"fips\": 51, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 16.0, \"negativeIncrease\": 1694.0, \"positiveIncrease\": 135.0, \"totalTestResultsIncrease\": 1829.0, \"ratio\": 0.08062404538511891, \"sinceDay0\": 2}, {\"index\": 329, \"date\": \"2020-03-29T00:00:00\", \"state\": \"VA\", \"positive\": 890.0, \"negative\": 9719.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 112.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c69c5d634a01118e8c0e248abc63805871431f51\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 22.0, \"hospitalized\": 112.0, \"total\": 10609, \"totalTestResults\": 10609, \"posNeg\": 10609, \"fips\": 51, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 13.0, \"negativeIncrease\": 1292.0, \"positiveIncrease\": 151.0, \"totalTestResultsIncrease\": 1443.0, \"ratio\": 0.08389103591290414, \"sinceDay0\": 3}, {\"index\": 273, \"date\": \"2020-03-30T00:00:00\", \"state\": \"VA\", \"positive\": 1020.0, \"negative\": 11018.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 136.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1b814b67e1fc83c5f9fdc2e3ca2dc1e7d1fa66d7\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 25.0, \"hospitalized\": 136.0, \"total\": 12038, \"totalTestResults\": 12038, \"posNeg\": 12038, \"fips\": 51, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 24.0, \"negativeIncrease\": 1299.0, \"positiveIncrease\": 130.0, \"totalTestResultsIncrease\": 1429.0, \"ratio\": 0.08473168300382124, \"sinceDay0\": 4}, {\"index\": 217, \"date\": \"2020-03-31T00:00:00\", \"state\": \"VA\", \"positive\": 1250.0, \"negative\": 12151.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 165.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"94c6ced5cbd2d7474ef25844e4f1c69d185328b8\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 27.0, \"hospitalized\": 165.0, \"total\": 13401, \"totalTestResults\": 13401, \"posNeg\": 13401, \"fips\": 51, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 29.0, \"negativeIncrease\": 1133.0, \"positiveIncrease\": 230.0, \"totalTestResultsIncrease\": 1363.0, \"ratio\": 0.09327662114767554, \"sinceDay0\": 5}, {\"index\": 161, \"date\": \"2020-04-01T00:00:00\", \"state\": \"VA\", \"positive\": 1484.0, \"negative\": 13860.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 305.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 145.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 108.0, \"recovered\": null, \"hash\": \"3978f9b311c4141c1b8cab5ace841ef8bff698d3\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 34.0, \"hospitalized\": 305.0, \"total\": 15344, \"totalTestResults\": 15344, \"posNeg\": 15344, \"fips\": 51, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 140.0, \"negativeIncrease\": 1709.0, \"positiveIncrease\": 234.0, \"totalTestResultsIncrease\": 1943.0, \"ratio\": 0.09671532846715329, \"sinceDay0\": 6}, {\"index\": 105, \"date\": \"2020-04-02T00:00:00\", \"state\": \"VA\", \"positive\": 1706.0, \"negative\": 15883.0, \"pending\": null, \"hospitalizedCurrently\": 246.0, \"hospitalizedCumulative\": 305.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 145.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 108.0, \"recovered\": null, \"hash\": \"9796a8ec0aabb4d2cffe52ed46445fae43bd50c6\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 41.0, \"hospitalized\": 305.0, \"total\": 17589, \"totalTestResults\": 17589, \"posNeg\": 17589, \"fips\": 51, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2023.0, \"positiveIncrease\": 222.0, \"totalTestResultsIncrease\": 2245.0, \"ratio\": 0.09699243845585309, \"sinceDay0\": 7}, {\"index\": 49, \"date\": \"2020-04-03T00:00:00\", \"state\": \"VA\", \"positive\": 2012.0, \"negative\": 16993.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 312.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 145.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 108.0, \"recovered\": null, \"hash\": \"cb349d06a8404e8ea589d4d05f5ae53dfdbd1692\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 46.0, \"hospitalized\": 312.0, \"total\": 19005, \"totalTestResults\": 19005, \"posNeg\": 19005, \"fips\": 51, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 7.0, \"negativeIncrease\": 1110.0, \"positiveIncrease\": 306.0, \"totalTestResultsIncrease\": 1416.0, \"ratio\": 0.10586687713759536, \"sinceDay0\": 8}, {\"index\": 443, \"date\": \"2020-03-27T00:00:00\", \"state\": \"VT\", \"positive\": 184.0, \"negative\": 2077.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 18.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0064eda2b4b2bd74f386a29d0fa13b8378aff141\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 10.0, \"hospitalized\": 18.0, \"total\": 2261, \"totalTestResults\": 2261, \"posNeg\": 2261, \"fips\": 50, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 18.0, \"negativeIncrease\": 227.0, \"positiveIncrease\": 26.0, \"totalTestResultsIncrease\": 253.0, \"ratio\": 0.08137992038920831, \"sinceDay0\": 0}, {\"index\": 387, \"date\": \"2020-03-28T00:00:00\", \"state\": \"VT\", \"positive\": 211.0, \"negative\": 2163.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 18.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c531c6adaae5c5623a25bebe275eb0269f0e549e\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 12.0, \"hospitalized\": 18.0, \"total\": 2374, \"totalTestResults\": 2374, \"posNeg\": 2374, \"fips\": 50, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 86.0, \"positiveIncrease\": 27.0, \"totalTestResultsIncrease\": 113.0, \"ratio\": 0.08887952822240944, \"sinceDay0\": 1}, {\"index\": 331, \"date\": \"2020-03-29T00:00:00\", \"state\": \"VT\", \"positive\": 235.0, \"negative\": 3466.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 18.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"6378ad325a9d0e9f7f1edfeb369856d460b5e9d8\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 12.0, \"hospitalized\": 18.0, \"total\": 3701, \"totalTestResults\": 3701, \"posNeg\": 3701, \"fips\": 50, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1303.0, \"positiveIncrease\": 24.0, \"totalTestResultsIncrease\": 1327.0, \"ratio\": 0.06349635233720616, \"sinceDay0\": 2}, {\"index\": 275, \"date\": \"2020-03-30T00:00:00\", \"state\": \"VT\", \"positive\": 256.0, \"negative\": 3674.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 18.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"707ea7e30f8939272fe9b6691b379a0385237953\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 12.0, \"hospitalized\": 18.0, \"total\": 3930, \"totalTestResults\": 3930, \"posNeg\": 3930, \"fips\": 50, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 208.0, \"positiveIncrease\": 21.0, \"totalTestResultsIncrease\": 229.0, \"ratio\": 0.06513994910941476, \"sinceDay0\": 3}, {\"index\": 219, \"date\": \"2020-03-31T00:00:00\", \"state\": \"VT\", \"positive\": 293.0, \"negative\": 3957.0, \"pending\": null, \"hospitalizedCurrently\": 21.0, \"hospitalizedCumulative\": 36.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 15.0, \"hash\": \"f7ff1c5b387b478086752b2ba379a2aaab0bf9fd\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 13.0, \"hospitalized\": 36.0, \"total\": 4250, \"totalTestResults\": 4250, \"posNeg\": 4250, \"fips\": 50, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 18.0, \"negativeIncrease\": 283.0, \"positiveIncrease\": 37.0, \"totalTestResultsIncrease\": 320.0, \"ratio\": 0.06894117647058824, \"sinceDay0\": 4}, {\"index\": 163, \"date\": \"2020-04-01T00:00:00\", \"state\": \"VT\", \"positive\": 321.0, \"negative\": 4174.0, \"pending\": null, \"hospitalizedCurrently\": 30.0, \"hospitalizedCumulative\": 45.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 15.0, \"hash\": \"09d62e8a97e7673d2cb199f97cefebe931639672\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 16.0, \"hospitalized\": 45.0, \"total\": 4495, \"totalTestResults\": 4495, \"posNeg\": 4495, \"fips\": 50, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 9.0, \"negativeIncrease\": 217.0, \"positiveIncrease\": 28.0, \"totalTestResultsIncrease\": 245.0, \"ratio\": 0.071412680756396, \"sinceDay0\": 5}, {\"index\": 107, \"date\": \"2020-04-02T00:00:00\", \"state\": \"VT\", \"positive\": 338.0, \"negative\": 4711.0, \"pending\": null, \"hospitalizedCurrently\": 29.0, \"hospitalizedCumulative\": 45.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 15.0, \"hash\": \"7510d18997abe87e7201c6841efcdf23546e72e3\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 17.0, \"hospitalized\": 45.0, \"total\": 5049, \"totalTestResults\": 5049, \"posNeg\": 5049, \"fips\": 50, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 537.0, \"positiveIncrease\": 17.0, \"totalTestResultsIncrease\": 554.0, \"ratio\": 0.06694394929689047, \"sinceDay0\": 6}, {\"index\": 51, \"date\": \"2020-04-03T00:00:00\", \"state\": \"VT\", \"positive\": 389.0, \"negative\": 4839.0, \"pending\": null, \"hospitalizedCurrently\": 29.0, \"hospitalizedCumulative\": 45.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 15.0, \"hash\": \"fd502b9dcb8608ca17ea5eecf37d01466c5f5389\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 17.0, \"hospitalized\": 45.0, \"total\": 5228, \"totalTestResults\": 5228, \"posNeg\": 5228, \"fips\": 50, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 128.0, \"positiveIncrease\": 51.0, \"totalTestResultsIncrease\": 179.0, \"ratio\": 0.074407039020658, \"sinceDay0\": 7}, {\"index\": 1595, \"date\": \"2020-03-04T00:00:00\", \"state\": \"WA\", \"positive\": 39.0, \"negative\": null, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e07bd12171fed21351784c462b0dab23d8cfabbd\", \"dateChecked\": \"2020-03-04T21:00:00Z\", \"death\": 10.0, \"hospitalized\": null, \"total\": 39, \"totalTestResults\": 39, \"posNeg\": 39, \"fips\": 53, \"deathIncrease\": null, \"hospitalizedIncrease\": null, \"negativeIncrease\": null, \"positiveIncrease\": null, \"totalTestResultsIncrease\": null, \"ratio\": 1.0, \"sinceDay0\": 0}, {\"index\": 1581, \"date\": \"2020-03-05T00:00:00\", \"state\": \"WA\", \"positive\": 70.0, \"negative\": null, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"dfe5b036415333cb6e796cd8bde4805a159d6676\", \"dateChecked\": \"2020-03-05T21:00:00Z\", \"death\": 11.0, \"hospitalized\": null, \"total\": 70, \"totalTestResults\": 70, \"posNeg\": 70, \"fips\": 53, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 31.0, \"totalTestResultsIncrease\": 31.0, \"ratio\": 1.0, \"sinceDay0\": 1}, {\"index\": 1556, \"date\": \"2020-03-06T00:00:00\", \"state\": \"WA\", \"positive\": 79.0, \"negative\": 370.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"acf1e359af09f765bfb51daff2037013e6dcb7ef\", \"dateChecked\": \"2020-03-06T21:00:00Z\", \"death\": 14.0, \"hospitalized\": null, \"total\": 449, \"totalTestResults\": 449, \"posNeg\": 449, \"fips\": 53, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 370.0, \"positiveIncrease\": 9.0, \"totalTestResultsIncrease\": 379.0, \"ratio\": 0.1759465478841871, \"sinceDay0\": 2}, {\"index\": 1519, \"date\": \"2020-03-07T00:00:00\", \"state\": \"WA\", \"positive\": 102.0, \"negative\": 370.0, \"pending\": 66.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"bba4f8c850e820bd03b106bdf1e40f53bca745cd\", \"dateChecked\": \"2020-03-07T21:00:00Z\", \"death\": 16.0, \"hospitalized\": null, \"total\": 538, \"totalTestResults\": 472, \"posNeg\": 472, \"fips\": 53, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 23.0, \"totalTestResultsIncrease\": 23.0, \"ratio\": 0.1895910780669145, \"sinceDay0\": 3}, {\"index\": 1468, \"date\": \"2020-03-08T00:00:00\", \"state\": \"WA\", \"positive\": 102.0, \"negative\": 640.0, \"pending\": 60.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ff203f889be06e02d7abbc241bb3327974f62c59\", \"dateChecked\": \"2020-03-08T20:00:00Z\", \"death\": 18.0, \"hospitalized\": null, \"total\": 802, \"totalTestResults\": 742, \"posNeg\": 742, \"fips\": 53, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 270.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 270.0, \"ratio\": 0.12718204488778054, \"sinceDay0\": 4}, {\"index\": 1417, \"date\": \"2020-03-09T00:00:00\", \"state\": \"WA\", \"positive\": 136.0, \"negative\": 1110.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d72514f02a70119a149f4bc9d6ec6cb789a7e255\", \"dateChecked\": \"2020-03-09T20:00:00Z\", \"death\": 22.0, \"hospitalized\": null, \"total\": 1246, \"totalTestResults\": 1246, \"posNeg\": 1246, \"fips\": 53, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 470.0, \"positiveIncrease\": 34.0, \"totalTestResultsIncrease\": 504.0, \"ratio\": 0.10914927768860354, \"sinceDay0\": 5}, {\"index\": 1366, \"date\": \"2020-03-10T00:00:00\", \"state\": \"WA\", \"positive\": 162.0, \"negative\": 1110.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"06768336fc25d73cd5c617780d60df98257b9efc\", \"dateChecked\": \"2020-03-10T20:00:00Z\", \"death\": 24.0, \"hospitalized\": null, \"total\": 1272, \"totalTestResults\": 1272, \"posNeg\": 1272, \"fips\": 53, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 26.0, \"totalTestResultsIncrease\": 26.0, \"ratio\": 0.12735849056603774, \"sinceDay0\": 6}, {\"index\": 1315, \"date\": \"2020-03-11T00:00:00\", \"state\": \"WA\", \"positive\": 267.0, \"negative\": 2175.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f3865367145deea2d1be9a82dd6bd3d055ac2c85\", \"dateChecked\": \"2020-03-11T20:00:00Z\", \"death\": 24.0, \"hospitalized\": null, \"total\": 2442, \"totalTestResults\": 2442, \"posNeg\": 2442, \"fips\": 53, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1065.0, \"positiveIncrease\": 105.0, \"totalTestResultsIncrease\": 1170.0, \"ratio\": 0.10933660933660934, \"sinceDay0\": 7}, {\"index\": 1264, \"date\": \"2020-03-12T00:00:00\", \"state\": \"WA\", \"positive\": 337.0, \"negative\": 3037.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b346d7b6e661fa57b707151beb7062178a311a51\", \"dateChecked\": \"2020-03-12T20:00:00Z\", \"death\": 29.0, \"hospitalized\": null, \"total\": 3374, \"totalTestResults\": 3374, \"posNeg\": 3374, \"fips\": 53, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 862.0, \"positiveIncrease\": 70.0, \"totalTestResultsIncrease\": 932.0, \"ratio\": 0.0998814463544754, \"sinceDay0\": 8}, {\"index\": 1213, \"date\": \"2020-03-13T00:00:00\", \"state\": \"WA\", \"positive\": 457.0, \"negative\": 4350.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c99bf19d3a7a6a5973c1b9b48d8cf526bc91647e\", \"dateChecked\": \"2020-03-13T20:00:00Z\", \"death\": 31.0, \"hospitalized\": null, \"total\": 4807, \"totalTestResults\": 4807, \"posNeg\": 4807, \"fips\": 53, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1313.0, \"positiveIncrease\": 120.0, \"totalTestResultsIncrease\": 1433.0, \"ratio\": 0.0950696900353651, \"sinceDay0\": 9}, {\"index\": 1162, \"date\": \"2020-03-14T00:00:00\", \"state\": \"WA\", \"positive\": 568.0, \"negative\": 6001.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d0c542a7903d9d53eee47064cd36f4618727252d\", \"dateChecked\": \"2020-03-14T20:00:00Z\", \"death\": 37.0, \"hospitalized\": null, \"total\": 6569, \"totalTestResults\": 6569, \"posNeg\": 6569, \"fips\": 53, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1651.0, \"positiveIncrease\": 111.0, \"totalTestResultsIncrease\": 1762.0, \"ratio\": 0.08646673770741362, \"sinceDay0\": 10}, {\"index\": 1111, \"date\": \"2020-03-15T00:00:00\", \"state\": \"WA\", \"positive\": 642.0, \"negative\": 7122.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1c7e7a0baa721892bbf89e899b597d921e807fce\", \"dateChecked\": \"2020-03-15T20:00:00Z\", \"death\": 40.0, \"hospitalized\": null, \"total\": 7764, \"totalTestResults\": 7764, \"posNeg\": 7764, \"fips\": 53, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1121.0, \"positiveIncrease\": 74.0, \"totalTestResultsIncrease\": 1195.0, \"ratio\": 0.08268933539412673, \"sinceDay0\": 11}, {\"index\": 1060, \"date\": \"2020-03-16T00:00:00\", \"state\": \"WA\", \"positive\": 769.0, \"negative\": 9451.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5de3ba2bf662278c0b9e9a023e91181398269132\", \"dateChecked\": \"2020-03-16T20:00:00Z\", \"death\": 42.0, \"hospitalized\": null, \"total\": 10220, \"totalTestResults\": 10220, \"posNeg\": 10220, \"fips\": 53, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2329.0, \"positiveIncrease\": 127.0, \"totalTestResultsIncrease\": 2456.0, \"ratio\": 0.07524461839530333, \"sinceDay0\": 12}, {\"index\": 1004, \"date\": \"2020-03-17T00:00:00\", \"state\": \"WA\", \"positive\": 904.0, \"negative\": 11582.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a36581696a7488a065d62717a6bcb90bcb0e0893\", \"dateChecked\": \"2020-03-17T20:00:00Z\", \"death\": 48.0, \"hospitalized\": null, \"total\": 12486, \"totalTestResults\": 12486, \"posNeg\": 12486, \"fips\": 53, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2131.0, \"positiveIncrease\": 135.0, \"totalTestResultsIncrease\": 2266.0, \"ratio\": 0.07240108921992632, \"sinceDay0\": 13}, {\"index\": 948, \"date\": \"2020-03-18T00:00:00\", \"state\": \"WA\", \"positive\": 1012.0, \"negative\": 13117.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"eb230fa9aea0b5fd1026102c5bd5775579092452\", \"dateChecked\": \"2020-03-18T20:00:00Z\", \"death\": 52.0, \"hospitalized\": null, \"total\": 14129, \"totalTestResults\": 14129, \"posNeg\": 14129, \"fips\": 53, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1535.0, \"positiveIncrease\": 108.0, \"totalTestResultsIncrease\": 1643.0, \"ratio\": 0.07162573430532947, \"sinceDay0\": 14}, {\"index\": 892, \"date\": \"2020-03-19T00:00:00\", \"state\": \"WA\", \"positive\": 1187.0, \"negative\": 15918.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"535a5769677827d78d2939c5f8f9e44eef508975\", \"dateChecked\": \"2020-03-19T20:00:00Z\", \"death\": 66.0, \"hospitalized\": null, \"total\": 17105, \"totalTestResults\": 17105, \"posNeg\": 17105, \"fips\": 53, \"deathIncrease\": 14.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2801.0, \"positiveIncrease\": 175.0, \"totalTestResultsIncrease\": 2976.0, \"ratio\": 0.06939491376790412, \"sinceDay0\": 15}, {\"index\": 836, \"date\": \"2020-03-20T00:00:00\", \"state\": \"WA\", \"positive\": 1376.0, \"negative\": 19336.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c45d0ccbda5510b5e0067fa6d12226f9debfec0e\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 74.0, \"hospitalized\": null, \"total\": 20712, \"totalTestResults\": 20712, \"posNeg\": 20712, \"fips\": 53, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3418.0, \"positiveIncrease\": 189.0, \"totalTestResultsIncrease\": 3607.0, \"ratio\": 0.0664349169563538, \"sinceDay0\": 16}, {\"index\": 780, \"date\": \"2020-03-21T00:00:00\", \"state\": \"WA\", \"positive\": 1524.0, \"negative\": 21719.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e89ca534af406d512dad526cfc1b5a1e64f75f0c\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 83.0, \"hospitalized\": null, \"total\": 23243, \"totalTestResults\": 23243, \"posNeg\": 23243, \"fips\": 53, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2383.0, \"positiveIncrease\": 148.0, \"totalTestResultsIncrease\": 2531.0, \"ratio\": 0.06556812803854924, \"sinceDay0\": 17}, {\"index\": 724, \"date\": \"2020-03-22T00:00:00\", \"state\": \"WA\", \"positive\": 1793.0, \"negative\": 25328.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"072f5a891339bd1334dfd2ef0458210d55271483\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 94.0, \"hospitalized\": null, \"total\": 27121, \"totalTestResults\": 27121, \"posNeg\": 27121, \"fips\": 53, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3609.0, \"positiveIncrease\": 269.0, \"totalTestResultsIncrease\": 3878.0, \"ratio\": 0.06611113159544264, \"sinceDay0\": 18}, {\"index\": 668, \"date\": \"2020-03-23T00:00:00\", \"state\": \"WA\", \"positive\": 1996.0, \"negative\": 28879.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a3330315ca0c6d8393cbffc5d4da83ba0e7a116b\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 95.0, \"hospitalized\": null, \"total\": 30875, \"totalTestResults\": 30875, \"posNeg\": 30875, \"fips\": 53, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3551.0, \"positiveIncrease\": 203.0, \"totalTestResultsIncrease\": 3754.0, \"ratio\": 0.06464777327935223, \"sinceDay0\": 19}, {\"index\": 612, \"date\": \"2020-03-24T00:00:00\", \"state\": \"WA\", \"positive\": 2221.0, \"negative\": 31712.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9da4d0ab70b396d48bb42e53afa63e5d21c41aef\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 110.0, \"hospitalized\": null, \"total\": 33933, \"totalTestResults\": 33933, \"posNeg\": 33933, \"fips\": 53, \"deathIncrease\": 15.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2833.0, \"positiveIncrease\": 225.0, \"totalTestResultsIncrease\": 3058.0, \"ratio\": 0.06545250935667345, \"sinceDay0\": 20}, {\"index\": 556, \"date\": \"2020-03-25T00:00:00\", \"state\": \"WA\", \"positive\": 2469.0, \"negative\": 31712.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"44b3cb99139fc5b8f131fa7216e447a156a958b4\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 123.0, \"hospitalized\": null, \"total\": 34181, \"totalTestResults\": 34181, \"posNeg\": 34181, \"fips\": 53, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 248.0, \"totalTestResultsIncrease\": 248.0, \"ratio\": 0.07223311196278634, \"sinceDay0\": 21}, {\"index\": 500, \"date\": \"2020-03-26T00:00:00\", \"state\": \"WA\", \"positive\": 2580.0, \"negative\": 31712.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e178057fc2a88562fb8b27dcb5cb7ce3bb9da334\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 132.0, \"hospitalized\": null, \"total\": 34292, \"totalTestResults\": 34292, \"posNeg\": 34292, \"fips\": 53, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 111.0, \"totalTestResultsIncrease\": 111.0, \"ratio\": 0.07523620669543916, \"sinceDay0\": 22}, {\"index\": 444, \"date\": \"2020-03-27T00:00:00\", \"state\": \"WA\", \"positive\": 3207.0, \"negative\": 43173.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c6ef40387ed54825d111164344c738e39fc62ef5\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 147.0, \"hospitalized\": null, \"total\": 46380, \"totalTestResults\": 46380, \"posNeg\": 46380, \"fips\": 53, \"deathIncrease\": 15.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 11461.0, \"positiveIncrease\": 627.0, \"totalTestResultsIncrease\": 12088.0, \"ratio\": 0.06914618369987063, \"sinceDay0\": 23}, {\"index\": 388, \"date\": \"2020-03-28T00:00:00\", \"state\": \"WA\", \"positive\": 3723.0, \"negative\": 49015.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 254.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"aa547bbffd960fa3d6684722df352a64ab786e19\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 175.0, \"hospitalized\": 254.0, \"total\": 52738, \"totalTestResults\": 52738, \"posNeg\": 52738, \"fips\": 53, \"deathIncrease\": 28.0, \"hospitalizedIncrease\": 254.0, \"negativeIncrease\": 5842.0, \"positiveIncrease\": 516.0, \"totalTestResultsIncrease\": 6358.0, \"ratio\": 0.070594258409496, \"sinceDay0\": 24}, {\"index\": 332, \"date\": \"2020-03-29T00:00:00\", \"state\": \"WA\", \"positive\": 4310.0, \"negative\": 54896.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 254.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"79de2d56dfc5fe5931f0670e225388f974f163a9\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 189.0, \"hospitalized\": 254.0, \"total\": 59206, \"totalTestResults\": 59206, \"posNeg\": 59206, \"fips\": 53, \"deathIncrease\": 14.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5881.0, \"positiveIncrease\": 587.0, \"totalTestResultsIncrease\": 6468.0, \"ratio\": 0.0727966760125663, \"sinceDay0\": 25}, {\"index\": 276, \"date\": \"2020-03-30T00:00:00\", \"state\": \"WA\", \"positive\": 4896.0, \"negative\": 60566.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 254.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c734382e8a516a0f55f370aacda4ac92b877649e\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 195.0, \"hospitalized\": 254.0, \"total\": 65462, \"totalTestResults\": 65462, \"posNeg\": 65462, \"fips\": 53, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5670.0, \"positiveIncrease\": 586.0, \"totalTestResultsIncrease\": 6256.0, \"ratio\": 0.07479148208120742, \"sinceDay0\": 26}, {\"index\": 220, \"date\": \"2020-03-31T00:00:00\", \"state\": \"WA\", \"positive\": 4896.0, \"negative\": 60566.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 254.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"215fd829abdd735dea112aded7893ab62d5310ac\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 195.0, \"hospitalized\": 254.0, \"total\": 65462, \"totalTestResults\": 65462, \"posNeg\": 65462, \"fips\": 53, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.07479148208120742, \"sinceDay0\": 27}, {\"index\": 164, \"date\": \"2020-04-01T00:00:00\", \"state\": \"WA\", \"positive\": 5634.0, \"negative\": 60566.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 254.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d6cb23f0dc40421b2d167caba2408a74cfcaf9a1\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 224.0, \"hospitalized\": 254.0, \"total\": 66200, \"totalTestResults\": 66200, \"posNeg\": 66200, \"fips\": 53, \"deathIncrease\": 29.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 738.0, \"totalTestResultsIncrease\": 738.0, \"ratio\": 0.08510574018126889, \"sinceDay0\": 28}, {\"index\": 108, \"date\": \"2020-04-02T00:00:00\", \"state\": \"WA\", \"positive\": 5984.0, \"negative\": 68814.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 254.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"85955197769abfbadd9dcbe4a2678ab67b3e6822\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 247.0, \"hospitalized\": 254.0, \"total\": 74798, \"totalTestResults\": 74798, \"posNeg\": 74798, \"fips\": 53, \"deathIncrease\": 23.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 8248.0, \"positiveIncrease\": 350.0, \"totalTestResultsIncrease\": 8598.0, \"ratio\": 0.0800021390946282, \"sinceDay0\": 29}, {\"index\": 52, \"date\": \"2020-04-03T00:00:00\", \"state\": \"WA\", \"positive\": 6585.0, \"negative\": 72833.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 254.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"959e56f464378567061d69a9f5fe856b61563bc4\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 262.0, \"hospitalized\": 254.0, \"total\": 79418, \"totalTestResults\": 79418, \"posNeg\": 79418, \"fips\": 53, \"deathIncrease\": 15.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4019.0, \"positiveIncrease\": 601.0, \"totalTestResultsIncrease\": 4620.0, \"ratio\": 0.08291571180336951, \"sinceDay0\": 30}, {\"index\": 445, \"date\": \"2020-03-27T00:00:00\", \"state\": \"WI\", \"positive\": 842.0, \"negative\": 13140.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8c63c548c621e8d51f2c08c5e2e7a34947238262\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 13.0, \"hospitalized\": null, \"total\": 13982, \"totalTestResults\": 13982, \"posNeg\": 13982, \"fips\": 55, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1557.0, \"positiveIncrease\": 135.0, \"totalTestResultsIncrease\": 1692.0, \"ratio\": 0.06022028322128451, \"sinceDay0\": 0}, {\"index\": 389, \"date\": \"2020-03-28T00:00:00\", \"state\": \"WI\", \"positive\": 989.0, \"negative\": 15232.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"cc9a38626e488667d80901c4814ba600f9f923cb\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 13.0, \"hospitalized\": null, \"total\": 16221, \"totalTestResults\": 16221, \"posNeg\": 16221, \"fips\": 55, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2092.0, \"positiveIncrease\": 147.0, \"totalTestResultsIncrease\": 2239.0, \"ratio\": 0.060970347080944454, \"sinceDay0\": 1}, {\"index\": 333, \"date\": \"2020-03-29T00:00:00\", \"state\": \"WI\", \"positive\": 1112.0, \"negative\": 16550.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8687db826f68ba2e1871b9798043b5acf7de9e5e\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 13.0, \"hospitalized\": null, \"total\": 17662, \"totalTestResults\": 17662, \"posNeg\": 17662, \"fips\": 55, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1318.0, \"positiveIncrease\": 123.0, \"totalTestResultsIncrease\": 1441.0, \"ratio\": 0.06296002717699015, \"sinceDay0\": 2}, {\"index\": 277, \"date\": \"2020-03-30T00:00:00\", \"state\": \"WI\", \"positive\": 1221.0, \"negative\": 15856.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"23dce446b3a30d5d3dda0c1c88c909196d75aaab\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 14.0, \"hospitalized\": null, \"total\": 17077, \"totalTestResults\": 17077, \"posNeg\": 17077, \"fips\": 55, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": -694.0, \"positiveIncrease\": 109.0, \"totalTestResultsIncrease\": -585.0, \"ratio\": 0.0714996779293787, \"sinceDay0\": 3}, {\"index\": 221, \"date\": \"2020-03-31T00:00:00\", \"state\": \"WI\", \"positive\": 1351.0, \"negative\": 17375.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 337.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5743ca4c966b5e5a927d00d404c31fbb7cc91341\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 16.0, \"hospitalized\": 337.0, \"total\": 18726, \"totalTestResults\": 18726, \"posNeg\": 18726, \"fips\": 55, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 337.0, \"negativeIncrease\": 1519.0, \"positiveIncrease\": 130.0, \"totalTestResultsIncrease\": 1649.0, \"ratio\": 0.07214567980348179, \"sinceDay0\": 4}, {\"index\": 165, \"date\": \"2020-04-01T00:00:00\", \"state\": \"WI\", \"positive\": 1550.0, \"negative\": 18819.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 398.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"3a304dc1edaaf3c59465b033f7b4aa76ad3dec32\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 24.0, \"hospitalized\": 398.0, \"total\": 20369, \"totalTestResults\": 20369, \"posNeg\": 20369, \"fips\": 55, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 61.0, \"negativeIncrease\": 1444.0, \"positiveIncrease\": 199.0, \"totalTestResultsIncrease\": 1643.0, \"ratio\": 0.07609602827826599, \"sinceDay0\": 5}, {\"index\": 109, \"date\": \"2020-04-02T00:00:00\", \"state\": \"WI\", \"positive\": 1730.0, \"negative\": 20317.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 461.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"834fc46c2905f903a94bd047bced3c8b65158dbe\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 31.0, \"hospitalized\": 461.0, \"total\": 22047, \"totalTestResults\": 22047, \"posNeg\": 22047, \"fips\": 55, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 63.0, \"negativeIncrease\": 1498.0, \"positiveIncrease\": 180.0, \"totalTestResultsIncrease\": 1678.0, \"ratio\": 0.07846872590375108, \"sinceDay0\": 6}, {\"index\": 53, \"date\": \"2020-04-03T00:00:00\", \"state\": \"WI\", \"positive\": 1912.0, \"negative\": 22377.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 487.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ac2e774ab91aaf87bd106a4d19ddc35d0a14d163\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 37.0, \"hospitalized\": 487.0, \"total\": 24289, \"totalTestResults\": 24289, \"posNeg\": 24289, \"fips\": 55, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 26.0, \"negativeIncrease\": 2060.0, \"positiveIncrease\": 182.0, \"totalTestResultsIncrease\": 2242.0, \"ratio\": 0.07871876157931575, \"sinceDay0\": 7}, {\"index\": 0, \"date\": \"2020-03-04T00:00:00\", \"state\": \"All US\", \"positive\": 118.0, \"negative\": 748.0, \"pending\": 103.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 10.0, \"hospitalized\": 0.0, \"total\": 969, \"totalTestResults\": 866, \"posNeg\": 866, \"fips\": 425, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 5.515809423282292, \"sinceDay0\": 0}, {\"index\": 1, \"date\": \"2020-03-05T00:00:00\", \"state\": \"All US\", \"positive\": 176.0, \"negative\": 953.0, \"pending\": 197.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 11.0, \"hospitalized\": 0.0, \"total\": 1326, \"totalTestResults\": 1129, \"posNeg\": 1129, \"fips\": 728, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 99.0, \"positiveIncrease\": 55.0, \"totalTestResultsIncrease\": 154.0, \"ratio\": 7.691963187672735, \"sinceDay0\": 1}, {\"index\": 2, \"date\": \"2020-03-06T00:00:00\", \"state\": \"All US\", \"positive\": 223.0, \"negative\": 1571.0, \"pending\": 458.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 14.0, \"hospitalized\": 0.0, \"total\": 2252, \"totalTestResults\": 1794, \"posNeg\": 1794, \"fips\": 1031, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 507.0, \"positiveIncrease\": 44.0, \"totalTestResultsIncrease\": 551.0, \"ratio\": 8.84189813481705, \"sinceDay0\": 2}, {\"index\": 3, \"date\": \"2020-03-07T00:00:00\", \"state\": \"All US\", \"positive\": 341.0, \"negative\": 1809.0, \"pending\": 602.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 16.0, \"hospitalized\": 0.0, \"total\": 2752, \"totalTestResults\": 2150, \"posNeg\": 2150, \"fips\": 1477, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 194.0, \"positiveIncrease\": 113.0, \"totalTestResultsIncrease\": 307.0, \"ratio\": 13.209662158531827, \"sinceDay0\": 3}, {\"index\": 4, \"date\": \"2020-03-08T00:00:00\", \"state\": \"All US\", \"positive\": 417.0, \"negative\": 2335.0, \"pending\": 347.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 18.0, \"hospitalized\": 0.0, \"total\": 3099, \"totalTestResults\": 2752, \"posNeg\": 2752, \"fips\": 1477, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 526.0, \"positiveIncrease\": 76.0, \"totalTestResultsIncrease\": 602.0, \"ratio\": 12.32417291309689, \"sinceDay0\": 4}, {\"index\": 5, \"date\": \"2020-03-09T00:00:00\", \"state\": \"All US\", \"positive\": 584.0, \"negative\": 3367.0, \"pending\": 313.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 22.0, \"hospitalized\": 0.0, \"total\": 4264, \"totalTestResults\": 3951, \"posNeg\": 3951, \"fips\": 1477, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1032.0, \"positiveIncrease\": 167.0, \"totalTestResultsIncrease\": 1199.0, \"ratio\": 12.85071660526928, \"sinceDay0\": 5}, {\"index\": 6, \"date\": \"2020-03-10T00:00:00\", \"state\": \"All US\", \"positive\": 778.0, \"negative\": 3807.0, \"pending\": 469.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 24.0, \"hospitalized\": 0.0, \"total\": 5054, \"totalTestResults\": 4585, \"posNeg\": 4585, \"fips\": 1477, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 440.0, \"positiveIncrease\": 195.0, \"totalTestResultsIncrease\": 634.0, \"ratio\": 12.154127882707202, \"sinceDay0\": 6}, {\"index\": 7, \"date\": \"2020-03-11T00:00:00\", \"state\": \"All US\", \"positive\": 1054.0, \"negative\": 6070.0, \"pending\": 563.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 27.0, \"hospitalized\": 0.0, \"total\": 7687, \"totalTestResults\": 7124, \"posNeg\": 7124, \"fips\": 1477, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2263.0, \"positiveIncrease\": 276.0, \"totalTestResultsIncrease\": 2539.0, \"ratio\": 10.931231454132302, \"sinceDay0\": 7}, {\"index\": 8, \"date\": \"2020-03-12T00:00:00\", \"state\": \"All US\", \"positive\": 1315.0, \"negative\": 8041.0, \"pending\": 673.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 36.0, \"hospitalized\": 0.0, \"total\": 10029, \"totalTestResults\": 9356, \"posNeg\": 9356, \"fips\": 1477, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1971.0, \"positiveIncrease\": 261.0, \"totalTestResultsIncrease\": 2232.0, \"ratio\": 9.756655510469434, \"sinceDay0\": 8}, {\"index\": 9, \"date\": \"2020-03-13T00:00:00\", \"state\": \"All US\", \"positive\": 1922.0, \"negative\": 13613.0, \"pending\": 1130.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 39.0, \"hospitalized\": 0.0, \"total\": 16665, \"totalTestResults\": 15535, \"posNeg\": 15535, \"fips\": 1477, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5572.0, \"positiveIncrease\": 607.0, \"totalTestResultsIncrease\": 6179.0, \"ratio\": 9.175450650028257, \"sinceDay0\": 9}, {\"index\": 10, \"date\": \"2020-03-14T00:00:00\", \"state\": \"All US\", \"positive\": 2450.0, \"negative\": 17102.0, \"pending\": 1236.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 49.0, \"hospitalized\": 0.0, \"total\": 20788, \"totalTestResults\": 19552, \"posNeg\": 19552, \"fips\": 1477, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3489.0, \"positiveIncrease\": 528.0, \"totalTestResultsIncrease\": 4017.0, \"ratio\": 8.811971922038886, \"sinceDay0\": 10}, {\"index\": 11, \"date\": \"2020-03-15T00:00:00\", \"state\": \"All US\", \"positive\": 3173.0, \"negative\": 22551.0, \"pending\": 2242.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 60.0, \"hospitalized\": 0.0, \"total\": 27966, \"totalTestResults\": 25724, \"posNeg\": 25724, \"fips\": 1477, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5449.0, \"positiveIncrease\": 723.0, \"totalTestResultsIncrease\": 6172.0, \"ratio\": 9.136386708221607, \"sinceDay0\": 11}, {\"index\": 12, \"date\": \"2020-03-16T00:00:00\", \"state\": \"All US\", \"positive\": 4019.0, \"negative\": 36104.0, \"pending\": 1691.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 71.0, \"hospitalized\": 0.0, \"total\": 41814, \"totalTestResults\": 40123, \"posNeg\": 40123, \"fips\": 1822, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 13521.0, \"positiveIncrease\": 837.0, \"totalTestResultsIncrease\": 14358.0, \"ratio\": 10.964166847366664, \"sinceDay0\": 12}, {\"index\": 13, \"date\": \"2020-03-17T00:00:00\", \"state\": \"All US\", \"positive\": 5722.0, \"negative\": 47604.0, \"pending\": 1687.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 90.0, \"hospitalized\": 0.0, \"total\": 55013, \"totalTestResults\": 53326, \"posNeg\": 53326, \"fips\": 1822, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 11500.0, \"positiveIncrease\": 1703.0, \"totalTestResultsIncrease\": 13203.0, \"ratio\": 9.7393915788136, \"sinceDay0\": 13}, {\"index\": 14, \"date\": \"2020-03-18T00:00:00\", \"state\": \"All US\", \"positive\": 7730.0, \"negative\": 66225.0, \"pending\": 2526.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 112.0, \"hospitalized\": 0.0, \"total\": 76481, \"totalTestResults\": 73955, \"posNeg\": 73955, \"fips\": 1822, \"deathIncrease\": 22.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 18621.0, \"positiveIncrease\": 2008.0, \"totalTestResultsIncrease\": 20629.0, \"ratio\": 8.61934483439022, \"sinceDay0\": 14}, {\"index\": 15, \"date\": \"2020-03-19T00:00:00\", \"state\": \"All US\", \"positive\": 11719.0, \"negative\": 89153.0, \"pending\": 3016.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 160.0, \"hospitalized\": 0.0, \"total\": 103888, \"totalTestResults\": 100872, \"posNeg\": 100872, \"fips\": 1822, \"deathIncrease\": 48.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 22928.0, \"positiveIncrease\": 3989.0, \"totalTestResultsIncrease\": 26917.0, \"ratio\": 8.465643999059226, \"sinceDay0\": 15}, {\"index\": 16, \"date\": \"2020-03-20T00:00:00\", \"state\": \"All US\", \"positive\": 17033.0, \"negative\": 118147.0, \"pending\": 3327.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 219.0, \"hospitalized\": 0.0, \"total\": 138507, \"totalTestResults\": 135180, \"posNeg\": 135180, \"fips\": 1822, \"deathIncrease\": 59.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 28994.0, \"positiveIncrease\": 5314.0, \"totalTestResultsIncrease\": 34308.0, \"ratio\": 8.874521266385061, \"sinceDay0\": 16}, {\"index\": 17, \"date\": \"2020-03-21T00:00:00\", \"state\": \"All US\", \"positive\": 23197.0, \"negative\": 155909.0, \"pending\": 3468.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 1964.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 272.0, \"hospitalized\": 1964.0, \"total\": 182574, \"totalTestResults\": 179106, \"posNeg\": 179106, \"fips\": 1822, \"deathIncrease\": 53.0, \"hospitalizedIncrease\": 1964.0, \"negativeIncrease\": 37762.0, \"positiveIncrease\": 6164.0, \"totalTestResultsIncrease\": 43926.0, \"ratio\": 8.871489705886916, \"sinceDay0\": 17}, {\"index\": 18, \"date\": \"2020-03-22T00:00:00\", \"state\": \"All US\", \"positive\": 31879.0, \"negative\": 193463.0, \"pending\": 2842.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 2554.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 398.0, \"hospitalized\": 2554.0, \"total\": 228184, \"totalTestResults\": 225342, \"posNeg\": 225342, \"fips\": 1822, \"deathIncrease\": 126.0, \"hospitalizedIncrease\": 590.0, \"negativeIncrease\": 37554.0, \"positiveIncrease\": 8682.0, \"totalTestResultsIncrease\": 46236.0, \"ratio\": 8.681476521413002, \"sinceDay0\": 18}, {\"index\": 19, \"date\": \"2020-03-23T00:00:00\", \"state\": \"All US\", \"positive\": 42152.0, \"negative\": 237321.0, \"pending\": 14571.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 3325.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 471.0, \"hospitalized\": 3325.0, \"total\": 294044, \"totalTestResults\": 279473, \"posNeg\": 279473, \"fips\": 1822, \"deathIncrease\": 73.0, \"hospitalizedIncrease\": 771.0, \"negativeIncrease\": 43858.0, \"positiveIncrease\": 10273.0, \"totalTestResultsIncrease\": 54131.0, \"ratio\": 9.165322326000412, \"sinceDay0\": 19}, {\"index\": 20, \"date\": \"2020-03-24T00:00:00\", \"state\": \"All US\", \"positive\": 51954.0, \"negative\": 292778.0, \"pending\": 14433.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 4468.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 675.0, \"hospitalized\": 4468.0, \"total\": 359165, \"totalTestResults\": 344732, \"posNeg\": 344732, \"fips\": 1822, \"deathIncrease\": 204.0, \"hospitalizedIncrease\": 1143.0, \"negativeIncrease\": 55457.0, \"positiveIncrease\": 9802.0, \"totalTestResultsIncrease\": 65259.0, \"ratio\": 8.655914557179413, \"sinceDay0\": 20}, {\"index\": 21, \"date\": \"2020-03-25T00:00:00\", \"state\": \"All US\", \"positive\": 63928.0, \"negative\": 357604.0, \"pending\": 51235.0, \"hospitalizedCurrently\": 96.0, \"hospitalizedCumulative\": 6136.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 74.0, \"onVentilatorCurrently\": 4.0, \"onVentilatorCumulative\": 167.0, \"recovered\": 147.0, \"hash\": null, \"dateChecked\": null, \"death\": 900.0, \"hospitalized\": 6136.0, \"total\": 472767, \"totalTestResults\": 421532, \"posNeg\": 421532, \"fips\": 1822, \"deathIncrease\": 225.0, \"hospitalizedIncrease\": 1668.0, \"negativeIncrease\": 64826.0, \"positiveIncrease\": 11974.0, \"totalTestResultsIncrease\": 76800.0, \"ratio\": 7.660441721334681, \"sinceDay0\": 21}, {\"index\": 22, \"date\": \"2020-03-26T00:00:00\", \"state\": \"All US\", \"positive\": 80735.0, \"negative\": 438603.0, \"pending\": 60251.0, \"hospitalizedCurrently\": 5441.0, \"hospitalizedCumulative\": 10131.0, \"inIcuCurrently\": 1299.0, \"inIcuCumulative\": 1412.0, \"onVentilatorCurrently\": 19.0, \"onVentilatorCumulative\": 258.0, \"recovered\": 97.0, \"hash\": null, \"dateChecked\": null, \"death\": 1163.0, \"hospitalized\": 10131.0, \"total\": 579589, \"totalTestResults\": 519338, \"posNeg\": 519338, \"fips\": 1822, \"deathIncrease\": 264.0, \"hospitalizedIncrease\": 3996.0, \"negativeIncrease\": 80999.0, \"positiveIncrease\": 16807.0, \"totalTestResultsIncrease\": 97806.0, \"ratio\": 7.815169609024223, \"sinceDay0\": 22}, {\"index\": 23, \"date\": \"2020-03-27T00:00:00\", \"state\": \"All US\", \"positive\": 99413.0, \"negative\": 527220.0, \"pending\": 60091.0, \"hospitalizedCurrently\": 7532.0, \"hospitalizedCumulative\": 13407.0, \"inIcuCurrently\": 1792.0, \"inIcuCumulative\": 1916.0, \"onVentilatorCurrently\": 54.0, \"onVentilatorCumulative\": 324.0, \"recovered\": 2422.0, \"hash\": null, \"dateChecked\": null, \"death\": 1530.0, \"hospitalized\": 13407.0, \"total\": 686724, \"totalTestResults\": 626633, \"posNeg\": 626633, \"fips\": 1822, \"deathIncrease\": 367.0, \"hospitalizedIncrease\": 3342.0, \"negativeIncrease\": 88617.0, \"positiveIncrease\": 18678.0, \"totalTestResultsIncrease\": 107295.0, \"ratio\": 7.692155032404294, \"sinceDay0\": 23}, {\"index\": 24, \"date\": \"2020-03-28T00:00:00\", \"state\": \"All US\", \"positive\": 118234.0, \"negative\": 617470.0, \"pending\": 65709.0, \"hospitalizedCurrently\": 8725.0, \"hospitalizedCumulative\": 16363.0, \"inIcuCurrently\": 2174.0, \"inIcuCumulative\": 2314.0, \"onVentilatorCurrently\": 54.0, \"onVentilatorCumulative\": 390.0, \"recovered\": 3148.0, \"hash\": null, \"dateChecked\": null, \"death\": 1965.0, \"hospitalized\": 16363.0, \"total\": 801413, \"totalTestResults\": 735704, \"posNeg\": 735704, \"fips\": 1822, \"deathIncrease\": 435.0, \"hospitalizedIncrease\": 2956.0, \"negativeIncrease\": 90250.0, \"positiveIncrease\": 18821.0, \"totalTestResultsIncrease\": 109071.0, \"ratio\": 7.276931165944226, \"sinceDay0\": 24}, {\"index\": 25, \"date\": \"2020-03-29T00:00:00\", \"state\": \"All US\", \"positive\": 139061.0, \"negative\": 692290.0, \"pending\": 65545.0, \"hospitalizedCurrently\": 9922.0, \"hospitalizedCumulative\": 19401.0, \"inIcuCurrently\": 2456.0, \"inIcuCumulative\": 2642.0, \"onVentilatorCurrently\": 59.0, \"onVentilatorCumulative\": 440.0, \"recovered\": 4061.0, \"hash\": null, \"dateChecked\": null, \"death\": 2428.0, \"hospitalized\": 19401.0, \"total\": 896896, \"totalTestResults\": 831351, \"posNeg\": 831351, \"fips\": 1822, \"deathIncrease\": 463.0, \"hospitalizedIncrease\": 3038.0, \"negativeIncrease\": 74820.0, \"positiveIncrease\": 20827.0, \"totalTestResultsIncrease\": 95647.0, \"ratio\": 7.531337832650078, \"sinceDay0\": 25}, {\"index\": 26, \"date\": \"2020-03-30T00:00:00\", \"state\": \"All US\", \"positive\": 160530.0, \"negative\": 784324.0, \"pending\": 65369.0, \"hospitalizedCurrently\": 12147.0, \"hospitalizedCumulative\": 22303.0, \"inIcuCurrently\": 2982.0, \"inIcuCumulative\": 3177.0, \"onVentilatorCurrently\": 259.0, \"onVentilatorCumulative\": 644.0, \"recovered\": 4560.0, \"hash\": null, \"dateChecked\": null, \"death\": 2939.0, \"hospitalized\": 22303.0, \"total\": 1010223, \"totalTestResults\": 944854, \"posNeg\": 944854, \"fips\": 1822, \"deathIncrease\": 511.0, \"hospitalizedIncrease\": 2902.0, \"negativeIncrease\": 92034.0, \"positiveIncrease\": 21469.0, \"totalTestResultsIncrease\": 113503.0, \"ratio\": 6.9434231331000325, \"sinceDay0\": 26}, {\"index\": 27, \"date\": \"2020-03-31T00:00:00\", \"state\": \"All US\", \"positive\": 184683.0, \"negative\": 864201.0, \"pending\": 59518.0, \"hospitalizedCurrently\": 14236.0, \"hospitalizedCumulative\": 26660.0, \"inIcuCurrently\": 3402.0, \"inIcuCumulative\": 3644.0, \"onVentilatorCurrently\": 69.0, \"onVentilatorCumulative\": 507.0, \"recovered\": 5666.0, \"hash\": null, \"dateChecked\": null, \"death\": 3746.0, \"hospitalized\": 26660.0, \"total\": 1108402, \"totalTestResults\": 1048884, \"posNeg\": 1048884, \"fips\": 1822, \"deathIncrease\": 807.0, \"hospitalizedIncrease\": 4357.0, \"negativeIncrease\": 79877.0, \"positiveIncrease\": 24153.0, \"totalTestResultsIncrease\": 104030.0, \"ratio\": 7.174301931221445, \"sinceDay0\": 27}, {\"index\": 28, \"date\": \"2020-04-01T00:00:00\", \"state\": \"All US\", \"positive\": 210770.0, \"negative\": 939190.0, \"pending\": 59669.0, \"hospitalizedCurrently\": 16223.0, \"hospitalizedCumulative\": 31142.0, \"inIcuCurrently\": 3837.0, \"inIcuCumulative\": 4270.0, \"onVentilatorCurrently\": 71.0, \"onVentilatorCumulative\": 676.0, \"recovered\": 7084.0, \"hash\": null, \"dateChecked\": null, \"death\": 4700.0, \"hospitalized\": 31142.0, \"total\": 1209629, \"totalTestResults\": 1149960, \"posNeg\": 1149960, \"fips\": 1822, \"deathIncrease\": 954.0, \"hospitalizedIncrease\": 4482.0, \"negativeIncrease\": 74989.0, \"positiveIncrease\": 26087.0, \"totalTestResultsIncrease\": 101076.0, \"ratio\": 7.521230717432975, \"sinceDay0\": 28}, {\"index\": 29, \"date\": \"2020-04-02T00:00:00\", \"state\": \"All US\", \"positive\": 239009.0, \"negative\": 1028649.0, \"pending\": 62101.0, \"hospitalizedCurrently\": 17157.0, \"hospitalizedCumulative\": 32649.0, \"inIcuCurrently\": 4264.0, \"inIcuCumulative\": 541.0, \"onVentilatorCurrently\": 67.0, \"onVentilatorCumulative\": 661.0, \"recovered\": 8586.0, \"hash\": null, \"dateChecked\": null, \"death\": 5784.0, \"hospitalized\": 32649.0, \"total\": 1329759, \"totalTestResults\": 1267658, \"posNeg\": 1267658, \"fips\": 1822, \"deathIncrease\": 1084.0, \"hospitalizedIncrease\": 4335.0, \"negativeIncrease\": 89459.0, \"positiveIncrease\": 28239.0, \"totalTestResultsIncrease\": 117698.0, \"ratio\": 6.936735076319555, \"sinceDay0\": 29}, {\"index\": 30, \"date\": \"2020-04-03T00:00:00\", \"state\": \"All US\", \"positive\": 271915.0, \"negative\": 1135356.0, \"pending\": 61980.0, \"hospitalizedCurrently\": 19926.0, \"hospitalizedCumulative\": 35991.0, \"inIcuCurrently\": 4686.0, \"inIcuCumulative\": 593.0, \"onVentilatorCurrently\": 70.0, \"onVentilatorCumulative\": 728.0, \"recovered\": 10422.0, \"hash\": null, \"dateChecked\": null, \"death\": 6962.0, \"hospitalized\": 35991.0, \"total\": 1469251, \"totalTestResults\": 1407271, \"posNeg\": 1407271, \"fips\": 1822, \"deathIncrease\": 1178.0, \"hospitalizedIncrease\": 3509.0, \"negativeIncrease\": 106707.0, \"positiveIncrease\": 32906.0, \"totalTestResultsIncrease\": 139613.0, \"ratio\": 7.221055349592441, \"sinceDay0\": 30}], \"data-2c24c2e504cf5cbeac1b685a884ddb53\": [{\"index\": 280, \"date\": \"2020-03-29T00:00:00\", \"state\": \"AK\", \"positive\": 102.0, \"negative\": 3232.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 6.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"422bc4f921be7a7ead06e6f738314ef1911a8407\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 2.0, \"hospitalized\": 6.0, \"total\": 3334, \"totalTestResults\": 3334, \"posNeg\": 3334, \"fips\": 2, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 1.0, \"negativeIncrease\": 396.0, \"positiveIncrease\": 17.0, \"totalTestResultsIncrease\": 413.0, \"ratio\": 0.03059388122375525, \"sinceDay0\": 0}, {\"index\": 224, \"date\": \"2020-03-30T00:00:00\", \"state\": \"AK\", \"positive\": 114.0, \"negative\": 3540.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 7.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"98553897a21c05aeec18d5391001f5bdb25eb44e\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 3.0, \"hospitalized\": 7.0, \"total\": 3654, \"totalTestResults\": 3654, \"posNeg\": 3654, \"fips\": 2, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 1.0, \"negativeIncrease\": 308.0, \"positiveIncrease\": 12.0, \"totalTestResultsIncrease\": 320.0, \"ratio\": 0.031198686371100164, \"sinceDay0\": 1}, {\"index\": 168, \"date\": \"2020-03-31T00:00:00\", \"state\": \"AK\", \"positive\": 119.0, \"negative\": 3594.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 7.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5ec8d7c9ede0e8d30b6f7b63be047ac0ead0b49b\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 3.0, \"hospitalized\": 7.0, \"total\": 3713, \"totalTestResults\": 3713, \"posNeg\": 3713, \"fips\": 2, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 54.0, \"positiveIncrease\": 5.0, \"totalTestResultsIncrease\": 59.0, \"ratio\": 0.03204955561540533, \"sinceDay0\": 2}, {\"index\": 112, \"date\": \"2020-04-01T00:00:00\", \"state\": \"AK\", \"positive\": 133.0, \"negative\": 4470.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 9.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"28dfb9b2615a8df04f8c622ad2fb590a6f7da833\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 3.0, \"hospitalized\": 9.0, \"total\": 4603, \"totalTestResults\": 4603, \"posNeg\": 4603, \"fips\": 2, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 2.0, \"negativeIncrease\": 876.0, \"positiveIncrease\": 14.0, \"totalTestResultsIncrease\": 890.0, \"ratio\": 0.028894199435150987, \"sinceDay0\": 3}, {\"index\": 56, \"date\": \"2020-04-02T00:00:00\", \"state\": \"AK\", \"positive\": 143.0, \"negative\": 4879.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 9.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"87a29f5de0e12ea1b772006bfa38cdee3327489e\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 3.0, \"hospitalized\": 9.0, \"total\": 5022, \"totalTestResults\": 5022, \"posNeg\": 5022, \"fips\": 2, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 409.0, \"positiveIncrease\": 10.0, \"totalTestResultsIncrease\": 419.0, \"ratio\": 0.028474711270410194, \"sinceDay0\": 4}, {\"index\": 0, \"date\": \"2020-04-03T00:00:00\", \"state\": \"AK\", \"positive\": 157.0, \"negative\": 5859.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 15.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"192f851a8f9b68576ed308814322d1333b538699\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 3.0, \"hospitalized\": 15.0, \"total\": 6016, \"totalTestResults\": 6016, \"posNeg\": 6016, \"fips\": 2, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 6.0, \"negativeIncrease\": 980.0, \"positiveIncrease\": 14.0, \"totalTestResultsIncrease\": 994.0, \"ratio\": 0.026097074468085107, \"sinceDay0\": 5}, {\"index\": 729, \"date\": \"2020-03-21T00:00:00\", \"state\": \"AL\", \"positive\": 124.0, \"negative\": 28.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"de15c7bdfb3b72e13399f1aaa8d69612f69f0837\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 0.0, \"hospitalized\": null, \"total\": 152, \"totalTestResults\": 152, \"posNeg\": 152, \"fips\": 1, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 43.0, \"totalTestResultsIncrease\": 43.0, \"ratio\": 0.8157894736842105, \"sinceDay0\": 0}, {\"index\": 673, \"date\": \"2020-03-22T00:00:00\", \"state\": \"AL\", \"positive\": 138.0, \"negative\": 1464.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"336c2b990aa3df11f73436c012fb53a71c5b36fd\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 0.0, \"hospitalized\": null, \"total\": 1602, \"totalTestResults\": 1602, \"posNeg\": 1602, \"fips\": 1, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1436.0, \"positiveIncrease\": 14.0, \"totalTestResultsIncrease\": 1450.0, \"ratio\": 0.08614232209737828, \"sinceDay0\": 1}, {\"index\": 617, \"date\": \"2020-03-23T00:00:00\", \"state\": \"AL\", \"positive\": 167.0, \"negative\": 1665.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"83712877a917de925fb93de8aaa8443850e13f5e\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 0.0, \"hospitalized\": null, \"total\": 1832, \"totalTestResults\": 1832, \"posNeg\": 1832, \"fips\": 1, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 201.0, \"positiveIncrease\": 29.0, \"totalTestResultsIncrease\": 230.0, \"ratio\": 0.09115720524017468, \"sinceDay0\": 2}, {\"index\": 561, \"date\": \"2020-03-24T00:00:00\", \"state\": \"AL\", \"positive\": 215.0, \"negative\": 2106.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c212a8468e01e67b91f78d053b0440276641d84f\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 0.0, \"hospitalized\": null, \"total\": 2321, \"totalTestResults\": 2321, \"posNeg\": 2321, \"fips\": 1, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 441.0, \"positiveIncrease\": 48.0, \"totalTestResultsIncrease\": 489.0, \"ratio\": 0.0926324859974149, \"sinceDay0\": 3}, {\"index\": 505, \"date\": \"2020-03-25T00:00:00\", \"state\": \"AL\", \"positive\": 283.0, \"negative\": 2529.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"2f45607dc8271295dd36e91588d93ebaa1bc3110\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 0.0, \"hospitalized\": null, \"total\": 2812, \"totalTestResults\": 2812, \"posNeg\": 2812, \"fips\": 1, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 423.0, \"positiveIncrease\": 68.0, \"totalTestResultsIncrease\": 491.0, \"ratio\": 0.10064011379800854, \"sinceDay0\": 4}, {\"index\": 449, \"date\": \"2020-03-26T00:00:00\", \"state\": \"AL\", \"positive\": 506.0, \"negative\": 3593.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"fbb44aa6b758e39d9ca03edb761c2463bc6d09e7\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 1.0, \"hospitalized\": null, \"total\": 4099, \"totalTestResults\": 4099, \"posNeg\": 4099, \"fips\": 1, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1064.0, \"positiveIncrease\": 223.0, \"totalTestResultsIncrease\": 1287.0, \"ratio\": 0.12344474262015126, \"sinceDay0\": 5}, {\"index\": 393, \"date\": \"2020-03-27T00:00:00\", \"state\": \"AL\", \"positive\": 587.0, \"negative\": 4184.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"07d7df62adf5e730a3da751291c1fba471551397\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 3.0, \"hospitalized\": null, \"total\": 4771, \"totalTestResults\": 4771, \"posNeg\": 4771, \"fips\": 1, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 591.0, \"positiveIncrease\": 81.0, \"totalTestResultsIncrease\": 672.0, \"ratio\": 0.12303500314399497, \"sinceDay0\": 6}, {\"index\": 337, \"date\": \"2020-03-28T00:00:00\", \"state\": \"AL\", \"positive\": 696.0, \"negative\": 4184.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"63de5e074e982530fe275d036c8318c14eabf49f\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 3.0, \"hospitalized\": null, \"total\": 4880, \"totalTestResults\": 4880, \"posNeg\": 4880, \"fips\": 1, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 109.0, \"totalTestResultsIncrease\": 109.0, \"ratio\": 0.14262295081967213, \"sinceDay0\": 7}, {\"index\": 281, \"date\": \"2020-03-29T00:00:00\", \"state\": \"AL\", \"positive\": 806.0, \"negative\": 4184.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0c2a7ece10172b9bd60b53579fd6d9a53f5e9f03\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 4.0, \"hospitalized\": null, \"total\": 4990, \"totalTestResults\": 4990, \"posNeg\": 4990, \"fips\": 1, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 110.0, \"totalTestResultsIncrease\": 110.0, \"ratio\": 0.16152304609218437, \"sinceDay0\": 8}, {\"index\": 225, \"date\": \"2020-03-30T00:00:00\", \"state\": \"AL\", \"positive\": 859.0, \"negative\": 5694.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4552863c924f79edb83615e6b3642696b80a83cf\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 6.0, \"hospitalized\": null, \"total\": 6553, \"totalTestResults\": 6553, \"posNeg\": 6553, \"fips\": 1, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1510.0, \"positiveIncrease\": 53.0, \"totalTestResultsIncrease\": 1563.0, \"ratio\": 0.13108499923699068, \"sinceDay0\": 9}, {\"index\": 169, \"date\": \"2020-03-31T00:00:00\", \"state\": \"AL\", \"positive\": 981.0, \"negative\": 6298.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"42eecba7755e229592355c2a117a0c76245f655a\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 13.0, \"hospitalized\": null, \"total\": 7279, \"totalTestResults\": 7279, \"posNeg\": 7279, \"fips\": 1, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 604.0, \"positiveIncrease\": 122.0, \"totalTestResultsIncrease\": 726.0, \"ratio\": 0.1347712597884325, \"sinceDay0\": 10}, {\"index\": 113, \"date\": \"2020-04-01T00:00:00\", \"state\": \"AL\", \"positive\": 1077.0, \"negative\": 6697.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9bd398e733a5ca5042bde1fd8ce2831fc248b0b1\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 26.0, \"hospitalized\": null, \"total\": 7774, \"totalTestResults\": 7774, \"posNeg\": 7774, \"fips\": 1, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 399.0, \"positiveIncrease\": 96.0, \"totalTestResultsIncrease\": 495.0, \"ratio\": 0.13853871880627733, \"sinceDay0\": 11}, {\"index\": 57, \"date\": \"2020-04-02T00:00:00\", \"state\": \"AL\", \"positive\": 1233.0, \"negative\": 7503.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1a78d31c95bd0d315fc61461107fcd8c66e53b43\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 32.0, \"hospitalized\": null, \"total\": 8736, \"totalTestResults\": 8736, \"posNeg\": 8736, \"fips\": 1, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 806.0, \"positiveIncrease\": 156.0, \"totalTestResultsIncrease\": 962.0, \"ratio\": 0.1411401098901099, \"sinceDay0\": 12}, {\"index\": 1, \"date\": \"2020-04-03T00:00:00\", \"state\": \"AL\", \"positive\": 1432.0, \"negative\": 8187.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"2321b8fce440dd33ac0feef0e923113ffffbf603\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 35.0, \"hospitalized\": null, \"total\": 9619, \"totalTestResults\": 9619, \"posNeg\": 9619, \"fips\": 1, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 684.0, \"positiveIncrease\": 199.0, \"totalTestResultsIncrease\": 883.0, \"ratio\": 0.14887202411893127, \"sinceDay0\": 13}, {\"index\": 730, \"date\": \"2020-03-21T00:00:00\", \"state\": \"AR\", \"positive\": 118.0, \"negative\": 567.0, \"pending\": 154.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"be7b0d560d9725c09fd5b6c5c63b15bb489164e8\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 839, \"totalTestResults\": 685, \"posNeg\": 685, \"fips\": 5, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 216.0, \"positiveIncrease\": 22.0, \"totalTestResultsIncrease\": 238.0, \"ratio\": 0.14064362336114422, \"sinceDay0\": 0}, {\"index\": 674, \"date\": \"2020-03-22T00:00:00\", \"state\": \"AR\", \"positive\": 165.0, \"negative\": 711.0, \"pending\": 119.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 13.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5789c418a7bed092bbe6aac119688f2c4d56b0a9\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 0.0, \"hospitalized\": 13.0, \"total\": 995, \"totalTestResults\": 876, \"posNeg\": 876, \"fips\": 5, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 13.0, \"negativeIncrease\": 144.0, \"positiveIncrease\": 47.0, \"totalTestResultsIncrease\": 191.0, \"ratio\": 0.1658291457286432, \"sinceDay0\": 1}, {\"index\": 618, \"date\": \"2020-03-23T00:00:00\", \"state\": \"AR\", \"positive\": 174.0, \"negative\": 906.0, \"pending\": 0.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 13.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e09e8b2605a7009ec131f16ddea0823b160084fe\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 0.0, \"hospitalized\": 13.0, \"total\": 1080, \"totalTestResults\": 1080, \"posNeg\": 1080, \"fips\": 5, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 195.0, \"positiveIncrease\": 9.0, \"totalTestResultsIncrease\": 204.0, \"ratio\": 0.16111111111111112, \"sinceDay0\": 2}, {\"index\": 562, \"date\": \"2020-03-24T00:00:00\", \"state\": \"AR\", \"positive\": 218.0, \"negative\": 947.0, \"pending\": 0.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 22.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0b94fc3f2ae505e0dd8151e1419c11a85382e78d\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 0.0, \"hospitalized\": 22.0, \"total\": 1165, \"totalTestResults\": 1165, \"posNeg\": 1165, \"fips\": 5, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 9.0, \"negativeIncrease\": 41.0, \"positiveIncrease\": 44.0, \"totalTestResultsIncrease\": 85.0, \"ratio\": 0.1871244635193133, \"sinceDay0\": 3}, {\"index\": 506, \"date\": \"2020-03-25T00:00:00\", \"state\": \"AR\", \"positive\": 280.0, \"negative\": 1437.0, \"pending\": 0.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 22.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 4.0, \"onVentilatorCumulative\": 4.0, \"recovered\": 11.0, \"hash\": \"61e9fcf63e4e65989b0d7d33799dc5a4ebb561c1\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 2.0, \"hospitalized\": 22.0, \"total\": 1717, \"totalTestResults\": 1717, \"posNeg\": 1717, \"fips\": 5, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 490.0, \"positiveIncrease\": 62.0, \"totalTestResultsIncrease\": 552.0, \"ratio\": 0.163075131042516, \"sinceDay0\": 4}, {\"index\": 450, \"date\": \"2020-03-26T00:00:00\", \"state\": \"AR\", \"positive\": 335.0, \"negative\": 1504.0, \"pending\": 0.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 41.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 13.0, \"onVentilatorCumulative\": 13.0, \"recovered\": 13.0, \"hash\": \"656e4e9b9d53f6e3be192d6f9585097318f7fb71\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 3.0, \"hospitalized\": 41.0, \"total\": 1839, \"totalTestResults\": 1839, \"posNeg\": 1839, \"fips\": 5, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 19.0, \"negativeIncrease\": 67.0, \"positiveIncrease\": 55.0, \"totalTestResultsIncrease\": 122.0, \"ratio\": 0.1821642196846112, \"sinceDay0\": 5}, {\"index\": 394, \"date\": \"2020-03-27T00:00:00\", \"state\": \"AR\", \"positive\": 381.0, \"negative\": 1545.0, \"pending\": 0.0, \"hospitalizedCurrently\": 48.0, \"hospitalizedCumulative\": 48.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 17.0, \"onVentilatorCumulative\": 17.0, \"recovered\": 19.0, \"hash\": \"c2a33c66ca291bafc54edb8e9bb2bdb04a02ac38\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 3.0, \"hospitalized\": 48.0, \"total\": 1926, \"totalTestResults\": 1926, \"posNeg\": 1926, \"fips\": 5, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 7.0, \"negativeIncrease\": 41.0, \"positiveIncrease\": 46.0, \"totalTestResultsIncrease\": 87.0, \"ratio\": 0.19781931464174454, \"sinceDay0\": 6}, {\"index\": 338, \"date\": \"2020-03-28T00:00:00\", \"state\": \"AR\", \"positive\": 404.0, \"negative\": 2938.0, \"pending\": 0.0, \"hospitalizedCurrently\": 48.0, \"hospitalizedCumulative\": 48.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 17.0, \"onVentilatorCumulative\": 17.0, \"recovered\": 24.0, \"hash\": \"412f7c3459c4b2a0a3735a1aee9248bad67ba3b6\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 5.0, \"hospitalized\": 48.0, \"total\": 3342, \"totalTestResults\": 3342, \"posNeg\": 3342, \"fips\": 5, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1393.0, \"positiveIncrease\": 23.0, \"totalTestResultsIncrease\": 1416.0, \"ratio\": 0.12088569718731298, \"sinceDay0\": 7}, {\"index\": 282, \"date\": \"2020-03-29T00:00:00\", \"state\": \"AR\", \"positive\": 426.0, \"negative\": 3027.0, \"pending\": null, \"hospitalizedCurrently\": 43.0, \"hospitalizedCumulative\": 48.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 16.0, \"onVentilatorCumulative\": 17.0, \"recovered\": 28.0, \"hash\": \"34c885db5e28ed0dc59208f0e776c0286c2fa829\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 6.0, \"hospitalized\": 48.0, \"total\": 3453, \"totalTestResults\": 3453, \"posNeg\": 3453, \"fips\": 5, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 89.0, \"positiveIncrease\": 22.0, \"totalTestResultsIncrease\": 111.0, \"ratio\": 0.12337098175499565, \"sinceDay0\": 8}, {\"index\": 226, \"date\": \"2020-03-30T00:00:00\", \"state\": \"AR\", \"positive\": 473.0, \"negative\": 5262.0, \"pending\": null, \"hospitalizedCurrently\": 62.0, \"hospitalizedCumulative\": 62.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 21.0, \"onVentilatorCumulative\": 21.0, \"recovered\": 29.0, \"hash\": \"3c184f4aba9e9753d9d8adff46e6c2fd7fc68e8b\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 7.0, \"hospitalized\": 62.0, \"total\": 5735, \"totalTestResults\": 5735, \"posNeg\": 5735, \"fips\": 5, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 14.0, \"negativeIncrease\": 2235.0, \"positiveIncrease\": 47.0, \"totalTestResultsIncrease\": 2282.0, \"ratio\": 0.08247602441150828, \"sinceDay0\": 9}, {\"index\": 170, \"date\": \"2020-03-31T00:00:00\", \"state\": \"AR\", \"positive\": 523.0, \"negative\": 5959.0, \"pending\": null, \"hospitalizedCurrently\": 64.0, \"hospitalizedCumulative\": 64.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 23.0, \"onVentilatorCumulative\": 23.0, \"recovered\": 35.0, \"hash\": \"579d8a2bcc21e0e9cf9532993a99b66989dade11\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 8.0, \"hospitalized\": 64.0, \"total\": 6482, \"totalTestResults\": 6482, \"posNeg\": 6482, \"fips\": 5, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 2.0, \"negativeIncrease\": 697.0, \"positiveIncrease\": 50.0, \"totalTestResultsIncrease\": 747.0, \"ratio\": 0.0806849737735267, \"sinceDay0\": 10}, {\"index\": 114, \"date\": \"2020-04-01T00:00:00\", \"state\": \"AR\", \"positive\": 584.0, \"negative\": 7354.0, \"pending\": null, \"hospitalizedCurrently\": 56.0, \"hospitalizedCumulative\": 90.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 25.0, \"onVentilatorCumulative\": 32.0, \"recovered\": 42.0, \"hash\": \"eb0f33b592be1e182660fe530097a09b66431f2c\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 10.0, \"hospitalized\": 90.0, \"total\": 7938, \"totalTestResults\": 7938, \"posNeg\": 7938, \"fips\": 5, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 26.0, \"negativeIncrease\": 1395.0, \"positiveIncrease\": 61.0, \"totalTestResultsIncrease\": 1456.0, \"ratio\": 0.07357016880826404, \"sinceDay0\": 11}, {\"index\": 58, \"date\": \"2020-04-02T00:00:00\", \"state\": \"AR\", \"positive\": 643.0, \"negative\": 7880.0, \"pending\": null, \"hospitalizedCurrently\": 66.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 23.0, \"onVentilatorCumulative\": null, \"recovered\": 47.0, \"hash\": \"34259fa1839931debea61bd331ad6b244b1942b5\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 8523, \"totalTestResults\": 8523, \"posNeg\": 8523, \"fips\": 5, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 526.0, \"positiveIncrease\": 59.0, \"totalTestResultsIncrease\": 585.0, \"ratio\": 0.07544291915992021, \"sinceDay0\": 12}, {\"index\": 2, \"date\": \"2020-04-03T00:00:00\", \"state\": \"AR\", \"positive\": 704.0, \"negative\": 8995.0, \"pending\": null, \"hospitalizedCurrently\": 71.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 26.0, \"onVentilatorCumulative\": 39.0, \"recovered\": 60.0, \"hash\": \"1668b119de8dbd14c4334330a55a40591b632995\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 9699, \"totalTestResults\": 9699, \"posNeg\": 9699, \"fips\": 5, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1115.0, \"positiveIncrease\": 61.0, \"totalTestResultsIncrease\": 1176.0, \"ratio\": 0.07258480255696463, \"sinceDay0\": 13}, {\"index\": 732, \"date\": \"2020-03-21T00:00:00\", \"state\": \"AZ\", \"positive\": 104.0, \"negative\": 240.0, \"pending\": 122.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c4d69ffe430a0b9d8e0af64e25058aedfdcac703\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 1.0, \"hospitalized\": null, \"total\": 466, \"totalTestResults\": 344, \"posNeg\": 344, \"fips\": 4, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 29.0, \"positiveIncrease\": 39.0, \"totalTestResultsIncrease\": 68.0, \"ratio\": 0.22317596566523606, \"sinceDay0\": 0}, {\"index\": 676, \"date\": \"2020-03-22T00:00:00\", \"state\": \"AZ\", \"positive\": 152.0, \"negative\": 282.0, \"pending\": 87.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4cbd0a587cb58735684352d0a8dea494c4e5510a\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 2.0, \"hospitalized\": null, \"total\": 521, \"totalTestResults\": 434, \"posNeg\": 434, \"fips\": 4, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 42.0, \"positiveIncrease\": 48.0, \"totalTestResultsIncrease\": 90.0, \"ratio\": 0.29174664107485604, \"sinceDay0\": 1}, {\"index\": 620, \"date\": \"2020-03-23T00:00:00\", \"state\": \"AZ\", \"positive\": 265.0, \"negative\": 309.0, \"pending\": 6.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"14d6aadf353c2d7f46fa679d1eef562ab766560e\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 2.0, \"hospitalized\": null, \"total\": 580, \"totalTestResults\": 574, \"posNeg\": 574, \"fips\": 4, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 27.0, \"positiveIncrease\": 113.0, \"totalTestResultsIncrease\": 140.0, \"ratio\": 0.45689655172413796, \"sinceDay0\": 2}, {\"index\": 564, \"date\": \"2020-03-24T00:00:00\", \"state\": \"AZ\", \"positive\": 357.0, \"negative\": 313.0, \"pending\": 22.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 8.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"449d58f08329418edaec9016f670d8449ffedf9e\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 5.0, \"hospitalized\": 8.0, \"total\": 692, \"totalTestResults\": 670, \"posNeg\": 670, \"fips\": 4, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 8.0, \"negativeIncrease\": 4.0, \"positiveIncrease\": 92.0, \"totalTestResultsIncrease\": 96.0, \"ratio\": 0.5158959537572254, \"sinceDay0\": 3}, {\"index\": 508, \"date\": \"2020-03-25T00:00:00\", \"state\": \"AZ\", \"positive\": 450.0, \"negative\": 323.0, \"pending\": 53.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 8.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"dc556f3dc293fb7a55dee7fe3c218072dbf23e43\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 6.0, \"hospitalized\": 8.0, \"total\": 826, \"totalTestResults\": 773, \"posNeg\": 773, \"fips\": 4, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 10.0, \"positiveIncrease\": 93.0, \"totalTestResultsIncrease\": 103.0, \"ratio\": 0.5447941888619855, \"sinceDay0\": 4}, {\"index\": 452, \"date\": \"2020-03-26T00:00:00\", \"state\": \"AZ\", \"positive\": 577.0, \"negative\": 347.0, \"pending\": 33.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 66.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 22.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"deb2212f309289845fd1870568f7257709f3f009\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 8.0, \"hospitalized\": 66.0, \"total\": 957, \"totalTestResults\": 924, \"posNeg\": 924, \"fips\": 4, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 58.0, \"negativeIncrease\": 24.0, \"positiveIncrease\": 127.0, \"totalTestResultsIncrease\": 151.0, \"ratio\": 0.6029258098223615, \"sinceDay0\": 5}, {\"index\": 396, \"date\": \"2020-03-27T00:00:00\", \"state\": \"AZ\", \"positive\": 736.0, \"negative\": 7455.0, \"pending\": 30.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ed32559e21a38aa4dcf186932bc2e858d1974669\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 13.0, \"hospitalized\": null, \"total\": 8221, \"totalTestResults\": 8191, \"posNeg\": 8191, \"fips\": 4, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 7108.0, \"positiveIncrease\": 159.0, \"totalTestResultsIncrease\": 7267.0, \"ratio\": 0.08952682155455541, \"sinceDay0\": 6}, {\"index\": 340, \"date\": \"2020-03-28T00:00:00\", \"state\": \"AZ\", \"positive\": 873.0, \"negative\": 7455.0, \"pending\": 21.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"06aad51da966e2299f0c0537e0cf4fbba4c6c696\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 15.0, \"hospitalized\": null, \"total\": 8349, \"totalTestResults\": 8328, \"posNeg\": 8328, \"fips\": 4, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 137.0, \"totalTestResultsIncrease\": 137.0, \"ratio\": 0.10456342076895436, \"sinceDay0\": 7}, {\"index\": 284, \"date\": \"2020-03-29T00:00:00\", \"state\": \"AZ\", \"positive\": 919.0, \"negative\": 12953.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 78.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 30.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"030af14227822ea13853568cdf2a79a864fc73d6\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 17.0, \"hospitalized\": 78.0, \"total\": 13872, \"totalTestResults\": 13872, \"posNeg\": 13872, \"fips\": 4, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 78.0, \"negativeIncrease\": 5498.0, \"positiveIncrease\": 46.0, \"totalTestResultsIncrease\": 5544.0, \"ratio\": 0.06624855824682814, \"sinceDay0\": 8}, {\"index\": 228, \"date\": \"2020-03-30T00:00:00\", \"state\": \"AZ\", \"positive\": 1157.0, \"negative\": 15602.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 78.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 30.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"7fed0e7f482053630e42fe6cde50397bc8aaeaac\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 20.0, \"hospitalized\": 78.0, \"total\": 16759, \"totalTestResults\": 16759, \"posNeg\": 16759, \"fips\": 4, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2649.0, \"positiveIncrease\": 238.0, \"totalTestResultsIncrease\": 2887.0, \"ratio\": 0.06903753207231936, \"sinceDay0\": 9}, {\"index\": 172, \"date\": \"2020-03-31T00:00:00\", \"state\": \"AZ\", \"positive\": 1289.0, \"negative\": 18082.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 78.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 30.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"7a61f6c2f0d045bd7450398a13971715a698bf8d\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 24.0, \"hospitalized\": 78.0, \"total\": 19371, \"totalTestResults\": 19371, \"posNeg\": 19371, \"fips\": 4, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2480.0, \"positiveIncrease\": 132.0, \"totalTestResultsIncrease\": 2612.0, \"ratio\": 0.0665427701202829, \"sinceDay0\": 10}, {\"index\": 116, \"date\": \"2020-04-01T00:00:00\", \"state\": \"AZ\", \"positive\": 1413.0, \"negative\": 19645.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 149.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 51.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5dd22577aa9da74dba6c60ec793ebf24511645e1\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 29.0, \"hospitalized\": 149.0, \"total\": 21058, \"totalTestResults\": 21058, \"posNeg\": 21058, \"fips\": 4, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 71.0, \"negativeIncrease\": 1563.0, \"positiveIncrease\": 124.0, \"totalTestResultsIncrease\": 1687.0, \"ratio\": 0.06710038940070281, \"sinceDay0\": 11}, {\"index\": 60, \"date\": \"2020-04-02T00:00:00\", \"state\": \"AZ\", \"positive\": 1598.0, \"negative\": 21111.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 228.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 83.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"51dcd56d6738e79b41c1c6d32c5454a7d2d1e2bf\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 32.0, \"hospitalized\": 228.0, \"total\": 22709, \"totalTestResults\": 22709, \"posNeg\": 22709, \"fips\": 4, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 79.0, \"negativeIncrease\": 1466.0, \"positiveIncrease\": 185.0, \"totalTestResultsIncrease\": 1651.0, \"ratio\": 0.07036857633537363, \"sinceDay0\": 12}, {\"index\": 4, \"date\": \"2020-04-03T00:00:00\", \"state\": \"AZ\", \"positive\": 1769.0, \"negative\": 22904.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 249.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 91.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"86d38836c9910dcfeb9ec4779c20c399d8da103d\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 41.0, \"hospitalized\": 249.0, \"total\": 24673, \"totalTestResults\": 24673, \"posNeg\": 24673, \"fips\": 4, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 21.0, \"negativeIncrease\": 1793.0, \"positiveIncrease\": 171.0, \"totalTestResultsIncrease\": 1964.0, \"ratio\": 0.07169780731974223, \"sinceDay0\": 13}, {\"index\": 0, \"date\": \"2020-03-04T00:00:00\", \"state\": \"All US\", \"positive\": 118.0, \"negative\": 748.0, \"pending\": 103.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 10.0, \"hospitalized\": 0.0, \"total\": 969, \"totalTestResults\": 866, \"posNeg\": 866, \"fips\": 425, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 5.515809423282292, \"sinceDay0\": 0}, {\"index\": 1, \"date\": \"2020-03-05T00:00:00\", \"state\": \"All US\", \"positive\": 176.0, \"negative\": 953.0, \"pending\": 197.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 11.0, \"hospitalized\": 0.0, \"total\": 1326, \"totalTestResults\": 1129, \"posNeg\": 1129, \"fips\": 728, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 99.0, \"positiveIncrease\": 55.0, \"totalTestResultsIncrease\": 154.0, \"ratio\": 7.691963187672735, \"sinceDay0\": 1}, {\"index\": 2, \"date\": \"2020-03-06T00:00:00\", \"state\": \"All US\", \"positive\": 223.0, \"negative\": 1571.0, \"pending\": 458.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 14.0, \"hospitalized\": 0.0, \"total\": 2252, \"totalTestResults\": 1794, \"posNeg\": 1794, \"fips\": 1031, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 507.0, \"positiveIncrease\": 44.0, \"totalTestResultsIncrease\": 551.0, \"ratio\": 8.84189813481705, \"sinceDay0\": 2}, {\"index\": 3, \"date\": \"2020-03-07T00:00:00\", \"state\": \"All US\", \"positive\": 341.0, \"negative\": 1809.0, \"pending\": 602.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 16.0, \"hospitalized\": 0.0, \"total\": 2752, \"totalTestResults\": 2150, \"posNeg\": 2150, \"fips\": 1477, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 194.0, \"positiveIncrease\": 113.0, \"totalTestResultsIncrease\": 307.0, \"ratio\": 13.209662158531827, \"sinceDay0\": 3}, {\"index\": 4, \"date\": \"2020-03-08T00:00:00\", \"state\": \"All US\", \"positive\": 417.0, \"negative\": 2335.0, \"pending\": 347.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 18.0, \"hospitalized\": 0.0, \"total\": 3099, \"totalTestResults\": 2752, \"posNeg\": 2752, \"fips\": 1477, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 526.0, \"positiveIncrease\": 76.0, \"totalTestResultsIncrease\": 602.0, \"ratio\": 12.32417291309689, \"sinceDay0\": 4}, {\"index\": 5, \"date\": \"2020-03-09T00:00:00\", \"state\": \"All US\", \"positive\": 584.0, \"negative\": 3367.0, \"pending\": 313.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 22.0, \"hospitalized\": 0.0, \"total\": 4264, \"totalTestResults\": 3951, \"posNeg\": 3951, \"fips\": 1477, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1032.0, \"positiveIncrease\": 167.0, \"totalTestResultsIncrease\": 1199.0, \"ratio\": 12.85071660526928, \"sinceDay0\": 5}, {\"index\": 6, \"date\": \"2020-03-10T00:00:00\", \"state\": \"All US\", \"positive\": 778.0, \"negative\": 3807.0, \"pending\": 469.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 24.0, \"hospitalized\": 0.0, \"total\": 5054, \"totalTestResults\": 4585, \"posNeg\": 4585, \"fips\": 1477, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 440.0, \"positiveIncrease\": 195.0, \"totalTestResultsIncrease\": 634.0, \"ratio\": 12.154127882707202, \"sinceDay0\": 6}, {\"index\": 7, \"date\": \"2020-03-11T00:00:00\", \"state\": \"All US\", \"positive\": 1054.0, \"negative\": 6070.0, \"pending\": 563.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 27.0, \"hospitalized\": 0.0, \"total\": 7687, \"totalTestResults\": 7124, \"posNeg\": 7124, \"fips\": 1477, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2263.0, \"positiveIncrease\": 276.0, \"totalTestResultsIncrease\": 2539.0, \"ratio\": 10.931231454132302, \"sinceDay0\": 7}, {\"index\": 8, \"date\": \"2020-03-12T00:00:00\", \"state\": \"All US\", \"positive\": 1315.0, \"negative\": 8041.0, \"pending\": 673.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 36.0, \"hospitalized\": 0.0, \"total\": 10029, \"totalTestResults\": 9356, \"posNeg\": 9356, \"fips\": 1477, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1971.0, \"positiveIncrease\": 261.0, \"totalTestResultsIncrease\": 2232.0, \"ratio\": 9.756655510469434, \"sinceDay0\": 8}, {\"index\": 9, \"date\": \"2020-03-13T00:00:00\", \"state\": \"All US\", \"positive\": 1922.0, \"negative\": 13613.0, \"pending\": 1130.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 39.0, \"hospitalized\": 0.0, \"total\": 16665, \"totalTestResults\": 15535, \"posNeg\": 15535, \"fips\": 1477, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5572.0, \"positiveIncrease\": 607.0, \"totalTestResultsIncrease\": 6179.0, \"ratio\": 9.175450650028257, \"sinceDay0\": 9}, {\"index\": 10, \"date\": \"2020-03-14T00:00:00\", \"state\": \"All US\", \"positive\": 2450.0, \"negative\": 17102.0, \"pending\": 1236.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 49.0, \"hospitalized\": 0.0, \"total\": 20788, \"totalTestResults\": 19552, \"posNeg\": 19552, \"fips\": 1477, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3489.0, \"positiveIncrease\": 528.0, \"totalTestResultsIncrease\": 4017.0, \"ratio\": 8.811971922038886, \"sinceDay0\": 10}, {\"index\": 11, \"date\": \"2020-03-15T00:00:00\", \"state\": \"All US\", \"positive\": 3173.0, \"negative\": 22551.0, \"pending\": 2242.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 60.0, \"hospitalized\": 0.0, \"total\": 27966, \"totalTestResults\": 25724, \"posNeg\": 25724, \"fips\": 1477, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5449.0, \"positiveIncrease\": 723.0, \"totalTestResultsIncrease\": 6172.0, \"ratio\": 9.136386708221607, \"sinceDay0\": 11}, {\"index\": 12, \"date\": \"2020-03-16T00:00:00\", \"state\": \"All US\", \"positive\": 4019.0, \"negative\": 36104.0, \"pending\": 1691.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 71.0, \"hospitalized\": 0.0, \"total\": 41814, \"totalTestResults\": 40123, \"posNeg\": 40123, \"fips\": 1822, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 13521.0, \"positiveIncrease\": 837.0, \"totalTestResultsIncrease\": 14358.0, \"ratio\": 10.964166847366664, \"sinceDay0\": 12}, {\"index\": 13, \"date\": \"2020-03-17T00:00:00\", \"state\": \"All US\", \"positive\": 5722.0, \"negative\": 47604.0, \"pending\": 1687.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 90.0, \"hospitalized\": 0.0, \"total\": 55013, \"totalTestResults\": 53326, \"posNeg\": 53326, \"fips\": 1822, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 11500.0, \"positiveIncrease\": 1703.0, \"totalTestResultsIncrease\": 13203.0, \"ratio\": 9.7393915788136, \"sinceDay0\": 13}, {\"index\": 14, \"date\": \"2020-03-18T00:00:00\", \"state\": \"All US\", \"positive\": 7730.0, \"negative\": 66225.0, \"pending\": 2526.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 112.0, \"hospitalized\": 0.0, \"total\": 76481, \"totalTestResults\": 73955, \"posNeg\": 73955, \"fips\": 1822, \"deathIncrease\": 22.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 18621.0, \"positiveIncrease\": 2008.0, \"totalTestResultsIncrease\": 20629.0, \"ratio\": 8.61934483439022, \"sinceDay0\": 14}, {\"index\": 15, \"date\": \"2020-03-19T00:00:00\", \"state\": \"All US\", \"positive\": 11719.0, \"negative\": 89153.0, \"pending\": 3016.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 160.0, \"hospitalized\": 0.0, \"total\": 103888, \"totalTestResults\": 100872, \"posNeg\": 100872, \"fips\": 1822, \"deathIncrease\": 48.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 22928.0, \"positiveIncrease\": 3989.0, \"totalTestResultsIncrease\": 26917.0, \"ratio\": 8.465643999059226, \"sinceDay0\": 15}, {\"index\": 16, \"date\": \"2020-03-20T00:00:00\", \"state\": \"All US\", \"positive\": 17033.0, \"negative\": 118147.0, \"pending\": 3327.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 219.0, \"hospitalized\": 0.0, \"total\": 138507, \"totalTestResults\": 135180, \"posNeg\": 135180, \"fips\": 1822, \"deathIncrease\": 59.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 28994.0, \"positiveIncrease\": 5314.0, \"totalTestResultsIncrease\": 34308.0, \"ratio\": 8.874521266385061, \"sinceDay0\": 16}, {\"index\": 17, \"date\": \"2020-03-21T00:00:00\", \"state\": \"All US\", \"positive\": 23197.0, \"negative\": 155909.0, \"pending\": 3468.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 1964.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 272.0, \"hospitalized\": 1964.0, \"total\": 182574, \"totalTestResults\": 179106, \"posNeg\": 179106, \"fips\": 1822, \"deathIncrease\": 53.0, \"hospitalizedIncrease\": 1964.0, \"negativeIncrease\": 37762.0, \"positiveIncrease\": 6164.0, \"totalTestResultsIncrease\": 43926.0, \"ratio\": 8.871489705886916, \"sinceDay0\": 17}, {\"index\": 18, \"date\": \"2020-03-22T00:00:00\", \"state\": \"All US\", \"positive\": 31879.0, \"negative\": 193463.0, \"pending\": 2842.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 2554.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 398.0, \"hospitalized\": 2554.0, \"total\": 228184, \"totalTestResults\": 225342, \"posNeg\": 225342, \"fips\": 1822, \"deathIncrease\": 126.0, \"hospitalizedIncrease\": 590.0, \"negativeIncrease\": 37554.0, \"positiveIncrease\": 8682.0, \"totalTestResultsIncrease\": 46236.0, \"ratio\": 8.681476521413002, \"sinceDay0\": 18}, {\"index\": 19, \"date\": \"2020-03-23T00:00:00\", \"state\": \"All US\", \"positive\": 42152.0, \"negative\": 237321.0, \"pending\": 14571.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 3325.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 471.0, \"hospitalized\": 3325.0, \"total\": 294044, \"totalTestResults\": 279473, \"posNeg\": 279473, \"fips\": 1822, \"deathIncrease\": 73.0, \"hospitalizedIncrease\": 771.0, \"negativeIncrease\": 43858.0, \"positiveIncrease\": 10273.0, \"totalTestResultsIncrease\": 54131.0, \"ratio\": 9.165322326000412, \"sinceDay0\": 19}, {\"index\": 20, \"date\": \"2020-03-24T00:00:00\", \"state\": \"All US\", \"positive\": 51954.0, \"negative\": 292778.0, \"pending\": 14433.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 4468.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"hash\": null, \"dateChecked\": null, \"death\": 675.0, \"hospitalized\": 4468.0, \"total\": 359165, \"totalTestResults\": 344732, \"posNeg\": 344732, \"fips\": 1822, \"deathIncrease\": 204.0, \"hospitalizedIncrease\": 1143.0, \"negativeIncrease\": 55457.0, \"positiveIncrease\": 9802.0, \"totalTestResultsIncrease\": 65259.0, \"ratio\": 8.655914557179413, \"sinceDay0\": 20}, {\"index\": 21, \"date\": \"2020-03-25T00:00:00\", \"state\": \"All US\", \"positive\": 63928.0, \"negative\": 357604.0, \"pending\": 51235.0, \"hospitalizedCurrently\": 96.0, \"hospitalizedCumulative\": 6136.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 74.0, \"onVentilatorCurrently\": 4.0, \"onVentilatorCumulative\": 167.0, \"recovered\": 147.0, \"hash\": null, \"dateChecked\": null, \"death\": 900.0, \"hospitalized\": 6136.0, \"total\": 472767, \"totalTestResults\": 421532, \"posNeg\": 421532, \"fips\": 1822, \"deathIncrease\": 225.0, \"hospitalizedIncrease\": 1668.0, \"negativeIncrease\": 64826.0, \"positiveIncrease\": 11974.0, \"totalTestResultsIncrease\": 76800.0, \"ratio\": 7.660441721334681, \"sinceDay0\": 21}, {\"index\": 22, \"date\": \"2020-03-26T00:00:00\", \"state\": \"All US\", \"positive\": 80735.0, \"negative\": 438603.0, \"pending\": 60251.0, \"hospitalizedCurrently\": 5441.0, \"hospitalizedCumulative\": 10131.0, \"inIcuCurrently\": 1299.0, \"inIcuCumulative\": 1412.0, \"onVentilatorCurrently\": 19.0, \"onVentilatorCumulative\": 258.0, \"recovered\": 97.0, \"hash\": null, \"dateChecked\": null, \"death\": 1163.0, \"hospitalized\": 10131.0, \"total\": 579589, \"totalTestResults\": 519338, \"posNeg\": 519338, \"fips\": 1822, \"deathIncrease\": 264.0, \"hospitalizedIncrease\": 3996.0, \"negativeIncrease\": 80999.0, \"positiveIncrease\": 16807.0, \"totalTestResultsIncrease\": 97806.0, \"ratio\": 7.815169609024223, \"sinceDay0\": 22}, {\"index\": 23, \"date\": \"2020-03-27T00:00:00\", \"state\": \"All US\", \"positive\": 99413.0, \"negative\": 527220.0, \"pending\": 60091.0, \"hospitalizedCurrently\": 7532.0, \"hospitalizedCumulative\": 13407.0, \"inIcuCurrently\": 1792.0, \"inIcuCumulative\": 1916.0, \"onVentilatorCurrently\": 54.0, \"onVentilatorCumulative\": 324.0, \"recovered\": 2422.0, \"hash\": null, \"dateChecked\": null, \"death\": 1530.0, \"hospitalized\": 13407.0, \"total\": 686724, \"totalTestResults\": 626633, \"posNeg\": 626633, \"fips\": 1822, \"deathIncrease\": 367.0, \"hospitalizedIncrease\": 3342.0, \"negativeIncrease\": 88617.0, \"positiveIncrease\": 18678.0, \"totalTestResultsIncrease\": 107295.0, \"ratio\": 7.692155032404294, \"sinceDay0\": 23}, {\"index\": 24, \"date\": \"2020-03-28T00:00:00\", \"state\": \"All US\", \"positive\": 118234.0, \"negative\": 617470.0, \"pending\": 65709.0, \"hospitalizedCurrently\": 8725.0, \"hospitalizedCumulative\": 16363.0, \"inIcuCurrently\": 2174.0, \"inIcuCumulative\": 2314.0, \"onVentilatorCurrently\": 54.0, \"onVentilatorCumulative\": 390.0, \"recovered\": 3148.0, \"hash\": null, \"dateChecked\": null, \"death\": 1965.0, \"hospitalized\": 16363.0, \"total\": 801413, \"totalTestResults\": 735704, \"posNeg\": 735704, \"fips\": 1822, \"deathIncrease\": 435.0, \"hospitalizedIncrease\": 2956.0, \"negativeIncrease\": 90250.0, \"positiveIncrease\": 18821.0, \"totalTestResultsIncrease\": 109071.0, \"ratio\": 7.276931165944226, \"sinceDay0\": 24}, {\"index\": 25, \"date\": \"2020-03-29T00:00:00\", \"state\": \"All US\", \"positive\": 139061.0, \"negative\": 692290.0, \"pending\": 65545.0, \"hospitalizedCurrently\": 9922.0, \"hospitalizedCumulative\": 19401.0, \"inIcuCurrently\": 2456.0, \"inIcuCumulative\": 2642.0, \"onVentilatorCurrently\": 59.0, \"onVentilatorCumulative\": 440.0, \"recovered\": 4061.0, \"hash\": null, \"dateChecked\": null, \"death\": 2428.0, \"hospitalized\": 19401.0, \"total\": 896896, \"totalTestResults\": 831351, \"posNeg\": 831351, \"fips\": 1822, \"deathIncrease\": 463.0, \"hospitalizedIncrease\": 3038.0, \"negativeIncrease\": 74820.0, \"positiveIncrease\": 20827.0, \"totalTestResultsIncrease\": 95647.0, \"ratio\": 7.531337832650078, \"sinceDay0\": 25}, {\"index\": 26, \"date\": \"2020-03-30T00:00:00\", \"state\": \"All US\", \"positive\": 160530.0, \"negative\": 784324.0, \"pending\": 65369.0, \"hospitalizedCurrently\": 12147.0, \"hospitalizedCumulative\": 22303.0, \"inIcuCurrently\": 2982.0, \"inIcuCumulative\": 3177.0, \"onVentilatorCurrently\": 259.0, \"onVentilatorCumulative\": 644.0, \"recovered\": 4560.0, \"hash\": null, \"dateChecked\": null, \"death\": 2939.0, \"hospitalized\": 22303.0, \"total\": 1010223, \"totalTestResults\": 944854, \"posNeg\": 944854, \"fips\": 1822, \"deathIncrease\": 511.0, \"hospitalizedIncrease\": 2902.0, \"negativeIncrease\": 92034.0, \"positiveIncrease\": 21469.0, \"totalTestResultsIncrease\": 113503.0, \"ratio\": 6.9434231331000325, \"sinceDay0\": 26}, {\"index\": 27, \"date\": \"2020-03-31T00:00:00\", \"state\": \"All US\", \"positive\": 184683.0, \"negative\": 864201.0, \"pending\": 59518.0, \"hospitalizedCurrently\": 14236.0, \"hospitalizedCumulative\": 26660.0, \"inIcuCurrently\": 3402.0, \"inIcuCumulative\": 3644.0, \"onVentilatorCurrently\": 69.0, \"onVentilatorCumulative\": 507.0, \"recovered\": 5666.0, \"hash\": null, \"dateChecked\": null, \"death\": 3746.0, \"hospitalized\": 26660.0, \"total\": 1108402, \"totalTestResults\": 1048884, \"posNeg\": 1048884, \"fips\": 1822, \"deathIncrease\": 807.0, \"hospitalizedIncrease\": 4357.0, \"negativeIncrease\": 79877.0, \"positiveIncrease\": 24153.0, \"totalTestResultsIncrease\": 104030.0, \"ratio\": 7.174301931221445, \"sinceDay0\": 27}, {\"index\": 28, \"date\": \"2020-04-01T00:00:00\", \"state\": \"All US\", \"positive\": 210770.0, \"negative\": 939190.0, \"pending\": 59669.0, \"hospitalizedCurrently\": 16223.0, \"hospitalizedCumulative\": 31142.0, \"inIcuCurrently\": 3837.0, \"inIcuCumulative\": 4270.0, \"onVentilatorCurrently\": 71.0, \"onVentilatorCumulative\": 676.0, \"recovered\": 7084.0, \"hash\": null, \"dateChecked\": null, \"death\": 4700.0, \"hospitalized\": 31142.0, \"total\": 1209629, \"totalTestResults\": 1149960, \"posNeg\": 1149960, \"fips\": 1822, \"deathIncrease\": 954.0, \"hospitalizedIncrease\": 4482.0, \"negativeIncrease\": 74989.0, \"positiveIncrease\": 26087.0, \"totalTestResultsIncrease\": 101076.0, \"ratio\": 7.521230717432975, \"sinceDay0\": 28}, {\"index\": 29, \"date\": \"2020-04-02T00:00:00\", \"state\": \"All US\", \"positive\": 239009.0, \"negative\": 1028649.0, \"pending\": 62101.0, \"hospitalizedCurrently\": 17157.0, \"hospitalizedCumulative\": 32649.0, \"inIcuCurrently\": 4264.0, \"inIcuCumulative\": 541.0, \"onVentilatorCurrently\": 67.0, \"onVentilatorCumulative\": 661.0, \"recovered\": 8586.0, \"hash\": null, \"dateChecked\": null, \"death\": 5784.0, \"hospitalized\": 32649.0, \"total\": 1329759, \"totalTestResults\": 1267658, \"posNeg\": 1267658, \"fips\": 1822, \"deathIncrease\": 1084.0, \"hospitalizedIncrease\": 4335.0, \"negativeIncrease\": 89459.0, \"positiveIncrease\": 28239.0, \"totalTestResultsIncrease\": 117698.0, \"ratio\": 6.936735076319555, \"sinceDay0\": 29}, {\"index\": 30, \"date\": \"2020-04-03T00:00:00\", \"state\": \"All US\", \"positive\": 271915.0, \"negative\": 1135356.0, \"pending\": 61980.0, \"hospitalizedCurrently\": 19926.0, \"hospitalizedCumulative\": 35991.0, \"inIcuCurrently\": 4686.0, \"inIcuCumulative\": 593.0, \"onVentilatorCurrently\": 70.0, \"onVentilatorCumulative\": 728.0, \"recovered\": 10422.0, \"hash\": null, \"dateChecked\": null, \"death\": 6962.0, \"hospitalized\": 35991.0, \"total\": 1469251, \"totalTestResults\": 1407271, \"posNeg\": 1407271, \"fips\": 1822, \"deathIncrease\": 1178.0, \"hospitalizedIncrease\": 3509.0, \"negativeIncrease\": 106707.0, \"positiveIncrease\": 32906.0, \"totalTestResultsIncrease\": 139613.0, \"ratio\": 7.221055349592441, \"sinceDay0\": 30}, {\"index\": 1374, \"date\": \"2020-03-09T00:00:00\", \"state\": \"CA\", \"positive\": 114.0, \"negative\": 690.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"6af63e3581f76d44b6446c5c221d5a2dd96f5a24\", \"dateChecked\": \"2020-03-09T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 804, \"totalTestResults\": 804, \"posNeg\": 804, \"fips\": 6, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 228.0, \"positiveIncrease\": 26.0, \"totalTestResultsIncrease\": 254.0, \"ratio\": 0.1417910447761194, \"sinceDay0\": 0}, {\"index\": 1323, \"date\": \"2020-03-10T00:00:00\", \"state\": \"CA\", \"positive\": 133.0, \"negative\": 690.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0d0ac26ba210e002c4cef8b50e8305df0d25daea\", \"dateChecked\": \"2020-03-10T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 823, \"totalTestResults\": 823, \"posNeg\": 823, \"fips\": 6, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 19.0, \"totalTestResultsIncrease\": 19.0, \"ratio\": 0.16160388821385177, \"sinceDay0\": 1}, {\"index\": 1272, \"date\": \"2020-03-11T00:00:00\", \"state\": \"CA\", \"positive\": 157.0, \"negative\": 916.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5b964b8b4ae1c9c7ef6daba3357363e3abc15fc2\", \"dateChecked\": \"2020-03-11T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 1073, \"totalTestResults\": 1073, \"posNeg\": 1073, \"fips\": 6, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 226.0, \"positiveIncrease\": 24.0, \"totalTestResultsIncrease\": 250.0, \"ratio\": 0.14631873252562907, \"sinceDay0\": 2}, {\"index\": 1221, \"date\": \"2020-03-12T00:00:00\", \"state\": \"CA\", \"positive\": 202.0, \"negative\": 916.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8dd3541eb41a6171cc6bbf05632f8d9bb4570490\", \"dateChecked\": \"2020-03-12T20:00:00Z\", \"death\": 4.0, \"hospitalized\": null, \"total\": 1118, \"totalTestResults\": 1118, \"posNeg\": 1118, \"fips\": 6, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 45.0, \"totalTestResultsIncrease\": 45.0, \"ratio\": 0.1806797853309481, \"sinceDay0\": 3}, {\"index\": 1170, \"date\": \"2020-03-13T00:00:00\", \"state\": \"CA\", \"positive\": 202.0, \"negative\": 916.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"bb817225b0e56a4c1051b2e6550b5ae85e06487c\", \"dateChecked\": \"2020-03-13T20:00:00Z\", \"death\": 4.0, \"hospitalized\": null, \"total\": 1118, \"totalTestResults\": 1118, \"posNeg\": 1118, \"fips\": 6, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.1806797853309481, \"sinceDay0\": 4}, {\"index\": 1119, \"date\": \"2020-03-14T00:00:00\", \"state\": \"CA\", \"positive\": 252.0, \"negative\": 916.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"bfe38009fc5e230d310f823f106a0947b1a2bce3\", \"dateChecked\": \"2020-03-14T20:00:00Z\", \"death\": 5.0, \"hospitalized\": null, \"total\": 1168, \"totalTestResults\": 1168, \"posNeg\": 1168, \"fips\": 6, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 50.0, \"totalTestResultsIncrease\": 50.0, \"ratio\": 0.21575342465753425, \"sinceDay0\": 5}, {\"index\": 1068, \"date\": \"2020-03-15T00:00:00\", \"state\": \"CA\", \"positive\": 293.0, \"negative\": 916.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5e5e85687553cddbfc767524eedc40d04efeb98a\", \"dateChecked\": \"2020-03-15T20:00:00Z\", \"death\": 5.0, \"hospitalized\": null, \"total\": 1209, \"totalTestResults\": 1209, \"posNeg\": 1209, \"fips\": 6, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 41.0, \"totalTestResultsIncrease\": 41.0, \"ratio\": 0.24234904880066171, \"sinceDay0\": 6}, {\"index\": 1013, \"date\": \"2020-03-16T00:00:00\", \"state\": \"CA\", \"positive\": 335.0, \"negative\": 7981.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ae22555d7ccc020a6fc6268f759c981a681af584\", \"dateChecked\": \"2020-03-16T20:00:00Z\", \"death\": 6.0, \"hospitalized\": null, \"total\": 8316, \"totalTestResults\": 8316, \"posNeg\": 8316, \"fips\": 6, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 7065.0, \"positiveIncrease\": 42.0, \"totalTestResultsIncrease\": 7107.0, \"ratio\": 0.04028379028379028, \"sinceDay0\": 7}, {\"index\": 957, \"date\": \"2020-03-17T00:00:00\", \"state\": \"CA\", \"positive\": 483.0, \"negative\": 7981.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"3a5a29b79b4583de68455525d065127db6a3e97b\", \"dateChecked\": \"2020-03-17T20:00:00Z\", \"death\": 11.0, \"hospitalized\": null, \"total\": 8464, \"totalTestResults\": 8464, \"posNeg\": 8464, \"fips\": 6, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 148.0, \"totalTestResultsIncrease\": 148.0, \"ratio\": 0.057065217391304345, \"sinceDay0\": 8}, {\"index\": 901, \"date\": \"2020-03-18T00:00:00\", \"state\": \"CA\", \"positive\": 611.0, \"negative\": 7981.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"646da42647f99037e2c2b31faf21a04c5b5ff197\", \"dateChecked\": \"2020-03-18T20:00:00Z\", \"death\": 13.0, \"hospitalized\": null, \"total\": 8592, \"totalTestResults\": 8592, \"posNeg\": 8592, \"fips\": 6, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 128.0, \"totalTestResultsIncrease\": 128.0, \"ratio\": 0.07111266294227188, \"sinceDay0\": 9}, {\"index\": 845, \"date\": \"2020-03-19T00:00:00\", \"state\": \"CA\", \"positive\": 924.0, \"negative\": 8787.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b9c67f8fde621d5bb8895c6a6fcbdcf8440ccf2a\", \"dateChecked\": \"2020-03-19T20:00:00Z\", \"death\": 18.0, \"hospitalized\": null, \"total\": 9711, \"totalTestResults\": 9711, \"posNeg\": 9711, \"fips\": 6, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 806.0, \"positiveIncrease\": 313.0, \"totalTestResultsIncrease\": 1119.0, \"ratio\": 0.09514983008958913, \"sinceDay0\": 10}, {\"index\": 789, \"date\": \"2020-03-20T00:00:00\", \"state\": \"CA\", \"positive\": 1063.0, \"negative\": 10424.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"22cfcbb820f66309386b4bdfdf47a806dd894a62\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 20.0, \"hospitalized\": null, \"total\": 11487, \"totalTestResults\": 11487, \"posNeg\": 11487, \"fips\": 6, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1637.0, \"positiveIncrease\": 139.0, \"totalTestResultsIncrease\": 1776.0, \"ratio\": 0.092539392356577, \"sinceDay0\": 11}, {\"index\": 733, \"date\": \"2020-03-21T00:00:00\", \"state\": \"CA\", \"positive\": 1279.0, \"negative\": 11249.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"49c4e45a8661e84906ca87575ab8d30e7c494b6c\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 24.0, \"hospitalized\": null, \"total\": 12528, \"totalTestResults\": 12528, \"posNeg\": 12528, \"fips\": 6, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 825.0, \"positiveIncrease\": 216.0, \"totalTestResultsIncrease\": 1041.0, \"ratio\": 0.10209131545338442, \"sinceDay0\": 12}, {\"index\": 677, \"date\": \"2020-03-22T00:00:00\", \"state\": \"CA\", \"positive\": 1536.0, \"negative\": 11304.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"894c0795f019e9dad5fb2ea4b76464bd93ca011e\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 27.0, \"hospitalized\": null, \"total\": 12840, \"totalTestResults\": 12840, \"posNeg\": 12840, \"fips\": 6, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 55.0, \"positiveIncrease\": 257.0, \"totalTestResultsIncrease\": 312.0, \"ratio\": 0.11962616822429907, \"sinceDay0\": 13}, {\"index\": 621, \"date\": \"2020-03-23T00:00:00\", \"state\": \"CA\", \"positive\": 1733.0, \"negative\": 12567.0, \"pending\": 12100.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"71c982ee815f7305f8cc4c93014774584620fa5f\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 27.0, \"hospitalized\": null, \"total\": 26400, \"totalTestResults\": 14300, \"posNeg\": 14300, \"fips\": 6, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1263.0, \"positiveIncrease\": 197.0, \"totalTestResultsIncrease\": 1460.0, \"ratio\": 0.0656439393939394, \"sinceDay0\": 14}, {\"index\": 565, \"date\": \"2020-03-24T00:00:00\", \"state\": \"CA\", \"positive\": 2102.0, \"negative\": 13452.0, \"pending\": 12100.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"de4019ee1e7e99d093947ecd2a91c6093439f221\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 40.0, \"hospitalized\": null, \"total\": 27654, \"totalTestResults\": 15554, \"posNeg\": 15554, \"fips\": 6, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 885.0, \"positiveIncrease\": 369.0, \"totalTestResultsIncrease\": 1254.0, \"ratio\": 0.0760107036956679, \"sinceDay0\": 15}, {\"index\": 509, \"date\": \"2020-03-25T00:00:00\", \"state\": \"CA\", \"positive\": 2355.0, \"negative\": 15921.0, \"pending\": 48600.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8d9cf944b6bf56c413644ce7729ef18efa3d75a0\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 53.0, \"hospitalized\": null, \"total\": 66876, \"totalTestResults\": 18276, \"posNeg\": 18276, \"fips\": 6, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2469.0, \"positiveIncrease\": 253.0, \"totalTestResultsIncrease\": 2722.0, \"ratio\": 0.03521442670016149, \"sinceDay0\": 16}, {\"index\": 453, \"date\": \"2020-03-26T00:00:00\", \"state\": \"CA\", \"positive\": 3006.0, \"negative\": 17380.0, \"pending\": 57400.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d073989819811eaa4edd1a4f71a3716c44b653ac\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 65.0, \"hospitalized\": null, \"total\": 77786, \"totalTestResults\": 20386, \"posNeg\": 20386, \"fips\": 6, \"deathIncrease\": 12.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1459.0, \"positiveIncrease\": 651.0, \"totalTestResultsIncrease\": 2110.0, \"ratio\": 0.038644486154320826, \"sinceDay0\": 17}, {\"index\": 397, \"date\": \"2020-03-27T00:00:00\", \"state\": \"CA\", \"positive\": 3879.0, \"negative\": 17380.0, \"pending\": 57400.0, \"hospitalizedCurrently\": 746.0, \"hospitalizedCumulative\": 746.0, \"inIcuCurrently\": 200.0, \"inIcuCumulative\": 200.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"10bb2a3981dc15348851c537abdb117a3e09d2a3\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 78.0, \"hospitalized\": 746.0, \"total\": 78659, \"totalTestResults\": 21259, \"posNeg\": 21259, \"fips\": 6, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 746.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 873.0, \"totalTestResultsIncrease\": 873.0, \"ratio\": 0.04931412807180361, \"sinceDay0\": 18}, {\"index\": 341, \"date\": \"2020-03-28T00:00:00\", \"state\": \"CA\", \"positive\": 4643.0, \"negative\": 20549.0, \"pending\": 64400.0, \"hospitalizedCurrently\": 1034.0, \"hospitalizedCumulative\": 1034.0, \"inIcuCurrently\": 410.0, \"inIcuCumulative\": 410.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8c30beb89dd131ed8a1aacaa4d70b47e58810777\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 101.0, \"hospitalized\": 1034.0, \"total\": 89592, \"totalTestResults\": 25192, \"posNeg\": 25192, \"fips\": 6, \"deathIncrease\": 23.0, \"hospitalizedIncrease\": 288.0, \"negativeIncrease\": 3169.0, \"positiveIncrease\": 764.0, \"totalTestResultsIncrease\": 3933.0, \"ratio\": 0.051823823555674615, \"sinceDay0\": 19}, {\"index\": 285, \"date\": \"2020-03-29T00:00:00\", \"state\": \"CA\", \"positive\": 5708.0, \"negative\": 20549.0, \"pending\": 64400.0, \"hospitalizedCurrently\": 1034.0, \"hospitalizedCumulative\": 1034.0, \"inIcuCurrently\": 410.0, \"inIcuCumulative\": 410.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1b6fd0782f7e0f6178ea2f83a468c5d2471cc0d7\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 123.0, \"hospitalized\": 1034.0, \"total\": 90657, \"totalTestResults\": 26257, \"posNeg\": 26257, \"fips\": 6, \"deathIncrease\": 22.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 1065.0, \"totalTestResultsIncrease\": 1065.0, \"ratio\": 0.0629625952767023, \"sinceDay0\": 20}, {\"index\": 229, \"date\": \"2020-03-30T00:00:00\", \"state\": \"CA\", \"positive\": 6447.0, \"negative\": 20549.0, \"pending\": 64400.0, \"hospitalizedCurrently\": 1432.0, \"hospitalizedCumulative\": 1432.0, \"inIcuCurrently\": 597.0, \"inIcuCumulative\": 597.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b2fd37c8b374d544e8f30c2b619be88799980737\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 133.0, \"hospitalized\": 1432.0, \"total\": 91396, \"totalTestResults\": 26996, \"posNeg\": 26996, \"fips\": 6, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 398.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 739.0, \"totalTestResultsIncrease\": 739.0, \"ratio\": 0.07053919208718105, \"sinceDay0\": 21}, {\"index\": 173, \"date\": \"2020-03-31T00:00:00\", \"state\": \"CA\", \"positive\": 7482.0, \"negative\": 21772.0, \"pending\": 57400.0, \"hospitalizedCurrently\": 1617.0, \"hospitalizedCumulative\": 1617.0, \"inIcuCurrently\": 657.0, \"inIcuCumulative\": 657.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8aa120a4c2d14e4da8b37e1148edb1eec68c9797\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 153.0, \"hospitalized\": 1617.0, \"total\": 86654, \"totalTestResults\": 29254, \"posNeg\": 29254, \"fips\": 6, \"deathIncrease\": 20.0, \"hospitalizedIncrease\": 185.0, \"negativeIncrease\": 1223.0, \"positiveIncrease\": 1035.0, \"totalTestResultsIncrease\": 2258.0, \"ratio\": 0.08634338864911026, \"sinceDay0\": 22}, {\"index\": 117, \"date\": \"2020-04-01T00:00:00\", \"state\": \"CA\", \"positive\": 8155.0, \"negative\": 21772.0, \"pending\": 57400.0, \"hospitalizedCurrently\": 1855.0, \"hospitalizedCumulative\": 1855.0, \"inIcuCurrently\": 774.0, \"inIcuCumulative\": 774.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"6fb93efce94c15c30e753005c45c7b45e390198c\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 171.0, \"hospitalized\": 1855.0, \"total\": 87327, \"totalTestResults\": 29927, \"posNeg\": 29927, \"fips\": 6, \"deathIncrease\": 18.0, \"hospitalizedIncrease\": 238.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 673.0, \"totalTestResultsIncrease\": 673.0, \"ratio\": 0.09338463476358973, \"sinceDay0\": 23}, {\"index\": 61, \"date\": \"2020-04-02T00:00:00\", \"state\": \"CA\", \"positive\": 9191.0, \"negative\": 23809.0, \"pending\": 59500.0, \"hospitalizedCurrently\": 1922.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": 816.0, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"99877fe91b05bb13daef3f63c02c50d2a271e7f5\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 203.0, \"hospitalized\": null, \"total\": 92500, \"totalTestResults\": 33000, \"posNeg\": 33000, \"fips\": 6, \"deathIncrease\": 32.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2037.0, \"positiveIncrease\": 1036.0, \"totalTestResultsIncrease\": 3073.0, \"ratio\": 0.09936216216216216, \"sinceDay0\": 24}, {\"index\": 5, \"date\": \"2020-04-03T00:00:00\", \"state\": \"CA\", \"positive\": 10701.0, \"negative\": 24599.0, \"pending\": 59500.0, \"hospitalizedCurrently\": 2188.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": 901.0, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"67f105bfa3690e07b85e362a0c6c43aa796aba45\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 237.0, \"hospitalized\": null, \"total\": 94800, \"totalTestResults\": 35300, \"posNeg\": 35300, \"fips\": 6, \"deathIncrease\": 34.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 790.0, \"positiveIncrease\": 1510.0, \"totalTestResultsIncrease\": 2300.0, \"ratio\": 0.11287974683544304, \"sinceDay0\": 25}, {\"index\": 1120, \"date\": \"2020-03-14T00:00:00\", \"state\": \"CO\", \"positive\": 101.0, \"negative\": 610.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8247505b13764c1e92a341ef32b62d362e995ca1\", \"dateChecked\": \"2020-03-14T20:00:00Z\", \"death\": 1.0, \"hospitalized\": null, \"total\": 711, \"totalTestResults\": 711, \"posNeg\": 711, \"fips\": 8, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 86.0, \"positiveIncrease\": 29.0, \"totalTestResultsIncrease\": 115.0, \"ratio\": 0.1420534458509142, \"sinceDay0\": 0}, {\"index\": 1069, \"date\": \"2020-03-15T00:00:00\", \"state\": \"CO\", \"positive\": 131.0, \"negative\": 627.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0da7e45df3e95846c2ea7d169ec15485902fe3b5\", \"dateChecked\": \"2020-03-15T20:00:00Z\", \"death\": 1.0, \"hospitalized\": null, \"total\": 758, \"totalTestResults\": 758, \"posNeg\": 758, \"fips\": 8, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 17.0, \"positiveIncrease\": 30.0, \"totalTestResultsIncrease\": 47.0, \"ratio\": 0.17282321899736147, \"sinceDay0\": 1}, {\"index\": 1014, \"date\": \"2020-03-16T00:00:00\", \"state\": \"CO\", \"positive\": 131.0, \"negative\": 627.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"dda059810b70b49f0451aef63be8a4ae6d3af3f2\", \"dateChecked\": \"2020-03-16T20:00:00Z\", \"death\": 1.0, \"hospitalized\": null, \"total\": 758, \"totalTestResults\": 758, \"posNeg\": 758, \"fips\": 8, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.17282321899736147, \"sinceDay0\": 2}, {\"index\": 958, \"date\": \"2020-03-17T00:00:00\", \"state\": \"CO\", \"positive\": 160.0, \"negative\": 1056.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"cd89a731d2b24e3f2b854af3811047aa4dc58515\", \"dateChecked\": \"2020-03-17T20:00:00Z\", \"death\": 1.0, \"hospitalized\": null, \"total\": 1216, \"totalTestResults\": 1216, \"posNeg\": 1216, \"fips\": 8, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 429.0, \"positiveIncrease\": 29.0, \"totalTestResultsIncrease\": 458.0, \"ratio\": 0.13157894736842105, \"sinceDay0\": 3}, {\"index\": 902, \"date\": \"2020-03-18T00:00:00\", \"state\": \"CO\", \"positive\": 183.0, \"negative\": 1617.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"3f3bba2f3fd791c0e1d4324bc8ff2a6f62de7ec7\", \"dateChecked\": \"2020-03-18T20:00:00Z\", \"death\": 2.0, \"hospitalized\": null, \"total\": 1800, \"totalTestResults\": 1800, \"posNeg\": 1800, \"fips\": 8, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 561.0, \"positiveIncrease\": 23.0, \"totalTestResultsIncrease\": 584.0, \"ratio\": 0.10166666666666667, \"sinceDay0\": 4}, {\"index\": 846, \"date\": \"2020-03-19T00:00:00\", \"state\": \"CO\", \"positive\": 216.0, \"negative\": 2112.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f2e6f5775814d9e0574abd2a0b622a4e7b5f5c03\", \"dateChecked\": \"2020-03-19T20:00:00Z\", \"death\": 2.0, \"hospitalized\": null, \"total\": 2328, \"totalTestResults\": 2328, \"posNeg\": 2328, \"fips\": 8, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 495.0, \"positiveIncrease\": 33.0, \"totalTestResultsIncrease\": 528.0, \"ratio\": 0.09278350515463918, \"sinceDay0\": 5}, {\"index\": 790, \"date\": \"2020-03-20T00:00:00\", \"state\": \"CO\", \"positive\": 277.0, \"negative\": 2675.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"3cc3cb3b8ada93585da9e20600cd49332188e95c\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 3.0, \"hospitalized\": null, \"total\": 2952, \"totalTestResults\": 2952, \"posNeg\": 2952, \"fips\": 8, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 563.0, \"positiveIncrease\": 61.0, \"totalTestResultsIncrease\": 624.0, \"ratio\": 0.09383468834688347, \"sinceDay0\": 6}, {\"index\": 734, \"date\": \"2020-03-21T00:00:00\", \"state\": \"CO\", \"positive\": 363.0, \"negative\": 3317.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 44.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"167a0c3ceb00a06a5b8dc5ed629b4e1e38ec9ea1\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 4.0, \"hospitalized\": 44.0, \"total\": 3680, \"totalTestResults\": 3680, \"posNeg\": 3680, \"fips\": 8, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 44.0, \"negativeIncrease\": 642.0, \"positiveIncrease\": 86.0, \"totalTestResultsIncrease\": 728.0, \"ratio\": 0.09864130434782609, \"sinceDay0\": 7}, {\"index\": 678, \"date\": \"2020-03-22T00:00:00\", \"state\": \"CO\", \"positive\": 475.0, \"negative\": 4075.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 49.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"fab49da0cdb600a59150ddac2560c877980a2738\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 5.0, \"hospitalized\": 49.0, \"total\": 4550, \"totalTestResults\": 4550, \"posNeg\": 4550, \"fips\": 8, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 5.0, \"negativeIncrease\": 758.0, \"positiveIncrease\": 112.0, \"totalTestResultsIncrease\": 870.0, \"ratio\": 0.1043956043956044, \"sinceDay0\": 8}, {\"index\": 622, \"date\": \"2020-03-23T00:00:00\", \"state\": \"CO\", \"positive\": 591.0, \"negative\": 4845.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 58.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"6b1fa67763ae63bce2ebcbebf278b71c202743cd\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 6.0, \"hospitalized\": 58.0, \"total\": 5436, \"totalTestResults\": 5436, \"posNeg\": 5436, \"fips\": 8, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 9.0, \"negativeIncrease\": 770.0, \"positiveIncrease\": 116.0, \"totalTestResultsIncrease\": 886.0, \"ratio\": 0.108719646799117, \"sinceDay0\": 9}, {\"index\": 566, \"date\": \"2020-03-24T00:00:00\", \"state\": \"CO\", \"positive\": 720.0, \"negative\": 5504.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 72.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c947881e894b49f30ec05924ca6a34637dddc741\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 7.0, \"hospitalized\": 72.0, \"total\": 6224, \"totalTestResults\": 6224, \"posNeg\": 6224, \"fips\": 8, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 14.0, \"negativeIncrease\": 659.0, \"positiveIncrease\": 129.0, \"totalTestResultsIncrease\": 788.0, \"ratio\": 0.11568123393316196, \"sinceDay0\": 10}, {\"index\": 510, \"date\": \"2020-03-25T00:00:00\", \"state\": \"CO\", \"positive\": 912.0, \"negative\": 6789.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 84.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8c313a278c9f6cf6f983d33ae981c70da8f94b76\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 11.0, \"hospitalized\": 84.0, \"total\": 7701, \"totalTestResults\": 7701, \"posNeg\": 7701, \"fips\": 8, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 12.0, \"negativeIncrease\": 1285.0, \"positiveIncrease\": 192.0, \"totalTestResultsIncrease\": 1477.0, \"ratio\": 0.11842617841838722, \"sinceDay0\": 11}, {\"index\": 454, \"date\": \"2020-03-26T00:00:00\", \"state\": \"CO\", \"positive\": 1086.0, \"negative\": 6978.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 148.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"cbe89fafefaf1d9173be314f959f33e567cf4dd2\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 19.0, \"hospitalized\": 148.0, \"total\": 8064, \"totalTestResults\": 8064, \"posNeg\": 8064, \"fips\": 8, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 64.0, \"negativeIncrease\": 189.0, \"positiveIncrease\": 174.0, \"totalTestResultsIncrease\": 363.0, \"ratio\": 0.13467261904761904, \"sinceDay0\": 12}, {\"index\": 398, \"date\": \"2020-03-27T00:00:00\", \"state\": \"CO\", \"positive\": 1430.0, \"negative\": 8692.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 184.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9429f394429920c07d58b96d744275aaed7bb88b\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 24.0, \"hospitalized\": 184.0, \"total\": 10122, \"totalTestResults\": 10122, \"posNeg\": 10122, \"fips\": 8, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 36.0, \"negativeIncrease\": 1714.0, \"positiveIncrease\": 344.0, \"totalTestResultsIncrease\": 2058.0, \"ratio\": 0.14127642758348152, \"sinceDay0\": 13}, {\"index\": 342, \"date\": \"2020-03-28T00:00:00\", \"state\": \"CO\", \"positive\": 1734.0, \"negative\": 9942.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 239.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"037a22a41313b25a40b92f4113fa04f784d3b5c1\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 31.0, \"hospitalized\": 239.0, \"total\": 11676, \"totalTestResults\": 11676, \"posNeg\": 11676, \"fips\": 8, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 55.0, \"negativeIncrease\": 1250.0, \"positiveIncrease\": 304.0, \"totalTestResultsIncrease\": 1554.0, \"ratio\": 0.1485097636176773, \"sinceDay0\": 14}, {\"index\": 286, \"date\": \"2020-03-29T00:00:00\", \"state\": \"CO\", \"positive\": 2061.0, \"negative\": 11215.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 274.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"73715d6db63053b6e3b672daf90f74bd2164eef6\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 44.0, \"hospitalized\": 274.0, \"total\": 13276, \"totalTestResults\": 13276, \"posNeg\": 13276, \"fips\": 8, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 35.0, \"negativeIncrease\": 1273.0, \"positiveIncrease\": 327.0, \"totalTestResultsIncrease\": 1600.0, \"ratio\": 0.15524254293461887, \"sinceDay0\": 15}, {\"index\": 230, \"date\": \"2020-03-30T00:00:00\", \"state\": \"CO\", \"positive\": 2627.0, \"negative\": 12737.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 414.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"2f09674b8bfb4f141d2ef246cfc410dd972a1efc\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 51.0, \"hospitalized\": 414.0, \"total\": 15364, \"totalTestResults\": 15364, \"posNeg\": 15364, \"fips\": 8, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 140.0, \"negativeIncrease\": 1522.0, \"positiveIncrease\": 566.0, \"totalTestResultsIncrease\": 2088.0, \"ratio\": 0.17098411871908356, \"sinceDay0\": 16}, {\"index\": 174, \"date\": \"2020-03-31T00:00:00\", \"state\": \"CO\", \"positive\": 2627.0, \"negative\": 12737.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 414.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"94036534fc5ae0cbc3e63e2576bdb553dda374c1\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 51.0, \"hospitalized\": 414.0, \"total\": 15364, \"totalTestResults\": 15364, \"posNeg\": 15364, \"fips\": 8, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.17098411871908356, \"sinceDay0\": 17}, {\"index\": 118, \"date\": \"2020-04-01T00:00:00\", \"state\": \"CO\", \"positive\": 2966.0, \"negative\": 13883.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 509.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a3ee849de14da82b70a71d32f063b1237b9dff2b\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 69.0, \"hospitalized\": 509.0, \"total\": 16849, \"totalTestResults\": 16849, \"posNeg\": 16849, \"fips\": 8, \"deathIncrease\": 18.0, \"hospitalizedIncrease\": 95.0, \"negativeIncrease\": 1146.0, \"positiveIncrease\": 339.0, \"totalTestResultsIncrease\": 1485.0, \"ratio\": 0.17603418600510415, \"sinceDay0\": 18}, {\"index\": 62, \"date\": \"2020-04-02T00:00:00\", \"state\": \"CO\", \"positive\": 3342.0, \"negative\": 15303.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 620.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"87f72739eeb827250a64fd310d95871229e9020f\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 80.0, \"hospitalized\": 620.0, \"total\": 18645, \"totalTestResults\": 18645, \"posNeg\": 18645, \"fips\": 8, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 111.0, \"negativeIncrease\": 1420.0, \"positiveIncrease\": 376.0, \"totalTestResultsIncrease\": 1796.0, \"ratio\": 0.17924376508447304, \"sinceDay0\": 19}, {\"index\": 6, \"date\": \"2020-04-03T00:00:00\", \"state\": \"CO\", \"positive\": 3728.0, \"negative\": 16683.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 710.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"34cd672827b7383da28377a0761440041fae9232\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 97.0, \"hospitalized\": 710.0, \"total\": 20411, \"totalTestResults\": 20411, \"posNeg\": 20411, \"fips\": 8, \"deathIncrease\": 17.0, \"hospitalizedIncrease\": 90.0, \"negativeIncrease\": 1380.0, \"positiveIncrease\": 386.0, \"totalTestResultsIncrease\": 1766.0, \"ratio\": 0.18264661212091518, \"sinceDay0\": 20}, {\"index\": 791, \"date\": \"2020-03-20T00:00:00\", \"state\": \"CT\", \"positive\": 194.0, \"negative\": 604.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8844ec1c291f1730400384b6236407c5eec4e772\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 3.0, \"hospitalized\": null, \"total\": 798, \"totalTestResults\": 798, \"posNeg\": 798, \"fips\": 9, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 98.0, \"totalTestResultsIncrease\": 98.0, \"ratio\": 0.24310776942355888, \"sinceDay0\": 0}, {\"index\": 735, \"date\": \"2020-03-21T00:00:00\", \"state\": \"CT\", \"positive\": 194.0, \"negative\": 2106.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"7366c98d6eeab0fb8ef1f185d59d99cbd4c2a6b8\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 4.0, \"hospitalized\": null, \"total\": 2300, \"totalTestResults\": 2300, \"posNeg\": 2300, \"fips\": 9, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1502.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 1502.0, \"ratio\": 0.08434782608695653, \"sinceDay0\": 1}, {\"index\": 679, \"date\": \"2020-03-22T00:00:00\", \"state\": \"CT\", \"positive\": 223.0, \"negative\": 2877.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 43.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5ec45e857aa3f53058bff9441efe10f05aeff922\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 5.0, \"hospitalized\": 43.0, \"total\": 3100, \"totalTestResults\": 3100, \"posNeg\": 3100, \"fips\": 9, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 43.0, \"negativeIncrease\": 771.0, \"positiveIncrease\": 29.0, \"totalTestResultsIncrease\": 800.0, \"ratio\": 0.07193548387096774, \"sinceDay0\": 2}, {\"index\": 623, \"date\": \"2020-03-23T00:00:00\", \"state\": \"CT\", \"positive\": 415.0, \"negative\": 4085.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 54.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"2518c62f7473aa16f7d4006600fa46f294a5365e\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 10.0, \"hospitalized\": 54.0, \"total\": 4500, \"totalTestResults\": 4500, \"posNeg\": 4500, \"fips\": 9, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 11.0, \"negativeIncrease\": 1208.0, \"positiveIncrease\": 192.0, \"totalTestResultsIncrease\": 1400.0, \"ratio\": 0.09222222222222222, \"sinceDay0\": 3}, {\"index\": 567, \"date\": \"2020-03-24T00:00:00\", \"state\": \"CT\", \"positive\": 618.0, \"negative\": 4682.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 71.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"612d0cb8b3d8f54b99ab9aeb2e9cfd65b7f5e923\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 12.0, \"hospitalized\": 71.0, \"total\": 5300, \"totalTestResults\": 5300, \"posNeg\": 5300, \"fips\": 9, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 17.0, \"negativeIncrease\": 597.0, \"positiveIncrease\": 203.0, \"totalTestResultsIncrease\": 800.0, \"ratio\": 0.11660377358490566, \"sinceDay0\": 4}, {\"index\": 511, \"date\": \"2020-03-25T00:00:00\", \"state\": \"CT\", \"positive\": 875.0, \"negative\": 5023.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 113.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"7fd69cdd6c25f9c6b2da4c3feb12f0ac36c44c16\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 19.0, \"hospitalized\": 113.0, \"total\": 5898, \"totalTestResults\": 5898, \"posNeg\": 5898, \"fips\": 9, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 42.0, \"negativeIncrease\": 341.0, \"positiveIncrease\": 257.0, \"totalTestResultsIncrease\": 598.0, \"ratio\": 0.14835537470328924, \"sinceDay0\": 5}, {\"index\": 455, \"date\": \"2020-03-26T00:00:00\", \"state\": \"CT\", \"positive\": 1012.0, \"negative\": 5625.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 125.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"051ee3a0ff5962ca5aa0f29cad1950bc8408c88a\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 21.0, \"hospitalized\": 125.0, \"total\": 6637, \"totalTestResults\": 6637, \"posNeg\": 6637, \"fips\": 9, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 12.0, \"negativeIncrease\": 602.0, \"positiveIncrease\": 137.0, \"totalTestResultsIncrease\": 739.0, \"ratio\": 0.15247852945607956, \"sinceDay0\": 6}, {\"index\": 399, \"date\": \"2020-03-27T00:00:00\", \"state\": \"CT\", \"positive\": 1291.0, \"negative\": 7109.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 173.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"3c8514200b49122389594ce0362801f8667bfc67\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 27.0, \"hospitalized\": 173.0, \"total\": 8400, \"totalTestResults\": 8400, \"posNeg\": 8400, \"fips\": 9, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 48.0, \"negativeIncrease\": 1484.0, \"positiveIncrease\": 279.0, \"totalTestResultsIncrease\": 1763.0, \"ratio\": 0.15369047619047618, \"sinceDay0\": 7}, {\"index\": 343, \"date\": \"2020-03-28T00:00:00\", \"state\": \"CT\", \"positive\": 1291.0, \"negative\": 7109.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 173.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"86371e1868776142a360e113c0677d283d829a84\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 27.0, \"hospitalized\": 173.0, \"total\": 8400, \"totalTestResults\": 8400, \"posNeg\": 8400, \"fips\": 9, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.15369047619047618, \"sinceDay0\": 8}, {\"index\": 287, \"date\": \"2020-03-29T00:00:00\", \"state\": \"CT\", \"positive\": 1993.0, \"negative\": 9907.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 404.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"81670eca1c3cba6fb7e9c07bec78ea6eeba53e4e\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 34.0, \"hospitalized\": 404.0, \"total\": 11900, \"totalTestResults\": 11900, \"posNeg\": 11900, \"fips\": 9, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 231.0, \"negativeIncrease\": 2798.0, \"positiveIncrease\": 702.0, \"totalTestResultsIncrease\": 3500.0, \"ratio\": 0.16747899159663865, \"sinceDay0\": 9}, {\"index\": 231, \"date\": \"2020-03-30T00:00:00\", \"state\": \"CT\", \"positive\": 2571.0, \"negative\": 12029.0, \"pending\": null, \"hospitalizedCurrently\": 517.0, \"hospitalizedCumulative\": 517.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d485d42512127c98051f824a384ea55685212a39\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 36.0, \"hospitalized\": 517.0, \"total\": 14600, \"totalTestResults\": 14600, \"posNeg\": 14600, \"fips\": 9, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 113.0, \"negativeIncrease\": 2122.0, \"positiveIncrease\": 578.0, \"totalTestResultsIncrease\": 2700.0, \"ratio\": 0.1760958904109589, \"sinceDay0\": 10}, {\"index\": 175, \"date\": \"2020-03-31T00:00:00\", \"state\": \"CT\", \"positive\": 3128.0, \"negative\": 13029.0, \"pending\": null, \"hospitalizedCurrently\": 608.0, \"hospitalizedCumulative\": 608.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"cc7f9b9641974587a09bd4816bc59a78cd471641\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 69.0, \"hospitalized\": 608.0, \"total\": 16157, \"totalTestResults\": 16157, \"posNeg\": 16157, \"fips\": 9, \"deathIncrease\": 33.0, \"hospitalizedIncrease\": 91.0, \"negativeIncrease\": 1000.0, \"positiveIncrease\": 557.0, \"totalTestResultsIncrease\": 1557.0, \"ratio\": 0.19360029708485485, \"sinceDay0\": 11}, {\"index\": 119, \"date\": \"2020-04-01T00:00:00\", \"state\": \"CT\", \"positive\": 3557.0, \"negative\": 13043.0, \"pending\": null, \"hospitalizedCurrently\": 766.0, \"hospitalizedCumulative\": 766.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f749f0110af60be2bb7eda83cf543c95cfbfac5d\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 85.0, \"hospitalized\": 766.0, \"total\": 16600, \"totalTestResults\": 16600, \"posNeg\": 16600, \"fips\": 9, \"deathIncrease\": 16.0, \"hospitalizedIncrease\": 158.0, \"negativeIncrease\": 14.0, \"positiveIncrease\": 429.0, \"totalTestResultsIncrease\": 443.0, \"ratio\": 0.21427710843373493, \"sinceDay0\": 12}, {\"index\": 63, \"date\": \"2020-04-02T00:00:00\", \"state\": \"CT\", \"positive\": 3824.0, \"negative\": 14476.0, \"pending\": null, \"hospitalizedCurrently\": 827.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"bbaf84bc79e98252465e76199b3d66cb58316223\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 112.0, \"hospitalized\": null, \"total\": 18300, \"totalTestResults\": 18300, \"posNeg\": 18300, \"fips\": 9, \"deathIncrease\": 27.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1433.0, \"positiveIncrease\": 267.0, \"totalTestResultsIncrease\": 1700.0, \"ratio\": 0.20896174863387978, \"sinceDay0\": 13}, {\"index\": 7, \"date\": \"2020-04-03T00:00:00\", \"state\": \"CT\", \"positive\": 4914.0, \"negative\": 15101.0, \"pending\": null, \"hospitalizedCurrently\": 909.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1951d0ca03e6ab2d9bffc4856b060402c69ea7e6\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 131.0, \"hospitalized\": null, \"total\": 20015, \"totalTestResults\": 20015, \"posNeg\": 20015, \"fips\": 9, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 625.0, \"positiveIncrease\": 1090.0, \"totalTestResultsIncrease\": 1715.0, \"ratio\": 0.24551586310267298, \"sinceDay0\": 14}, {\"index\": 624, \"date\": \"2020-03-23T00:00:00\", \"state\": \"DC\", \"positive\": 116.0, \"negative\": 1113.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a4ac9750469218e985257eae6f8bf345a38e2e94\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 2.0, \"hospitalized\": null, \"total\": 1229, \"totalTestResults\": 1229, \"posNeg\": 1229, \"fips\": 11, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 156.0, \"positiveIncrease\": 18.0, \"totalTestResultsIncrease\": 174.0, \"ratio\": 0.09438567941415785, \"sinceDay0\": 0}, {\"index\": 568, \"date\": \"2020-03-24T00:00:00\", \"state\": \"DC\", \"positive\": 137.0, \"negative\": 1195.0, \"pending\": 2.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b0e3891c7034fd64b2031778208ec8934a5f2ddf\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 2.0, \"hospitalized\": null, \"total\": 1334, \"totalTestResults\": 1332, \"posNeg\": 1332, \"fips\": 11, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 82.0, \"positiveIncrease\": 21.0, \"totalTestResultsIncrease\": 103.0, \"ratio\": 0.10269865067466268, \"sinceDay0\": 1}, {\"index\": 512, \"date\": \"2020-03-25T00:00:00\", \"state\": \"DC\", \"positive\": 183.0, \"negative\": 1423.0, \"pending\": 3.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4c94c1d06cba80ba6ca85bc5eb70dab16b46b6bf\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 2.0, \"hospitalized\": null, \"total\": 1609, \"totalTestResults\": 1606, \"posNeg\": 1606, \"fips\": 11, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 228.0, \"positiveIncrease\": 46.0, \"totalTestResultsIncrease\": 274.0, \"ratio\": 0.11373523927905531, \"sinceDay0\": 2}, {\"index\": 456, \"date\": \"2020-03-26T00:00:00\", \"state\": \"DC\", \"positive\": 231.0, \"negative\": 1626.0, \"pending\": 1.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 21.0, \"hash\": \"be59e63006a0dcd465209f8d1b3097218f92f343\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 3.0, \"hospitalized\": null, \"total\": 1858, \"totalTestResults\": 1857, \"posNeg\": 1857, \"fips\": 11, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 203.0, \"positiveIncrease\": 48.0, \"totalTestResultsIncrease\": 251.0, \"ratio\": 0.12432723358449946, \"sinceDay0\": 3}, {\"index\": 400, \"date\": \"2020-03-27T00:00:00\", \"state\": \"DC\", \"positive\": 267.0, \"negative\": 1897.0, \"pending\": 2.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 49.0, \"hash\": \"05e7fe78e293ec8a664077ad665e2495d86713bd\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 3.0, \"hospitalized\": null, \"total\": 2166, \"totalTestResults\": 2164, \"posNeg\": 2164, \"fips\": 11, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 271.0, \"positiveIncrease\": 36.0, \"totalTestResultsIncrease\": 307.0, \"ratio\": 0.12326869806094183, \"sinceDay0\": 4}, {\"index\": 344, \"date\": \"2020-03-28T00:00:00\", \"state\": \"DC\", \"positive\": 304.0, \"negative\": 2211.0, \"pending\": 1.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 51.0, \"hash\": \"1a0f746e0a4c29b6d4b0f58ba80a30d82fbc3ccb\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 4.0, \"hospitalized\": null, \"total\": 2516, \"totalTestResults\": 2515, \"posNeg\": 2515, \"fips\": 11, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 314.0, \"positiveIncrease\": 37.0, \"totalTestResultsIncrease\": 351.0, \"ratio\": 0.12082670906200318, \"sinceDay0\": 5}, {\"index\": 288, \"date\": \"2020-03-29T00:00:00\", \"state\": \"DC\", \"positive\": 342.0, \"negative\": 2469.0, \"pending\": 1.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 66.0, \"hash\": \"4781282de2140f0f63dcd581d9f45c684bf3fb32\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 5.0, \"hospitalized\": null, \"total\": 2812, \"totalTestResults\": 2811, \"posNeg\": 2811, \"fips\": 11, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 258.0, \"positiveIncrease\": 38.0, \"totalTestResultsIncrease\": 296.0, \"ratio\": 0.12162162162162163, \"sinceDay0\": 6}, {\"index\": 232, \"date\": \"2020-03-30T00:00:00\", \"state\": \"DC\", \"positive\": 401.0, \"negative\": 2682.0, \"pending\": 2.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 193.0, \"onVentilatorCumulative\": 193.0, \"recovered\": 106.0, \"hash\": \"205441388fb26e9e101a1729a00f90b6fed41b9e\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 9.0, \"hospitalized\": null, \"total\": 3085, \"totalTestResults\": 3083, \"posNeg\": 3083, \"fips\": 11, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 213.0, \"positiveIncrease\": 59.0, \"totalTestResultsIncrease\": 272.0, \"ratio\": 0.12998379254457051, \"sinceDay0\": 7}, {\"index\": 176, \"date\": \"2020-03-31T00:00:00\", \"state\": \"DC\", \"positive\": 495.0, \"negative\": 3262.0, \"pending\": 2.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 121.0, \"hash\": \"5434bf0aabd9cdefb5f6ade62555f66bf0231f65\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 9.0, \"hospitalized\": null, \"total\": 3759, \"totalTestResults\": 3757, \"posNeg\": 3757, \"fips\": 11, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 580.0, \"positiveIncrease\": 94.0, \"totalTestResultsIncrease\": 674.0, \"ratio\": 0.13168395849960096, \"sinceDay0\": 8}, {\"index\": 120, \"date\": \"2020-04-01T00:00:00\", \"state\": \"DC\", \"positive\": 586.0, \"negative\": 3262.0, \"pending\": 2.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 142.0, \"hash\": \"8a7aef6408b5c008467ada52ef83bc9e47d8af28\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 11.0, \"hospitalized\": null, \"total\": 3850, \"totalTestResults\": 3848, \"posNeg\": 3848, \"fips\": 11, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 91.0, \"totalTestResultsIncrease\": 91.0, \"ratio\": 0.1522077922077922, \"sinceDay0\": 9}, {\"index\": 64, \"date\": \"2020-04-02T00:00:00\", \"state\": \"DC\", \"positive\": 653.0, \"negative\": 4417.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 173.0, \"hash\": \"bb0f0a7da39336cefc7629d9814ca0bd2a83e358\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 5070, \"totalTestResults\": 5070, \"posNeg\": 5070, \"fips\": 11, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1155.0, \"positiveIncrease\": 67.0, \"totalTestResultsIncrease\": 1222.0, \"ratio\": 0.12879684418145956, \"sinceDay0\": 10}, {\"index\": 8, \"date\": \"2020-04-03T00:00:00\", \"state\": \"DC\", \"positive\": 757.0, \"negative\": 4827.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 206.0, \"hash\": \"fbf3f83530b301cee1d7dc47fd0719b435edc428\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 15.0, \"hospitalized\": null, \"total\": 5584, \"totalTestResults\": 5584, \"posNeg\": 5584, \"fips\": 11, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 410.0, \"positiveIncrease\": 104.0, \"totalTestResultsIncrease\": 514.0, \"ratio\": 0.13556590257879655, \"sinceDay0\": 11}, {\"index\": 513, \"date\": \"2020-03-25T00:00:00\", \"state\": \"DE\", \"positive\": 115.0, \"negative\": 36.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 11.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"176d5e478db0e4032758e1858abe680e3dc11dba\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 0.0, \"hospitalized\": 11.0, \"total\": 151, \"totalTestResults\": 151, \"posNeg\": 151, \"fips\": 10, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 11.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 24.0, \"totalTestResultsIncrease\": 24.0, \"ratio\": 0.7615894039735099, \"sinceDay0\": 0}, {\"index\": 457, \"date\": \"2020-03-26T00:00:00\", \"state\": \"DE\", \"positive\": 130.0, \"negative\": 36.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 13.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 4.0, \"hash\": \"0d755f6bd49fb4e9f225cc7c4d88b57451a21d68\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 1.0, \"hospitalized\": 13.0, \"total\": 166, \"totalTestResults\": 166, \"posNeg\": 166, \"fips\": 10, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 2.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 15.0, \"totalTestResultsIncrease\": 15.0, \"ratio\": 0.7831325301204819, \"sinceDay0\": 1}, {\"index\": 401, \"date\": \"2020-03-27T00:00:00\", \"state\": \"DE\", \"positive\": 163.0, \"negative\": 36.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 15.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 9.0, \"hash\": \"31d53bb84c5e9bfaceb7402a234c7fc1540bbba3\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 2.0, \"hospitalized\": 15.0, \"total\": 199, \"totalTestResults\": 199, \"posNeg\": 199, \"fips\": 10, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 2.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 33.0, \"totalTestResultsIncrease\": 33.0, \"ratio\": 0.8190954773869347, \"sinceDay0\": 2}, {\"index\": 345, \"date\": \"2020-03-28T00:00:00\", \"state\": \"DE\", \"positive\": 214.0, \"negative\": 36.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 31.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 9.0, \"hash\": \"105eb2213c38b8c874d81c0d41b587c7bfa1fa61\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 3.0, \"hospitalized\": 31.0, \"total\": 250, \"totalTestResults\": 250, \"posNeg\": 250, \"fips\": 10, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 16.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 51.0, \"totalTestResultsIncrease\": 51.0, \"ratio\": 0.856, \"sinceDay0\": 3}, {\"index\": 289, \"date\": \"2020-03-29T00:00:00\", \"state\": \"DE\", \"positive\": 232.0, \"negative\": 36.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 33.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 9.0, \"hash\": \"c92dc538f521b9753e53d7600d9a0cae7139c5e2\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 6.0, \"hospitalized\": 33.0, \"total\": 268, \"totalTestResults\": 268, \"posNeg\": 268, \"fips\": 10, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 2.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 18.0, \"totalTestResultsIncrease\": 18.0, \"ratio\": 0.8656716417910447, \"sinceDay0\": 4}, {\"index\": 233, \"date\": \"2020-03-30T00:00:00\", \"state\": \"DE\", \"positive\": 264.0, \"negative\": 2216.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 45.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 9.0, \"hash\": \"96d1a7c87a7e6d01c91b8cf45208e49aadb24052\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 6.0, \"hospitalized\": 45.0, \"total\": 2480, \"totalTestResults\": 2480, \"posNeg\": 2480, \"fips\": 10, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 12.0, \"negativeIncrease\": 2180.0, \"positiveIncrease\": 32.0, \"totalTestResultsIncrease\": 2212.0, \"ratio\": 0.1064516129032258, \"sinceDay0\": 5}, {\"index\": 177, \"date\": \"2020-03-31T00:00:00\", \"state\": \"DE\", \"positive\": 319.0, \"negative\": 3696.0, \"pending\": null, \"hospitalizedCurrently\": 57.0, \"hospitalizedCumulative\": 64.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 22.0, \"hash\": \"0c6d62603ac04630bbfa9dc6e129f4f9d58307d5\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 10.0, \"hospitalized\": 64.0, \"total\": 4015, \"totalTestResults\": 4015, \"posNeg\": 4015, \"fips\": 10, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 19.0, \"negativeIncrease\": 1480.0, \"positiveIncrease\": 55.0, \"totalTestResultsIncrease\": 1535.0, \"ratio\": 0.07945205479452055, \"sinceDay0\": 6}, {\"index\": 121, \"date\": \"2020-04-01T00:00:00\", \"state\": \"DE\", \"positive\": 368.0, \"negative\": 4015.0, \"pending\": null, \"hospitalizedCurrently\": 51.0, \"hospitalizedCumulative\": 57.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 49.0, \"hash\": \"baa25d2006bd8abfc80790eac0381985836fa4f4\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 11.0, \"hospitalized\": 57.0, \"total\": 4383, \"totalTestResults\": 4383, \"posNeg\": 4383, \"fips\": 10, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": -7.0, \"negativeIncrease\": 319.0, \"positiveIncrease\": 49.0, \"totalTestResultsIncrease\": 368.0, \"ratio\": 0.0839607574720511, \"sinceDay0\": 7}, {\"index\": 65, \"date\": \"2020-04-02T00:00:00\", \"state\": \"DE\", \"positive\": 393.0, \"negative\": 4566.0, \"pending\": null, \"hospitalizedCurrently\": 56.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 49.0, \"hash\": \"ed433f1aae9fc98fb0f7510f5bbd3f0bd9cdf5ab\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 4959, \"totalTestResults\": 4959, \"posNeg\": 4959, \"fips\": 10, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 551.0, \"positiveIncrease\": 25.0, \"totalTestResultsIncrease\": 576.0, \"ratio\": 0.07924984875983061, \"sinceDay0\": 8}, {\"index\": 9, \"date\": \"2020-04-03T00:00:00\", \"state\": \"DE\", \"positive\": 450.0, \"negative\": 4995.0, \"pending\": null, \"hospitalizedCurrently\": 63.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 71.0, \"hash\": \"b840b5921e6e7a1adc67cdefd1c22f4e046d277a\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 14.0, \"hospitalized\": null, \"total\": 5445, \"totalTestResults\": 5445, \"posNeg\": 5445, \"fips\": 10, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 429.0, \"positiveIncrease\": 57.0, \"totalTestResultsIncrease\": 486.0, \"ratio\": 0.08264462809917356, \"sinceDay0\": 9}, {\"index\": 1073, \"date\": \"2020-03-15T00:00:00\", \"state\": \"FL\", \"positive\": 116.0, \"negative\": 678.0, \"pending\": 454.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"fbbf82f88fa5a3c2bbdf7f937c2752c5ba3ce6df\", \"dateChecked\": \"2020-03-15T20:00:00Z\", \"death\": 4.0, \"hospitalized\": null, \"total\": 1248, \"totalTestResults\": 794, \"posNeg\": 794, \"fips\": 12, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 200.0, \"positiveIncrease\": 39.0, \"totalTestResultsIncrease\": 239.0, \"ratio\": 0.09294871794871795, \"sinceDay0\": 0}, {\"index\": 1018, \"date\": \"2020-03-16T00:00:00\", \"state\": \"FL\", \"positive\": 141.0, \"negative\": 684.0, \"pending\": 514.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e53cf48d45ec818ea2d56d271277e6ec5a5b49bd\", \"dateChecked\": \"2020-03-16T20:00:00Z\", \"death\": 4.0, \"hospitalized\": null, \"total\": 1339, \"totalTestResults\": 825, \"posNeg\": 825, \"fips\": 12, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 6.0, \"positiveIncrease\": 25.0, \"totalTestResultsIncrease\": 31.0, \"ratio\": 0.1053024645257655, \"sinceDay0\": 1}, {\"index\": 962, \"date\": \"2020-03-17T00:00:00\", \"state\": \"FL\", \"positive\": 186.0, \"negative\": 940.0, \"pending\": 872.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"326863b36e37f814b53ae8a8ac35ff314dba227c\", \"dateChecked\": \"2020-03-17T20:00:00Z\", \"death\": 6.0, \"hospitalized\": null, \"total\": 1998, \"totalTestResults\": 1126, \"posNeg\": 1126, \"fips\": 12, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 256.0, \"positiveIncrease\": 45.0, \"totalTestResultsIncrease\": 301.0, \"ratio\": 0.09309309309309309, \"sinceDay0\": 2}, {\"index\": 906, \"date\": \"2020-03-18T00:00:00\", \"state\": \"FL\", \"positive\": 314.0, \"negative\": 1225.0, \"pending\": 954.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"780fc846fbf000c950f78cc64d78b6224aba330a\", \"dateChecked\": \"2020-03-18T20:00:00Z\", \"death\": 7.0, \"hospitalized\": null, \"total\": 2493, \"totalTestResults\": 1539, \"posNeg\": 1539, \"fips\": 12, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 285.0, \"positiveIncrease\": 128.0, \"totalTestResultsIncrease\": 413.0, \"ratio\": 0.12595266746891295, \"sinceDay0\": 3}, {\"index\": 850, \"date\": \"2020-03-19T00:00:00\", \"state\": \"FL\", \"positive\": 390.0, \"negative\": 1533.0, \"pending\": 1019.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"502282f690274385776692ae0cd2f7cbc7af763b\", \"dateChecked\": \"2020-03-19T20:00:00Z\", \"death\": 8.0, \"hospitalized\": null, \"total\": 2942, \"totalTestResults\": 1923, \"posNeg\": 1923, \"fips\": 12, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 308.0, \"positiveIncrease\": 76.0, \"totalTestResultsIncrease\": 384.0, \"ratio\": 0.13256288239293, \"sinceDay0\": 4}, {\"index\": 794, \"date\": \"2020-03-20T00:00:00\", \"state\": \"FL\", \"positive\": 520.0, \"negative\": 1870.0, \"pending\": 1026.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"18f30f4aef61df1aa3a4a339482c5ad20ea478ed\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 10.0, \"hospitalized\": null, \"total\": 3416, \"totalTestResults\": 2390, \"posNeg\": 2390, \"fips\": 12, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 337.0, \"positiveIncrease\": 130.0, \"totalTestResultsIncrease\": 467.0, \"ratio\": 0.1522248243559719, \"sinceDay0\": 5}, {\"index\": 738, \"date\": \"2020-03-21T00:00:00\", \"state\": \"FL\", \"positive\": 658.0, \"negative\": 6579.0, \"pending\": 1002.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 158.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9fcedaea4a2b5e2daad7c2ef3cae3d7c4a66d46c\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 12.0, \"hospitalized\": 158.0, \"total\": 8239, \"totalTestResults\": 7237, \"posNeg\": 7237, \"fips\": 12, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 158.0, \"negativeIncrease\": 4709.0, \"positiveIncrease\": 138.0, \"totalTestResultsIncrease\": 4847.0, \"ratio\": 0.07986406117247238, \"sinceDay0\": 6}, {\"index\": 682, \"date\": \"2020-03-22T00:00:00\", \"state\": \"FL\", \"positive\": 830.0, \"negative\": 7990.0, \"pending\": 963.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 185.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4e90c613758e8eb9c13d69d3d68c462bba4cb68f\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 13.0, \"hospitalized\": 185.0, \"total\": 9783, \"totalTestResults\": 8820, \"posNeg\": 8820, \"fips\": 12, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 27.0, \"negativeIncrease\": 1411.0, \"positiveIncrease\": 172.0, \"totalTestResultsIncrease\": 1583.0, \"ratio\": 0.08484105080241235, \"sinceDay0\": 7}, {\"index\": 626, \"date\": \"2020-03-23T00:00:00\", \"state\": \"FL\", \"positive\": 1171.0, \"negative\": 11063.0, \"pending\": 860.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 217.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"fefea265e78e4106c70c1907bee630dd8b5d76ad\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 14.0, \"hospitalized\": 217.0, \"total\": 13094, \"totalTestResults\": 12234, \"posNeg\": 12234, \"fips\": 12, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 32.0, \"negativeIncrease\": 3073.0, \"positiveIncrease\": 341.0, \"totalTestResultsIncrease\": 3414.0, \"ratio\": 0.08943027340766764, \"sinceDay0\": 8}, {\"index\": 570, \"date\": \"2020-03-24T00:00:00\", \"state\": \"FL\", \"positive\": 1412.0, \"negative\": 13127.0, \"pending\": 1008.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 259.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"01f224778b595c53a53b114c66966c5987214220\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 18.0, \"hospitalized\": 259.0, \"total\": 15547, \"totalTestResults\": 14539, \"posNeg\": 14539, \"fips\": 12, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 42.0, \"negativeIncrease\": 2064.0, \"positiveIncrease\": 241.0, \"totalTestResultsIncrease\": 2305.0, \"ratio\": 0.09082138033061041, \"sinceDay0\": 9}, {\"index\": 514, \"date\": \"2020-03-25T00:00:00\", \"state\": \"FL\", \"positive\": 1682.0, \"negative\": 15374.0, \"pending\": 1233.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 316.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"3824a66b112cf25a03e7e1701dc1af01026bd711\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 22.0, \"hospitalized\": 316.0, \"total\": 18289, \"totalTestResults\": 17056, \"posNeg\": 17056, \"fips\": 12, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 57.0, \"negativeIncrease\": 2247.0, \"positiveIncrease\": 270.0, \"totalTestResultsIncrease\": 2517.0, \"ratio\": 0.09196784952703811, \"sinceDay0\": 10}, {\"index\": 458, \"date\": \"2020-03-26T00:00:00\", \"state\": \"FL\", \"positive\": 2355.0, \"negative\": 23741.0, \"pending\": 1443.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 406.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1290ba6a489ffe158fa4333c279e73b7c728543e\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 28.0, \"hospitalized\": 406.0, \"total\": 27539, \"totalTestResults\": 26096, \"posNeg\": 26096, \"fips\": 12, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 90.0, \"negativeIncrease\": 8367.0, \"positiveIncrease\": 673.0, \"totalTestResultsIncrease\": 9040.0, \"ratio\": 0.08551508769381604, \"sinceDay0\": 11}, {\"index\": 402, \"date\": \"2020-03-27T00:00:00\", \"state\": \"FL\", \"positive\": 2765.0, \"negative\": 28186.0, \"pending\": 1517.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 456.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b93ab29f799aa9d89c0f98c7f427278725445572\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 34.0, \"hospitalized\": 456.0, \"total\": 32468, \"totalTestResults\": 30951, \"posNeg\": 30951, \"fips\": 12, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 50.0, \"negativeIncrease\": 4445.0, \"positiveIncrease\": 410.0, \"totalTestResultsIncrease\": 4855.0, \"ratio\": 0.08516077368485894, \"sinceDay0\": 12}, {\"index\": 346, \"date\": \"2020-03-28T00:00:00\", \"state\": \"FL\", \"positive\": 3763.0, \"negative\": 35366.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 526.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"14cf93a61518d7efeec334a7c7fb1c959060c9f8\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 54.0, \"hospitalized\": 526.0, \"total\": 39129, \"totalTestResults\": 39129, \"posNeg\": 39129, \"fips\": 12, \"deathIncrease\": 20.0, \"hospitalizedIncrease\": 70.0, \"negativeIncrease\": 7180.0, \"positiveIncrease\": 998.0, \"totalTestResultsIncrease\": 8178.0, \"ratio\": 0.09616908175521992, \"sinceDay0\": 13}, {\"index\": 290, \"date\": \"2020-03-29T00:00:00\", \"state\": \"FL\", \"positive\": 4246.0, \"negative\": 39070.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 594.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"39553e3ec095e3143e776031465d2e90ade6c787\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 56.0, \"hospitalized\": 594.0, \"total\": 43316, \"totalTestResults\": 43316, \"posNeg\": 43316, \"fips\": 12, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 68.0, \"negativeIncrease\": 3704.0, \"positiveIncrease\": 483.0, \"totalTestResultsIncrease\": 4187.0, \"ratio\": 0.09802382491458121, \"sinceDay0\": 14}, {\"index\": 234, \"date\": \"2020-03-30T00:00:00\", \"state\": \"FL\", \"positive\": 5473.0, \"negative\": 48225.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 652.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9a3e8154ce0eca0c63b55151a437a020a79406e3\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 63.0, \"hospitalized\": 652.0, \"total\": 53698, \"totalTestResults\": 53698, \"posNeg\": 53698, \"fips\": 12, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 58.0, \"negativeIncrease\": 9155.0, \"positiveIncrease\": 1227.0, \"totalTestResultsIncrease\": 10382.0, \"ratio\": 0.10192185928712429, \"sinceDay0\": 15}, {\"index\": 178, \"date\": \"2020-03-31T00:00:00\", \"state\": \"FL\", \"positive\": 6338.0, \"negative\": 54285.0, \"pending\": 1163.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 823.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c0d094c60a3352b108e4b759b45b066bd56cc068\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 77.0, \"hospitalized\": 823.0, \"total\": 61786, \"totalTestResults\": 60623, \"posNeg\": 60623, \"fips\": 12, \"deathIncrease\": 14.0, \"hospitalizedIncrease\": 171.0, \"negativeIncrease\": 6060.0, \"positiveIncrease\": 865.0, \"totalTestResultsIncrease\": 6925.0, \"ratio\": 0.10257987246301752, \"sinceDay0\": 16}, {\"index\": 122, \"date\": \"2020-04-01T00:00:00\", \"state\": \"FL\", \"positive\": 6955.0, \"negative\": 59529.0, \"pending\": 1235.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 949.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d9a24f33db59e2a7276a3019ee2e37f41f9bfb06\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 87.0, \"hospitalized\": 949.0, \"total\": 67719, \"totalTestResults\": 66484, \"posNeg\": 66484, \"fips\": 12, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 126.0, \"negativeIncrease\": 5244.0, \"positiveIncrease\": 617.0, \"totalTestResultsIncrease\": 5861.0, \"ratio\": 0.10270382019817186, \"sinceDay0\": 17}, {\"index\": 66, \"date\": \"2020-04-02T00:00:00\", \"state\": \"FL\", \"positive\": 8010.0, \"negative\": 69286.0, \"pending\": 1285.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1123.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"174161bf2644248219c4f77323f7aa378fc8d409\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 128.0, \"hospitalized\": 1123.0, \"total\": 78581, \"totalTestResults\": 77296, \"posNeg\": 77296, \"fips\": 12, \"deathIncrease\": 41.0, \"hospitalizedIncrease\": 174.0, \"negativeIncrease\": 9757.0, \"positiveIncrease\": 1055.0, \"totalTestResultsIncrease\": 10812.0, \"ratio\": 0.10193303724818976, \"sinceDay0\": 18}, {\"index\": 10, \"date\": \"2020-04-03T00:00:00\", \"state\": \"FL\", \"positive\": 9585.0, \"negative\": 82137.0, \"pending\": 1225.0, \"hospitalizedCurrently\": 1215.0, \"hospitalizedCumulative\": 1287.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"fd0c37309c79ae95c06c48e43ce956652814c5e5\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 163.0, \"hospitalized\": 1287.0, \"total\": 92947, \"totalTestResults\": 91722, \"posNeg\": 91722, \"fips\": 12, \"deathIncrease\": 35.0, \"hospitalizedIncrease\": 164.0, \"negativeIncrease\": 12851.0, \"positiveIncrease\": 1575.0, \"totalTestResultsIncrease\": 14426.0, \"ratio\": 0.10312328531313544, \"sinceDay0\": 19}, {\"index\": 1019, \"date\": \"2020-03-16T00:00:00\", \"state\": \"GA\", \"positive\": 121.0, \"negative\": null, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c6fa2c88408c5bb21156b21e12fac3816f255ea9\", \"dateChecked\": \"2020-03-16T20:00:00Z\", \"death\": 1.0, \"hospitalized\": null, \"total\": 121, \"totalTestResults\": 121, \"posNeg\": 121, \"fips\": 13, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 22.0, \"totalTestResultsIncrease\": 22.0, \"ratio\": 1.0, \"sinceDay0\": 0}, {\"index\": 963, \"date\": \"2020-03-17T00:00:00\", \"state\": \"GA\", \"positive\": 146.0, \"negative\": null, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"6d29d5d7a269b24f93abacce353e78bdd6d779e5\", \"dateChecked\": \"2020-03-17T20:00:00Z\", \"death\": 1.0, \"hospitalized\": null, \"total\": 146, \"totalTestResults\": 146, \"posNeg\": 146, \"fips\": 13, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 25.0, \"totalTestResultsIncrease\": 25.0, \"ratio\": 1.0, \"sinceDay0\": 1}, {\"index\": 907, \"date\": \"2020-03-18T00:00:00\", \"state\": \"GA\", \"positive\": 197.0, \"negative\": 1311.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"7c4abc91d1b496bb4b6e90a2b568750290d62c25\", \"dateChecked\": \"2020-03-18T20:00:00Z\", \"death\": 1.0, \"hospitalized\": null, \"total\": 1508, \"totalTestResults\": 1508, \"posNeg\": 1508, \"fips\": 13, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1311.0, \"positiveIncrease\": 51.0, \"totalTestResultsIncrease\": 1362.0, \"ratio\": 0.1306366047745358, \"sinceDay0\": 2}, {\"index\": 851, \"date\": \"2020-03-19T00:00:00\", \"state\": \"GA\", \"positive\": 287.0, \"negative\": 1544.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5b54c8e2862e3541c6cb2a4a0a6d3fc93891f218\", \"dateChecked\": \"2020-03-19T20:00:00Z\", \"death\": 10.0, \"hospitalized\": null, \"total\": 1831, \"totalTestResults\": 1831, \"posNeg\": 1831, \"fips\": 13, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 233.0, \"positiveIncrease\": 90.0, \"totalTestResultsIncrease\": 323.0, \"ratio\": 0.1567449481157837, \"sinceDay0\": 3}, {\"index\": 795, \"date\": \"2020-03-20T00:00:00\", \"state\": \"GA\", \"positive\": 420.0, \"negative\": 1966.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c1099b472676eb4813360be325975832eeeecc23\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 13.0, \"hospitalized\": null, \"total\": 2386, \"totalTestResults\": 2386, \"posNeg\": 2386, \"fips\": 13, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 422.0, \"positiveIncrease\": 133.0, \"totalTestResultsIncrease\": 555.0, \"ratio\": 0.1760268231349539, \"sinceDay0\": 4}, {\"index\": 739, \"date\": \"2020-03-21T00:00:00\", \"state\": \"GA\", \"positive\": 507.0, \"negative\": 2557.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"fa63ec9c063c79b907568e755be9a52e3851b5e5\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 14.0, \"hospitalized\": null, \"total\": 3064, \"totalTestResults\": 3064, \"posNeg\": 3064, \"fips\": 13, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 591.0, \"positiveIncrease\": 87.0, \"totalTestResultsIncrease\": 678.0, \"ratio\": 0.16546997389033943, \"sinceDay0\": 5}, {\"index\": 683, \"date\": \"2020-03-22T00:00:00\", \"state\": \"GA\", \"positive\": 600.0, \"negative\": 3420.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"69702dd23d01e4995145ae809b89338c1dd848e2\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 23.0, \"hospitalized\": null, \"total\": 4020, \"totalTestResults\": 4020, \"posNeg\": 4020, \"fips\": 13, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 863.0, \"positiveIncrease\": 93.0, \"totalTestResultsIncrease\": 956.0, \"ratio\": 0.14925373134328357, \"sinceDay0\": 6}, {\"index\": 627, \"date\": \"2020-03-23T00:00:00\", \"state\": \"GA\", \"positive\": 772.0, \"negative\": 4297.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0f7832c9c3f96874233ce85032ac2f2d78f66eb8\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 25.0, \"hospitalized\": null, \"total\": 5069, \"totalTestResults\": 5069, \"posNeg\": 5069, \"fips\": 13, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 877.0, \"positiveIncrease\": 172.0, \"totalTestResultsIncrease\": 1049.0, \"ratio\": 0.152298283685145, \"sinceDay0\": 7}, {\"index\": 571, \"date\": \"2020-03-24T00:00:00\", \"state\": \"GA\", \"positive\": 1026.0, \"negative\": 4458.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"837865a88d570829d28bd06b24a4d97e5e901ddb\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 32.0, \"hospitalized\": null, \"total\": 5484, \"totalTestResults\": 5484, \"posNeg\": 5484, \"fips\": 13, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 161.0, \"positiveIncrease\": 254.0, \"totalTestResultsIncrease\": 415.0, \"ratio\": 0.18708971553610504, \"sinceDay0\": 8}, {\"index\": 515, \"date\": \"2020-03-25T00:00:00\", \"state\": \"GA\", \"positive\": 1247.0, \"negative\": 4932.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 394.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0608d7952fefcad2df075352ee28eb32e13426be\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 40.0, \"hospitalized\": 394.0, \"total\": 6179, \"totalTestResults\": 6179, \"posNeg\": 6179, \"fips\": 13, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 394.0, \"negativeIncrease\": 474.0, \"positiveIncrease\": 221.0, \"totalTestResultsIncrease\": 695.0, \"ratio\": 0.20181259103414792, \"sinceDay0\": 9}, {\"index\": 459, \"date\": \"2020-03-26T00:00:00\", \"state\": \"GA\", \"positive\": 1525.0, \"negative\": 7401.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 473.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5bd7f61bc12b4e207e0ceda50e5fe469273a6b44\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 48.0, \"hospitalized\": 473.0, \"total\": 8926, \"totalTestResults\": 8926, \"posNeg\": 8926, \"fips\": 13, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 79.0, \"negativeIncrease\": 2469.0, \"positiveIncrease\": 278.0, \"totalTestResultsIncrease\": 2747.0, \"ratio\": 0.17084920457091643, \"sinceDay0\": 10}, {\"index\": 403, \"date\": \"2020-03-27T00:00:00\", \"state\": \"GA\", \"positive\": 2001.0, \"negative\": 7864.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 566.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b85e11000166a29096d95a7188bd6313144ef7fe\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 64.0, \"hospitalized\": 566.0, \"total\": 9865, \"totalTestResults\": 9865, \"posNeg\": 9865, \"fips\": 13, \"deathIncrease\": 16.0, \"hospitalizedIncrease\": 93.0, \"negativeIncrease\": 463.0, \"positiveIncrease\": 476.0, \"totalTestResultsIncrease\": 939.0, \"ratio\": 0.20283831728332488, \"sinceDay0\": 11}, {\"index\": 347, \"date\": \"2020-03-28T00:00:00\", \"state\": \"GA\", \"positive\": 2366.0, \"negative\": 8685.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 617.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"202f88e65247b72d32891c53d6d6c15fd209d322\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 69.0, \"hospitalized\": 617.0, \"total\": 11051, \"totalTestResults\": 11051, \"posNeg\": 11051, \"fips\": 13, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 51.0, \"negativeIncrease\": 821.0, \"positiveIncrease\": 365.0, \"totalTestResultsIncrease\": 1186.0, \"ratio\": 0.21409827164962447, \"sinceDay0\": 12}, {\"index\": 291, \"date\": \"2020-03-29T00:00:00\", \"state\": \"GA\", \"positive\": 2651.0, \"negative\": 9913.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 666.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8fd5124a5d60c405bdada62747c232a41e2f9111\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 80.0, \"hospitalized\": 666.0, \"total\": 12564, \"totalTestResults\": 12564, \"posNeg\": 12564, \"fips\": 13, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 49.0, \"negativeIncrease\": 1228.0, \"positiveIncrease\": 285.0, \"totalTestResultsIncrease\": 1513.0, \"ratio\": 0.21099968163005411, \"sinceDay0\": 13}, {\"index\": 235, \"date\": \"2020-03-30T00:00:00\", \"state\": \"GA\", \"positive\": 2809.0, \"negative\": 9915.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 707.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"25ceba85ecebfa065b3994c5a0511a721902a2a5\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 87.0, \"hospitalized\": 707.0, \"total\": 12724, \"totalTestResults\": 12724, \"posNeg\": 12724, \"fips\": 13, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 41.0, \"negativeIncrease\": 2.0, \"positiveIncrease\": 158.0, \"totalTestResultsIncrease\": 160.0, \"ratio\": 0.2207639107198994, \"sinceDay0\": 14}, {\"index\": 179, \"date\": \"2020-03-31T00:00:00\", \"state\": \"GA\", \"positive\": 3929.0, \"negative\": 12252.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 833.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"59e2183e84ee35f0e1c3432ef7380d6b2ba4f740\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 111.0, \"hospitalized\": 833.0, \"total\": 16181, \"totalTestResults\": 16181, \"posNeg\": 16181, \"fips\": 13, \"deathIncrease\": 24.0, \"hospitalizedIncrease\": 126.0, \"negativeIncrease\": 2337.0, \"positiveIncrease\": 1120.0, \"totalTestResultsIncrease\": 3457.0, \"ratio\": 0.24281564798220134, \"sinceDay0\": 15}, {\"index\": 123, \"date\": \"2020-04-01T00:00:00\", \"state\": \"GA\", \"positive\": 4638.0, \"negative\": 15688.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 952.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d6147a1075561f5d68ac98a7cb4dedb3e75bcd4c\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 139.0, \"hospitalized\": 952.0, \"total\": 20326, \"totalTestResults\": 20326, \"posNeg\": 20326, \"fips\": 13, \"deathIncrease\": 28.0, \"hospitalizedIncrease\": 119.0, \"negativeIncrease\": 3436.0, \"positiveIncrease\": 709.0, \"totalTestResultsIncrease\": 4145.0, \"ratio\": 0.22818065531831153, \"sinceDay0\": 16}, {\"index\": 67, \"date\": \"2020-04-02T00:00:00\", \"state\": \"GA\", \"positive\": 5348.0, \"negative\": 17609.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1056.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"15b36e0f73598e9edefa4eb26b735231587f472d\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 163.0, \"hospitalized\": 1056.0, \"total\": 22957, \"totalTestResults\": 22957, \"posNeg\": 22957, \"fips\": 13, \"deathIncrease\": 24.0, \"hospitalizedIncrease\": 104.0, \"negativeIncrease\": 1921.0, \"positiveIncrease\": 710.0, \"totalTestResultsIncrease\": 2631.0, \"ratio\": 0.2329572679357059, \"sinceDay0\": 17}, {\"index\": 11, \"date\": \"2020-04-03T00:00:00\", \"state\": \"GA\", \"positive\": 5831.0, \"negative\": 19434.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1158.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c82f88637af7d0c85b2360390bb2386b0da43065\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 184.0, \"hospitalized\": 1158.0, \"total\": 25265, \"totalTestResults\": 25265, \"posNeg\": 25265, \"fips\": 13, \"deathIncrease\": 21.0, \"hospitalizedIncrease\": 102.0, \"negativeIncrease\": 1825.0, \"positiveIncrease\": 483.0, \"totalTestResultsIncrease\": 2308.0, \"ratio\": 0.23079358796754404, \"sinceDay0\": 18}, {\"index\": 405, \"date\": \"2020-03-27T00:00:00\", \"state\": \"HI\", \"positive\": 106.0, \"negative\": 4357.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 7.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8abd3d7a2e51102bd77b1d155788a12a5405e9ab\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": null, \"hospitalized\": 7.0, \"total\": 4463, \"totalTestResults\": 4463, \"posNeg\": 4463, \"fips\": 15, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 2.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 11.0, \"totalTestResultsIncrease\": 11.0, \"ratio\": 0.023750840241989694, \"sinceDay0\": 0}, {\"index\": 349, \"date\": \"2020-03-28T00:00:00\", \"state\": \"HI\", \"positive\": 120.0, \"negative\": 4357.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 8.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e353e1385d69263b23c621874a346f7ce4bd4286\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 0.0, \"hospitalized\": 8.0, \"total\": 4477, \"totalTestResults\": 4477, \"posNeg\": 4477, \"fips\": 15, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 1.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 14.0, \"totalTestResultsIncrease\": 14.0, \"ratio\": 0.02680366316729953, \"sinceDay0\": 1}, {\"index\": 293, \"date\": \"2020-03-29T00:00:00\", \"state\": \"HI\", \"positive\": 151.0, \"negative\": 6849.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 12.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e16154eb5a92633be81dcdfe29bdc2d0b9e5c59a\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 0.0, \"hospitalized\": 12.0, \"total\": 7000, \"totalTestResults\": 7000, \"posNeg\": 7000, \"fips\": 15, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 4.0, \"negativeIncrease\": 2492.0, \"positiveIncrease\": 31.0, \"totalTestResultsIncrease\": 2523.0, \"ratio\": 0.02157142857142857, \"sinceDay0\": 2}, {\"index\": 237, \"date\": \"2020-03-30T00:00:00\", \"state\": \"HI\", \"positive\": 175.0, \"negative\": 7825.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 12.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5271e2e0f52052db062df51a0b598436a1516733\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 0.0, \"hospitalized\": 12.0, \"total\": 8000, \"totalTestResults\": 8000, \"posNeg\": 8000, \"fips\": 15, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 976.0, \"positiveIncrease\": 24.0, \"totalTestResultsIncrease\": 1000.0, \"ratio\": 0.021875, \"sinceDay0\": 3}, {\"index\": 181, \"date\": \"2020-03-31T00:00:00\", \"state\": \"HI\", \"positive\": 204.0, \"negative\": 8471.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 12.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 6.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 49.0, \"hash\": \"4d30701207b8dc7fd11ca7d5b0c51d7d607377c7\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 0.0, \"hospitalized\": 12.0, \"total\": 8675, \"totalTestResults\": 8675, \"posNeg\": 8675, \"fips\": 15, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 646.0, \"positiveIncrease\": 29.0, \"totalTestResultsIncrease\": 675.0, \"ratio\": 0.02351585014409222, \"sinceDay0\": 4}, {\"index\": 125, \"date\": \"2020-04-01T00:00:00\", \"state\": \"HI\", \"positive\": 208.0, \"negative\": 8721.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 13.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 6.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 58.0, \"hash\": \"46d6cbdc0fe52b7c89e99d61bc60c6ddb4a7ab6d\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 1.0, \"hospitalized\": 13.0, \"total\": 8929, \"totalTestResults\": 8929, \"posNeg\": 8929, \"fips\": 15, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 1.0, \"negativeIncrease\": 250.0, \"positiveIncrease\": 4.0, \"totalTestResultsIncrease\": 254.0, \"ratio\": 0.023294881845671408, \"sinceDay0\": 5}, {\"index\": 69, \"date\": \"2020-04-02T00:00:00\", \"state\": \"HI\", \"positive\": 258.0, \"negative\": 10206.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 15.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 6.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 69.0, \"hash\": \"ac8dc9b5da36db2163bbfdd8ca59dd03cfec5f3d\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 1.0, \"hospitalized\": 15.0, \"total\": 10464, \"totalTestResults\": 10464, \"posNeg\": 10464, \"fips\": 15, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 2.0, \"negativeIncrease\": 1485.0, \"positiveIncrease\": 50.0, \"totalTestResultsIncrease\": 1535.0, \"ratio\": 0.024655963302752295, \"sinceDay0\": 6}, {\"index\": 13, \"date\": \"2020-04-03T00:00:00\", \"state\": \"HI\", \"positive\": 285.0, \"negative\": 10206.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 15.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 6.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 72.0, \"hash\": \"1c81c643bccf41f562ee8a0b1565f639a71e5cb7\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 2.0, \"hospitalized\": 15.0, \"total\": 10491, \"totalTestResults\": 10491, \"posNeg\": 10491, \"fips\": 15, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 27.0, \"totalTestResultsIncrease\": 27.0, \"ratio\": 0.027166142407778097, \"sinceDay0\": 7}, {\"index\": 630, \"date\": \"2020-03-23T00:00:00\", \"state\": \"IA\", \"positive\": 105.0, \"negative\": 2043.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e300223bdb614731413a2a2689d16cd9d67b28be\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 2148, \"totalTestResults\": 2148, \"posNeg\": 2148, \"fips\": 19, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 828.0, \"positiveIncrease\": 15.0, \"totalTestResultsIncrease\": 843.0, \"ratio\": 0.04888268156424581, \"sinceDay0\": 0}, {\"index\": 574, \"date\": \"2020-03-24T00:00:00\", \"state\": \"IA\", \"positive\": 124.0, \"negative\": 2315.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 27.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"7cc0fd2b921b97c1bfacb447011ac898b4781078\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": null, \"hospitalized\": 27.0, \"total\": 2439, \"totalTestResults\": 2439, \"posNeg\": 2439, \"fips\": 19, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 27.0, \"negativeIncrease\": 272.0, \"positiveIncrease\": 19.0, \"totalTestResultsIncrease\": 291.0, \"ratio\": 0.05084050840508405, \"sinceDay0\": 1}, {\"index\": 518, \"date\": \"2020-03-25T00:00:00\", \"state\": \"IA\", \"positive\": 145.0, \"negative\": 2578.0, \"pending\": null, \"hospitalizedCurrently\": 23.0, \"hospitalizedCumulative\": 36.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"13d8e16121979021bb57103d7b961e31b3dfee2e\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 1.0, \"hospitalized\": 36.0, \"total\": 2723, \"totalTestResults\": 2723, \"posNeg\": 2723, \"fips\": 19, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 9.0, \"negativeIncrease\": 263.0, \"positiveIncrease\": 21.0, \"totalTestResultsIncrease\": 284.0, \"ratio\": 0.05325009181050312, \"sinceDay0\": 2}, {\"index\": 462, \"date\": \"2020-03-26T00:00:00\", \"state\": \"IA\", \"positive\": 179.0, \"negative\": 2578.0, \"pending\": null, \"hospitalizedCurrently\": 31.0, \"hospitalizedCumulative\": 46.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 15.0, \"hash\": \"411e2fbdf3f70764fb24db7b34feb147bc2ecb13\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 1.0, \"hospitalized\": 46.0, \"total\": 2757, \"totalTestResults\": 2757, \"posNeg\": 2757, \"fips\": 19, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 10.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 34.0, \"totalTestResultsIncrease\": 34.0, \"ratio\": 0.06492564381574174, \"sinceDay0\": 3}, {\"index\": 406, \"date\": \"2020-03-27T00:00:00\", \"state\": \"IA\", \"positive\": 235.0, \"negative\": 3740.0, \"pending\": null, \"hospitalizedCurrently\": 32.0, \"hospitalizedCumulative\": 50.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 18.0, \"hash\": \"a23c3b107d9c1fdabfcdbf0d850c781b78831c20\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 3.0, \"hospitalized\": 50.0, \"total\": 3975, \"totalTestResults\": 3975, \"posNeg\": 3975, \"fips\": 19, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 4.0, \"negativeIncrease\": 1162.0, \"positiveIncrease\": 56.0, \"totalTestResultsIncrease\": 1218.0, \"ratio\": 0.05911949685534591, \"sinceDay0\": 4}, {\"index\": 350, \"date\": \"2020-03-28T00:00:00\", \"state\": \"IA\", \"positive\": 298.0, \"negative\": 4375.0, \"pending\": null, \"hospitalizedCurrently\": 46.0, \"hospitalizedCumulative\": 61.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 15.0, \"hash\": \"a6e6297aaacb70cf1998fe078852e2d7c0446496\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 3.0, \"hospitalized\": 61.0, \"total\": 4673, \"totalTestResults\": 4673, \"posNeg\": 4673, \"fips\": 19, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 11.0, \"negativeIncrease\": 635.0, \"positiveIncrease\": 63.0, \"totalTestResultsIncrease\": 698.0, \"ratio\": 0.06377059704686497, \"sinceDay0\": 5}, {\"index\": 294, \"date\": \"2020-03-29T00:00:00\", \"state\": \"IA\", \"positive\": 336.0, \"negative\": 5013.0, \"pending\": null, \"hospitalizedCurrently\": 51.0, \"hospitalizedCumulative\": 68.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 17.0, \"hash\": \"0390f1a7c97c62a24050e5d9ebac698026cb1467\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 4.0, \"hospitalized\": 68.0, \"total\": 5349, \"totalTestResults\": 5349, \"posNeg\": 5349, \"fips\": 19, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 7.0, \"negativeIncrease\": 638.0, \"positiveIncrease\": 38.0, \"totalTestResultsIncrease\": 676.0, \"ratio\": 0.0628154795288839, \"sinceDay0\": 6}, {\"index\": 238, \"date\": \"2020-03-30T00:00:00\", \"state\": \"IA\", \"positive\": 424.0, \"negative\": 6162.0, \"pending\": null, \"hospitalizedCurrently\": 51.0, \"hospitalizedCumulative\": 74.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 23.0, \"hash\": \"bb8559f53afd6bd1498d5d61c82adc745f314b7d\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 6.0, \"hospitalized\": 74.0, \"total\": 6586, \"totalTestResults\": 6586, \"posNeg\": 6586, \"fips\": 19, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 6.0, \"negativeIncrease\": 1149.0, \"positiveIncrease\": 88.0, \"totalTestResultsIncrease\": 1237.0, \"ratio\": 0.06437898572730033, \"sinceDay0\": 7}, {\"index\": 182, \"date\": \"2020-03-31T00:00:00\", \"state\": \"IA\", \"positive\": 497.0, \"negative\": 6888.0, \"pending\": null, \"hospitalizedCurrently\": 61.0, \"hospitalizedCumulative\": 94.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 33.0, \"hash\": \"4ec1acfc172943306bb03e7153d7f1958591191d\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 7.0, \"hospitalized\": 94.0, \"total\": 7385, \"totalTestResults\": 7385, \"posNeg\": 7385, \"fips\": 19, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 20.0, \"negativeIncrease\": 726.0, \"positiveIncrease\": 73.0, \"totalTestResultsIncrease\": 799.0, \"ratio\": 0.06729857819905213, \"sinceDay0\": 8}, {\"index\": 126, \"date\": \"2020-04-01T00:00:00\", \"state\": \"IA\", \"positive\": 549.0, \"negative\": 7304.0, \"pending\": null, \"hospitalizedCurrently\": 63.0, \"hospitalizedCumulative\": 99.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 118.0, \"hash\": \"c2d7f358dcc4c936b1651f06d65c5bd7ef3ab8a2\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 9.0, \"hospitalized\": 99.0, \"total\": 7853, \"totalTestResults\": 7853, \"posNeg\": 7853, \"fips\": 19, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 5.0, \"negativeIncrease\": 416.0, \"positiveIncrease\": 52.0, \"totalTestResultsIncrease\": 468.0, \"ratio\": 0.06990958869221954, \"sinceDay0\": 9}, {\"index\": 70, \"date\": \"2020-04-02T00:00:00\", \"state\": \"IA\", \"positive\": 614.0, \"negative\": 8054.0, \"pending\": null, \"hospitalizedCurrently\": 74.0, \"hospitalizedCumulative\": 120.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 46.0, \"hash\": \"1f5c0a22d84a29b633b8b5a1fd1154e5b7a69bd9\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 11.0, \"hospitalized\": 120.0, \"total\": 8668, \"totalTestResults\": 8668, \"posNeg\": 8668, \"fips\": 19, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 21.0, \"negativeIncrease\": 750.0, \"positiveIncrease\": 65.0, \"totalTestResultsIncrease\": 815.0, \"ratio\": 0.07083525611444393, \"sinceDay0\": 10}, {\"index\": 14, \"date\": \"2020-04-03T00:00:00\", \"state\": \"IA\", \"positive\": 699.0, \"negative\": 8754.0, \"pending\": null, \"hospitalizedCurrently\": 80.0, \"hospitalizedCumulative\": 138.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 188.0, \"hash\": \"feb894b5b255cf3a6496c9856b448a6307f9b022\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 11.0, \"hospitalized\": 138.0, \"total\": 9453, \"totalTestResults\": 9453, \"posNeg\": 9453, \"fips\": 19, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 18.0, \"negativeIncrease\": 700.0, \"positiveIncrease\": 85.0, \"totalTestResultsIncrease\": 785.0, \"ratio\": 0.07394477943509997, \"sinceDay0\": 11}, {\"index\": 463, \"date\": \"2020-03-26T00:00:00\", \"state\": \"ID\", \"positive\": 123.0, \"negative\": 2065.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"accd7f2d4f84c66bb09e13ee9e72790b73ed7751\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 0.0, \"hospitalized\": null, \"total\": 2188, \"totalTestResults\": 2188, \"posNeg\": 2188, \"fips\": 16, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 178.0, \"positiveIncrease\": 50.0, \"totalTestResultsIncrease\": 228.0, \"ratio\": 0.05621572212065813, \"sinceDay0\": 0}, {\"index\": 407, \"date\": \"2020-03-27T00:00:00\", \"state\": \"ID\", \"positive\": 189.0, \"negative\": 2668.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e07b9d6372f5b9719ff22ba8d64b136f5aabe538\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 3.0, \"hospitalized\": null, \"total\": 2857, \"totalTestResults\": 2857, \"posNeg\": 2857, \"fips\": 16, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 603.0, \"positiveIncrease\": 66.0, \"totalTestResultsIncrease\": 669.0, \"ratio\": 0.06615330766538327, \"sinceDay0\": 1}, {\"index\": 351, \"date\": \"2020-03-28T00:00:00\", \"state\": \"ID\", \"positive\": 230.0, \"negative\": 3342.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 25.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9a384c62a22020c8ec086d3f520e57d5f47d80e1\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 4.0, \"hospitalized\": 25.0, \"total\": 3572, \"totalTestResults\": 3572, \"posNeg\": 3572, \"fips\": 16, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 25.0, \"negativeIncrease\": 674.0, \"positiveIncrease\": 41.0, \"totalTestResultsIncrease\": 715.0, \"ratio\": 0.06438969764837627, \"sinceDay0\": 2}, {\"index\": 295, \"date\": \"2020-03-29T00:00:00\", \"state\": \"ID\", \"positive\": 261.0, \"negative\": 4021.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 36.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8979502556f020e81fc4c2989d1a752bf6e3068d\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 5.0, \"hospitalized\": 36.0, \"total\": 4282, \"totalTestResults\": 4282, \"posNeg\": 4282, \"fips\": 16, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 11.0, \"negativeIncrease\": 679.0, \"positiveIncrease\": 31.0, \"totalTestResultsIncrease\": 710.0, \"ratio\": 0.0609528257823447, \"sinceDay0\": 3}, {\"index\": 239, \"date\": \"2020-03-30T00:00:00\", \"state\": \"ID\", \"positive\": 310.0, \"negative\": 4396.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 39.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"7199499861b27b9737de62f8b6fcccfd09b03ad8\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 6.0, \"hospitalized\": 39.0, \"total\": 4706, \"totalTestResults\": 4706, \"posNeg\": 4706, \"fips\": 16, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 3.0, \"negativeIncrease\": 375.0, \"positiveIncrease\": 49.0, \"totalTestResultsIncrease\": 424.0, \"ratio\": 0.06587335316617085, \"sinceDay0\": 4}, {\"index\": 183, \"date\": \"2020-03-31T00:00:00\", \"state\": \"ID\", \"positive\": 415.0, \"negative\": 5297.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 45.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 6.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"6f7851470fbaf9166e84cbeb782d870ec1bbb384\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 7.0, \"hospitalized\": 45.0, \"total\": 5712, \"totalTestResults\": 5712, \"posNeg\": 5712, \"fips\": 16, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 6.0, \"negativeIncrease\": 901.0, \"positiveIncrease\": 105.0, \"totalTestResultsIncrease\": 1006.0, \"ratio\": 0.07265406162464987, \"sinceDay0\": 5}, {\"index\": 127, \"date\": \"2020-04-01T00:00:00\", \"state\": \"ID\", \"positive\": 525.0, \"negative\": 6076.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 46.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 7.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"cc12e3fa599537f47fad0258e0009e6ef9fe0581\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 9.0, \"hospitalized\": 46.0, \"total\": 6601, \"totalTestResults\": 6601, \"posNeg\": 6601, \"fips\": 16, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 1.0, \"negativeIncrease\": 779.0, \"positiveIncrease\": 110.0, \"totalTestResultsIncrease\": 889.0, \"ratio\": 0.07953340402969247, \"sinceDay0\": 6}, {\"index\": 71, \"date\": \"2020-04-02T00:00:00\", \"state\": \"ID\", \"positive\": 669.0, \"negative\": 6613.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 49.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 7.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"378cb12d7518fb0b43fcd79e17608a1b0d3a2d1c\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 9.0, \"hospitalized\": 49.0, \"total\": 7282, \"totalTestResults\": 7282, \"posNeg\": 7282, \"fips\": 16, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 3.0, \"negativeIncrease\": 537.0, \"positiveIncrease\": 144.0, \"totalTestResultsIncrease\": 681.0, \"ratio\": 0.09187036528426257, \"sinceDay0\": 7}, {\"index\": 15, \"date\": \"2020-04-03T00:00:00\", \"state\": \"ID\", \"positive\": 891.0, \"negative\": 7054.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 56.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 7.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a3f3c21c0ca004354535ce3e1e5108d313bd5a30\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 9.0, \"hospitalized\": 56.0, \"total\": 7945, \"totalTestResults\": 7945, \"posNeg\": 7945, \"fips\": 16, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 7.0, \"negativeIncrease\": 441.0, \"positiveIncrease\": 222.0, \"totalTestResultsIncrease\": 663.0, \"ratio\": 0.11214600377595972, \"sinceDay0\": 8}, {\"index\": 968, \"date\": \"2020-03-17T00:00:00\", \"state\": \"IL\", \"positive\": 159.0, \"negative\": 1340.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ac5f0af8ee2b49bbec18da6a8780ae3e6fccbaa4\", \"dateChecked\": \"2020-03-17T20:00:00Z\", \"death\": 1.0, \"hospitalized\": null, \"total\": 1499, \"totalTestResults\": 1499, \"posNeg\": 1499, \"fips\": 17, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 408.0, \"positiveIncrease\": 66.0, \"totalTestResultsIncrease\": 474.0, \"ratio\": 0.10607071380920614, \"sinceDay0\": 0}, {\"index\": 912, \"date\": \"2020-03-18T00:00:00\", \"state\": \"IL\", \"positive\": 288.0, \"negative\": 1763.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5a530936a08eac49cd05347cded3d2e47e4e7bbf\", \"dateChecked\": \"2020-03-18T20:00:00Z\", \"death\": 1.0, \"hospitalized\": null, \"total\": 2051, \"totalTestResults\": 2051, \"posNeg\": 2051, \"fips\": 17, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 423.0, \"positiveIncrease\": 129.0, \"totalTestResultsIncrease\": 552.0, \"ratio\": 0.14041930765480254, \"sinceDay0\": 1}, {\"index\": 856, \"date\": \"2020-03-19T00:00:00\", \"state\": \"IL\", \"positive\": 422.0, \"negative\": 2725.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8d1c449e83525fc3b5de5d1f65ad5bca7b1a14a1\", \"dateChecked\": \"2020-03-19T20:00:00Z\", \"death\": 4.0, \"hospitalized\": null, \"total\": 3147, \"totalTestResults\": 3147, \"posNeg\": 3147, \"fips\": 17, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 962.0, \"positiveIncrease\": 134.0, \"totalTestResultsIncrease\": 1096.0, \"ratio\": 0.13409596441054972, \"sinceDay0\": 2}, {\"index\": 800, \"date\": \"2020-03-20T00:00:00\", \"state\": \"IL\", \"positive\": 585.0, \"negative\": 3696.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e61e30bd87a3af08bb2a5424cf6eaaca3cfc48ca\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 5.0, \"hospitalized\": null, \"total\": 4281, \"totalTestResults\": 4281, \"posNeg\": 4281, \"fips\": 17, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 971.0, \"positiveIncrease\": 163.0, \"totalTestResultsIncrease\": 1134.0, \"ratio\": 0.13665031534688157, \"sinceDay0\": 3}, {\"index\": 744, \"date\": \"2020-03-21T00:00:00\", \"state\": \"IL\", \"positive\": 753.0, \"negative\": 5488.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"dfaf7e4b5931f46806fd364b0e61a3dbe2fe4550\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 6.0, \"hospitalized\": null, \"total\": 6241, \"totalTestResults\": 6241, \"posNeg\": 6241, \"fips\": 17, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1792.0, \"positiveIncrease\": 168.0, \"totalTestResultsIncrease\": 1960.0, \"ratio\": 0.12065374138759814, \"sinceDay0\": 4}, {\"index\": 688, \"date\": \"2020-03-22T00:00:00\", \"state\": \"IL\", \"positive\": 1049.0, \"negative\": 7271.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"54f72764f10b61ac90bf334158a12c9193e78805\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 9.0, \"hospitalized\": null, \"total\": 8320, \"totalTestResults\": 8320, \"posNeg\": 8320, \"fips\": 17, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1783.0, \"positiveIncrease\": 296.0, \"totalTestResultsIncrease\": 2079.0, \"ratio\": 0.12608173076923077, \"sinceDay0\": 5}, {\"index\": 632, \"date\": \"2020-03-23T00:00:00\", \"state\": \"IL\", \"positive\": 1273.0, \"negative\": 8583.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0d6671c3e7d63029f51e664df09115c8458b7875\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 9856, \"totalTestResults\": 9856, \"posNeg\": 9856, \"fips\": 17, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1312.0, \"positiveIncrease\": 224.0, \"totalTestResultsIncrease\": 1536.0, \"ratio\": 0.1291599025974026, \"sinceDay0\": 6}, {\"index\": 576, \"date\": \"2020-03-24T00:00:00\", \"state\": \"IL\", \"positive\": 1535.0, \"negative\": 9934.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9c757789b4681fc36efffd962d3e75fb4ee6374f\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 16.0, \"hospitalized\": null, \"total\": 11469, \"totalTestResults\": 11469, \"posNeg\": 11469, \"fips\": 17, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1351.0, \"positiveIncrease\": 262.0, \"totalTestResultsIncrease\": 1613.0, \"ratio\": 0.13383904438050398, \"sinceDay0\": 7}, {\"index\": 520, \"date\": \"2020-03-25T00:00:00\", \"state\": \"IL\", \"positive\": 1865.0, \"negative\": 12344.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"de4c69056480e6111af2b8aeb434f5f8d597b170\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 19.0, \"hospitalized\": null, \"total\": 14209, \"totalTestResults\": 14209, \"posNeg\": 14209, \"fips\": 17, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2410.0, \"positiveIncrease\": 330.0, \"totalTestResultsIncrease\": 2740.0, \"ratio\": 0.13125483848265185, \"sinceDay0\": 8}, {\"index\": 464, \"date\": \"2020-03-26T00:00:00\", \"state\": \"IL\", \"positive\": 2538.0, \"negative\": 14093.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ede372266e78d0a0ceff08d95ac84932e0fcfc7d\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 26.0, \"hospitalized\": null, \"total\": 16631, \"totalTestResults\": 16631, \"posNeg\": 16631, \"fips\": 17, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1749.0, \"positiveIncrease\": 673.0, \"totalTestResultsIncrease\": 2422.0, \"ratio\": 0.15260657807708497, \"sinceDay0\": 9}, {\"index\": 408, \"date\": \"2020-03-27T00:00:00\", \"state\": \"IL\", \"positive\": 3026.0, \"negative\": 18516.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"65f47d4e133e84caba214c7a0efd4f69e51ceb5a\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 34.0, \"hospitalized\": null, \"total\": 21542, \"totalTestResults\": 21542, \"posNeg\": 21542, \"fips\": 17, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4423.0, \"positiveIncrease\": 488.0, \"totalTestResultsIncrease\": 4911.0, \"ratio\": 0.14046977996472007, \"sinceDay0\": 10}, {\"index\": 352, \"date\": \"2020-03-28T00:00:00\", \"state\": \"IL\", \"positive\": 3491.0, \"negative\": 22000.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"073372a26378c93d1b5b6ee7307fb9c030f82f2d\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 47.0, \"hospitalized\": null, \"total\": 25491, \"totalTestResults\": 25491, \"posNeg\": 25491, \"fips\": 17, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3484.0, \"positiveIncrease\": 465.0, \"totalTestResultsIncrease\": 3949.0, \"ratio\": 0.13695029618296653, \"sinceDay0\": 11}, {\"index\": 296, \"date\": \"2020-03-29T00:00:00\", \"state\": \"IL\", \"positive\": 4596.0, \"negative\": 23166.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"bd7639325f1e033630241a08bc0e4cfebae48436\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 65.0, \"hospitalized\": null, \"total\": 27762, \"totalTestResults\": 27762, \"posNeg\": 27762, \"fips\": 17, \"deathIncrease\": 18.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1166.0, \"positiveIncrease\": 1105.0, \"totalTestResultsIncrease\": 2271.0, \"ratio\": 0.16555003241841365, \"sinceDay0\": 12}, {\"index\": 240, \"date\": \"2020-03-30T00:00:00\", \"state\": \"IL\", \"positive\": 5057.0, \"negative\": 25389.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"49eda929cdc14ecc7beeaffc5a03863b651175f5\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 73.0, \"hospitalized\": null, \"total\": 30446, \"totalTestResults\": 30446, \"posNeg\": 30446, \"fips\": 17, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2223.0, \"positiveIncrease\": 461.0, \"totalTestResultsIncrease\": 2684.0, \"ratio\": 0.16609735269000853, \"sinceDay0\": 13}, {\"index\": 184, \"date\": \"2020-03-31T00:00:00\", \"state\": \"IL\", \"positive\": 5994.0, \"negative\": 29231.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"979983c53f3fef1cf573ae3a61de7f9166197b17\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 99.0, \"hospitalized\": null, \"total\": 35225, \"totalTestResults\": 35225, \"posNeg\": 35225, \"fips\": 17, \"deathIncrease\": 26.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3842.0, \"positiveIncrease\": 937.0, \"totalTestResultsIncrease\": 4779.0, \"ratio\": 0.17016323633782826, \"sinceDay0\": 14}, {\"index\": 128, \"date\": \"2020-04-01T00:00:00\", \"state\": \"IL\", \"positive\": 6980.0, \"negative\": 33404.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"026b984139faebf730612961db2541ecac874f45\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 141.0, \"hospitalized\": null, \"total\": 40384, \"totalTestResults\": 40384, \"posNeg\": 40384, \"fips\": 17, \"deathIncrease\": 42.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4173.0, \"positiveIncrease\": 986.0, \"totalTestResultsIncrease\": 5159.0, \"ratio\": 0.1728407290015848, \"sinceDay0\": 15}, {\"index\": 72, \"date\": \"2020-04-02T00:00:00\", \"state\": \"IL\", \"positive\": 7695.0, \"negative\": 35961.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1a8b1e0bab7743ed9c982d78d0d7844622a6d6a3\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 157.0, \"hospitalized\": null, \"total\": 43656, \"totalTestResults\": 43656, \"posNeg\": 43656, \"fips\": 17, \"deathIncrease\": 16.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2557.0, \"positiveIncrease\": 715.0, \"totalTestResultsIncrease\": 3272.0, \"ratio\": 0.17626443100604727, \"sinceDay0\": 16}, {\"index\": 16, \"date\": \"2020-04-03T00:00:00\", \"state\": \"IL\", \"positive\": 8904.0, \"negative\": 39144.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5393eb554824524a4a63bbec9c795869c7869414\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 210.0, \"hospitalized\": null, \"total\": 48048, \"totalTestResults\": 48048, \"posNeg\": 48048, \"fips\": 17, \"deathIncrease\": 53.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3183.0, \"positiveIncrease\": 1209.0, \"totalTestResultsIncrease\": 4392.0, \"ratio\": 0.1853146853146853, \"sinceDay0\": 17}, {\"index\": 745, \"date\": \"2020-03-21T00:00:00\", \"state\": \"IN\", \"positive\": 126.0, \"negative\": 707.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"13d8880065d2c2f4c3379631774752a809f99330\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 4.0, \"hospitalized\": 1.0, \"total\": 833, \"totalTestResults\": 833, \"posNeg\": 833, \"fips\": 18, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 1.0, \"negativeIncrease\": 232.0, \"positiveIncrease\": 47.0, \"totalTestResultsIncrease\": 279.0, \"ratio\": 0.15126050420168066, \"sinceDay0\": 0}, {\"index\": 689, \"date\": \"2020-03-22T00:00:00\", \"state\": \"IN\", \"positive\": 201.0, \"negative\": 1293.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"753c16b219930207a817b10f2ad60504a7a5762d\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 6.0, \"hospitalized\": 1.0, \"total\": 1494, \"totalTestResults\": 1494, \"posNeg\": 1494, \"fips\": 18, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 586.0, \"positiveIncrease\": 75.0, \"totalTestResultsIncrease\": 661.0, \"ratio\": 0.13453815261044177, \"sinceDay0\": 1}, {\"index\": 633, \"date\": \"2020-03-23T00:00:00\", \"state\": \"IN\", \"positive\": 259.0, \"negative\": 1701.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b98a92f68b8f40cdb0f7aac19be6caeff46c5480\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 7.0, \"hospitalized\": 1.0, \"total\": 1960, \"totalTestResults\": 1960, \"posNeg\": 1960, \"fips\": 18, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 408.0, \"positiveIncrease\": 58.0, \"totalTestResultsIncrease\": 466.0, \"ratio\": 0.13214285714285715, \"sinceDay0\": 2}, {\"index\": 577, \"date\": \"2020-03-24T00:00:00\", \"state\": \"IN\", \"positive\": 365.0, \"negative\": 2566.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d20aff6badc212807b7cd5db58fc6d2b08795e49\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 12.0, \"hospitalized\": 1.0, \"total\": 2931, \"totalTestResults\": 2931, \"posNeg\": 2931, \"fips\": 18, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 865.0, \"positiveIncrease\": 106.0, \"totalTestResultsIncrease\": 971.0, \"ratio\": 0.1245308768338451, \"sinceDay0\": 3}, {\"index\": 521, \"date\": \"2020-03-25T00:00:00\", \"state\": \"IN\", \"positive\": 477.0, \"negative\": 2879.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1a6af9e7ccb688e3321a736a824bb1fe799b7ef8\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 14.0, \"hospitalized\": 1.0, \"total\": 3356, \"totalTestResults\": 3356, \"posNeg\": 3356, \"fips\": 18, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 313.0, \"positiveIncrease\": 112.0, \"totalTestResultsIncrease\": 425.0, \"ratio\": 0.14213349225268176, \"sinceDay0\": 4}, {\"index\": 465, \"date\": \"2020-03-26T00:00:00\", \"state\": \"IN\", \"positive\": 645.0, \"negative\": 4006.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d09dec87fbea244ee83df1fb0d61288197978934\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 17.0, \"hospitalized\": null, \"total\": 4651, \"totalTestResults\": 4651, \"posNeg\": 4651, \"fips\": 18, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1127.0, \"positiveIncrease\": 168.0, \"totalTestResultsIncrease\": 1295.0, \"ratio\": 0.13867985379488282, \"sinceDay0\": 5}, {\"index\": 409, \"date\": \"2020-03-27T00:00:00\", \"state\": \"IN\", \"positive\": 981.0, \"negative\": 5955.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"3708ffb8604728a20d1032f73b6da67ee72ea866\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 24.0, \"hospitalized\": null, \"total\": 6936, \"totalTestResults\": 6936, \"posNeg\": 6936, \"fips\": 18, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1949.0, \"positiveIncrease\": 336.0, \"totalTestResultsIncrease\": 2285.0, \"ratio\": 0.14143598615916955, \"sinceDay0\": 6}, {\"index\": 353, \"date\": \"2020-03-28T00:00:00\", \"state\": \"IN\", \"positive\": 1232.0, \"negative\": 7175.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"bb33e7862d580175dc4ae2bfe3b91be2dd68c719\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 31.0, \"hospitalized\": null, \"total\": 8407, \"totalTestResults\": 8407, \"posNeg\": 8407, \"fips\": 18, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1220.0, \"positiveIncrease\": 251.0, \"totalTestResultsIncrease\": 1471.0, \"ratio\": 0.14654454621149043, \"sinceDay0\": 7}, {\"index\": 297, \"date\": \"2020-03-29T00:00:00\", \"state\": \"IN\", \"positive\": 1514.0, \"negative\": 8316.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"7218f7ee5dcf63b69f6d3a8be6ab8404ecd588c4\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 32.0, \"hospitalized\": null, \"total\": 9830, \"totalTestResults\": 9830, \"posNeg\": 9830, \"fips\": 18, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1141.0, \"positiveIncrease\": 282.0, \"totalTestResultsIncrease\": 1423.0, \"ratio\": 0.1540183112919634, \"sinceDay0\": 8}, {\"index\": 241, \"date\": \"2020-03-30T00:00:00\", \"state\": \"IN\", \"positive\": 1786.0, \"negative\": 9872.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1eb08f6c84c1646c1611f46dfcb77c86a50479fc\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 35.0, \"hospitalized\": null, \"total\": 11658, \"totalTestResults\": 11658, \"posNeg\": 11658, \"fips\": 18, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1556.0, \"positiveIncrease\": 272.0, \"totalTestResultsIncrease\": 1828.0, \"ratio\": 0.1531995196431635, \"sinceDay0\": 9}, {\"index\": 185, \"date\": \"2020-03-31T00:00:00\", \"state\": \"IN\", \"positive\": 2159.0, \"negative\": 11214.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"76b4fbd00067fbb532bb2d0c63800ffa814d75c9\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 49.0, \"hospitalized\": null, \"total\": 13373, \"totalTestResults\": 13373, \"posNeg\": 13373, \"fips\": 18, \"deathIncrease\": 14.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1342.0, \"positiveIncrease\": 373.0, \"totalTestResultsIncrease\": 1715.0, \"ratio\": 0.16144470201151573, \"sinceDay0\": 10}, {\"index\": 129, \"date\": \"2020-04-01T00:00:00\", \"state\": \"IN\", \"positive\": 2565.0, \"negative\": 11810.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"fcc053001d98ddb6739b2610781931fbb476aac3\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 65.0, \"hospitalized\": null, \"total\": 14375, \"totalTestResults\": 14375, \"posNeg\": 14375, \"fips\": 18, \"deathIncrease\": 16.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 596.0, \"positiveIncrease\": 406.0, \"totalTestResultsIncrease\": 1002.0, \"ratio\": 0.17843478260869566, \"sinceDay0\": 11}, {\"index\": 73, \"date\": \"2020-04-02T00:00:00\", \"state\": \"IN\", \"positive\": 3039.0, \"negative\": 13246.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"7efa7f48655167cc1d748ae1740c9b97dd06a209\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 78.0, \"hospitalized\": null, \"total\": 16285, \"totalTestResults\": 16285, \"posNeg\": 16285, \"fips\": 18, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1436.0, \"positiveIncrease\": 474.0, \"totalTestResultsIncrease\": 1910.0, \"ratio\": 0.18661344795824378, \"sinceDay0\": 12}, {\"index\": 17, \"date\": \"2020-04-03T00:00:00\", \"state\": \"IN\", \"positive\": 3437.0, \"negative\": 14398.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b6a582ed478dfba401e4a56efe6e9e4a1b532d04\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 102.0, \"hospitalized\": null, \"total\": 17835, \"totalTestResults\": 17835, \"posNeg\": 17835, \"fips\": 18, \"deathIncrease\": 24.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1152.0, \"positiveIncrease\": 398.0, \"totalTestResultsIncrease\": 1550.0, \"ratio\": 0.19271096159237455, \"sinceDay0\": 13}, {\"index\": 522, \"date\": \"2020-03-25T00:00:00\", \"state\": \"KS\", \"positive\": 126.0, \"negative\": 2360.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"deae962902c0a2fb252f981aaba83eda616d6029\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 3.0, \"hospitalized\": null, \"total\": 2486, \"totalTestResults\": 2486, \"posNeg\": 2486, \"fips\": 20, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 274.0, \"positiveIncrease\": 28.0, \"totalTestResultsIncrease\": 302.0, \"ratio\": 0.050683829444891394, \"sinceDay0\": 0}, {\"index\": 466, \"date\": \"2020-03-26T00:00:00\", \"state\": \"KS\", \"positive\": 168.0, \"negative\": 2869.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"aa2e17ec747401ff3e73105d0b833fa0b4f03d67\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 3.0, \"hospitalized\": null, \"total\": 3037, \"totalTestResults\": 3037, \"posNeg\": 3037, \"fips\": 20, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 509.0, \"positiveIncrease\": 42.0, \"totalTestResultsIncrease\": 551.0, \"ratio\": 0.05531774777741192, \"sinceDay0\": 1}, {\"index\": 410, \"date\": \"2020-03-27T00:00:00\", \"state\": \"KS\", \"positive\": 202.0, \"negative\": 3229.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 27.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"00010abd938af813b268bdf5dfe70271ba5d42aa\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 4.0, \"hospitalized\": 27.0, \"total\": 3431, \"totalTestResults\": 3431, \"posNeg\": 3431, \"fips\": 20, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 27.0, \"negativeIncrease\": 360.0, \"positiveIncrease\": 34.0, \"totalTestResultsIncrease\": 394.0, \"ratio\": 0.05887496356747304, \"sinceDay0\": 2}, {\"index\": 354, \"date\": \"2020-03-28T00:00:00\", \"state\": \"KS\", \"positive\": 261.0, \"negative\": 3671.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 27.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"aa84b44c0851b4d887ab1410a969451c25976b52\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 5.0, \"hospitalized\": 27.0, \"total\": 3932, \"totalTestResults\": 3932, \"posNeg\": 3932, \"fips\": 20, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 442.0, \"positiveIncrease\": 59.0, \"totalTestResultsIncrease\": 501.0, \"ratio\": 0.06637843336724314, \"sinceDay0\": 3}, {\"index\": 298, \"date\": \"2020-03-29T00:00:00\", \"state\": \"KS\", \"positive\": 319.0, \"negative\": 4194.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 55.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5bcb9dae92d0bbe8c3b18551ded266dd24876d38\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 6.0, \"hospitalized\": 55.0, \"total\": 4513, \"totalTestResults\": 4513, \"posNeg\": 4513, \"fips\": 20, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 28.0, \"negativeIncrease\": 523.0, \"positiveIncrease\": 58.0, \"totalTestResultsIncrease\": 581.0, \"ratio\": 0.07068468867715488, \"sinceDay0\": 4}, {\"index\": 242, \"date\": \"2020-03-30T00:00:00\", \"state\": \"KS\", \"positive\": 368.0, \"negative\": 4554.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 66.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"740551d80bb24aabc7ddbc519fc876c31ec53920\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 8.0, \"hospitalized\": 66.0, \"total\": 4922, \"totalTestResults\": 4922, \"posNeg\": 4922, \"fips\": 20, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 11.0, \"negativeIncrease\": 360.0, \"positiveIncrease\": 49.0, \"totalTestResultsIncrease\": 409.0, \"ratio\": 0.07476635514018691, \"sinceDay0\": 5}, {\"index\": 186, \"date\": \"2020-03-31T00:00:00\", \"state\": \"KS\", \"positive\": 428.0, \"negative\": 4996.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 79.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"12716e5b136e60836429eab2bb08477c7ca6d529\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 9.0, \"hospitalized\": 79.0, \"total\": 5424, \"totalTestResults\": 5424, \"posNeg\": 5424, \"fips\": 20, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 13.0, \"negativeIncrease\": 442.0, \"positiveIncrease\": 60.0, \"totalTestResultsIncrease\": 502.0, \"ratio\": 0.07890855457227139, \"sinceDay0\": 6}, {\"index\": 130, \"date\": \"2020-04-01T00:00:00\", \"state\": \"KS\", \"positive\": 482.0, \"negative\": 5411.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 114.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d8abbc3a45478014e68bb1033ec072f19a68ec6a\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 10.0, \"hospitalized\": 114.0, \"total\": 5893, \"totalTestResults\": 5893, \"posNeg\": 5893, \"fips\": 20, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 35.0, \"negativeIncrease\": 415.0, \"positiveIncrease\": 54.0, \"totalTestResultsIncrease\": 469.0, \"ratio\": 0.08179195655862888, \"sinceDay0\": 7}, {\"index\": 74, \"date\": \"2020-04-02T00:00:00\", \"state\": \"KS\", \"positive\": 552.0, \"negative\": 6059.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 138.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e1d064496cc599d8997422f5393e363895fed048\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 13.0, \"hospitalized\": 138.0, \"total\": 6611, \"totalTestResults\": 6611, \"posNeg\": 6611, \"fips\": 20, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 24.0, \"negativeIncrease\": 648.0, \"positiveIncrease\": 70.0, \"totalTestResultsIncrease\": 718.0, \"ratio\": 0.0834972016336409, \"sinceDay0\": 8}, {\"index\": 18, \"date\": \"2020-04-03T00:00:00\", \"state\": \"KS\", \"positive\": 620.0, \"negative\": 6454.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 151.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"423f188ae5bf45319e336f75b49a3708bdbc8494\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 17.0, \"hospitalized\": 151.0, \"total\": 7074, \"totalTestResults\": 7074, \"posNeg\": 7074, \"fips\": 20, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 13.0, \"negativeIncrease\": 395.0, \"positiveIncrease\": 68.0, \"totalTestResultsIncrease\": 463.0, \"ratio\": 0.08764489680520215, \"sinceDay0\": 9}, {\"index\": 635, \"date\": \"2020-03-23T00:00:00\", \"state\": \"KY\", \"positive\": 104.0, \"negative\": 1762.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1da5d1dc8e4c52e1ff55eb3170d02ea0200a4cb0\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 3.0, \"hospitalized\": null, \"total\": 1866, \"totalTestResults\": 1866, \"posNeg\": 1866, \"fips\": 21, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 290.0, \"positiveIncrease\": 5.0, \"totalTestResultsIncrease\": 295.0, \"ratio\": 0.055734190782422297, \"sinceDay0\": 0}, {\"index\": 579, \"date\": \"2020-03-24T00:00:00\", \"state\": \"KY\", \"positive\": 124.0, \"negative\": 1762.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"7f736e70b653bb755683c7b68cb76e5e19b363de\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 4.0, \"hospitalized\": null, \"total\": 1886, \"totalTestResults\": 1886, \"posNeg\": 1886, \"fips\": 21, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 20.0, \"totalTestResultsIncrease\": 20.0, \"ratio\": 0.06574761399787911, \"sinceDay0\": 1}, {\"index\": 523, \"date\": \"2020-03-25T00:00:00\", \"state\": \"KY\", \"positive\": 157.0, \"negative\": 2865.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8fc7de737c41520c298dcbceba279e065ddceeb7\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 4.0, \"hospitalized\": null, \"total\": 3022, \"totalTestResults\": 3022, \"posNeg\": 3022, \"fips\": 21, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1103.0, \"positiveIncrease\": 33.0, \"totalTestResultsIncrease\": 1136.0, \"ratio\": 0.051952349437458634, \"sinceDay0\": 2}, {\"index\": 467, \"date\": \"2020-03-26T00:00:00\", \"state\": \"KY\", \"positive\": 198.0, \"negative\": 3102.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"3a82ab3456c2469d52b7790c96cb4cfa30f25cd5\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 4.0, \"hospitalized\": null, \"total\": 3300, \"totalTestResults\": 3300, \"posNeg\": 3300, \"fips\": 21, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 237.0, \"positiveIncrease\": 41.0, \"totalTestResultsIncrease\": 278.0, \"ratio\": 0.06, \"sinceDay0\": 3}, {\"index\": 411, \"date\": \"2020-03-27T00:00:00\", \"state\": \"KY\", \"positive\": 248.0, \"negative\": 3768.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c8caceb5970b63067f283dfe604e520e4034f198\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 6.0, \"hospitalized\": null, \"total\": 4016, \"totalTestResults\": 4016, \"posNeg\": 4016, \"fips\": 21, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 666.0, \"positiveIncrease\": 50.0, \"totalTestResultsIncrease\": 716.0, \"ratio\": 0.061752988047808766, \"sinceDay0\": 4}, {\"index\": 355, \"date\": \"2020-03-28T00:00:00\", \"state\": \"KY\", \"positive\": 302.0, \"negative\": 4821.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ea4c264896e76b10ebe1600f6c5705d613dc6f9e\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 8.0, \"hospitalized\": null, \"total\": 5123, \"totalTestResults\": 5123, \"posNeg\": 5123, \"fips\": 21, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1053.0, \"positiveIncrease\": 54.0, \"totalTestResultsIncrease\": 1107.0, \"ratio\": 0.058949834081592815, \"sinceDay0\": 5}, {\"index\": 299, \"date\": \"2020-03-29T00:00:00\", \"state\": \"KY\", \"positive\": 394.0, \"negative\": 5147.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"466fb0bcb56c8e91014554ef6a8818029299ecfd\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 9.0, \"hospitalized\": null, \"total\": 5541, \"totalTestResults\": 5541, \"posNeg\": 5541, \"fips\": 21, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 326.0, \"positiveIncrease\": 92.0, \"totalTestResultsIncrease\": 418.0, \"ratio\": 0.07110629850207544, \"sinceDay0\": 6}, {\"index\": 243, \"date\": \"2020-03-30T00:00:00\", \"state\": \"KY\", \"positive\": 439.0, \"negative\": 5579.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e683db18146f3c70866e5138f7c84f76f04bc09a\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 9.0, \"hospitalized\": null, \"total\": 6018, \"totalTestResults\": 6018, \"posNeg\": 6018, \"fips\": 21, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 432.0, \"positiveIncrease\": 45.0, \"totalTestResultsIncrease\": 477.0, \"ratio\": 0.07294782319707543, \"sinceDay0\": 7}, {\"index\": 187, \"date\": \"2020-03-31T00:00:00\", \"state\": \"KY\", \"positive\": 480.0, \"negative\": 6330.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"37e85814eaa2e8744faaf12a5995d3a1d5958614\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 11.0, \"hospitalized\": null, \"total\": 6810, \"totalTestResults\": 6810, \"posNeg\": 6810, \"fips\": 21, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 751.0, \"positiveIncrease\": 41.0, \"totalTestResultsIncrease\": 792.0, \"ratio\": 0.07048458149779736, \"sinceDay0\": 8}, {\"index\": 131, \"date\": \"2020-04-01T00:00:00\", \"state\": \"KY\", \"positive\": 591.0, \"negative\": 6965.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d401a0f0702a3e7442668504f89d9bbf0fd9db08\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 17.0, \"hospitalized\": null, \"total\": 7556, \"totalTestResults\": 7556, \"posNeg\": 7556, \"fips\": 21, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 635.0, \"positiveIncrease\": 111.0, \"totalTestResultsIncrease\": 746.0, \"ratio\": 0.07821598729486501, \"sinceDay0\": 9}, {\"index\": 75, \"date\": \"2020-04-02T00:00:00\", \"state\": \"KY\", \"positive\": 680.0, \"negative\": 7220.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9ab2e64fd49a2aba449f469559e03c171789906f\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 20.0, \"hospitalized\": null, \"total\": 7900, \"totalTestResults\": 7900, \"posNeg\": 7900, \"fips\": 21, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 255.0, \"positiveIncrease\": 89.0, \"totalTestResultsIncrease\": 344.0, \"ratio\": 0.08607594936708861, \"sinceDay0\": 10}, {\"index\": 19, \"date\": \"2020-04-03T00:00:00\", \"state\": \"KY\", \"positive\": 770.0, \"negative\": 12034.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b7ec08543b9b2324d60694f6721979dc00c54543\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 31.0, \"hospitalized\": null, \"total\": 12804, \"totalTestResults\": 12804, \"posNeg\": 12804, \"fips\": 21, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4814.0, \"positiveIncrease\": 90.0, \"totalTestResultsIncrease\": 4904.0, \"ratio\": 0.06013745704467354, \"sinceDay0\": 11}, {\"index\": 1028, \"date\": \"2020-03-16T00:00:00\", \"state\": \"LA\", \"positive\": 114.0, \"negative\": 188.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"3f35dae7522ba88d8e79d20093816c3614734dcb\", \"dateChecked\": \"2020-03-16T20:00:00Z\", \"death\": 2.0, \"hospitalized\": null, \"total\": 302, \"totalTestResults\": 302, \"posNeg\": 302, \"fips\": 22, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 32.0, \"positiveIncrease\": 23.0, \"totalTestResultsIncrease\": 55.0, \"ratio\": 0.37748344370860926, \"sinceDay0\": 0}, {\"index\": 972, \"date\": \"2020-03-17T00:00:00\", \"state\": \"LA\", \"positive\": 171.0, \"negative\": 286.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"50610ebbdeaa7907b12726f42106e71733e456f5\", \"dateChecked\": \"2020-03-17T20:00:00Z\", \"death\": 4.0, \"hospitalized\": null, \"total\": 457, \"totalTestResults\": 457, \"posNeg\": 457, \"fips\": 22, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 98.0, \"positiveIncrease\": 57.0, \"totalTestResultsIncrease\": 155.0, \"ratio\": 0.3741794310722101, \"sinceDay0\": 1}, {\"index\": 916, \"date\": \"2020-03-18T00:00:00\", \"state\": \"LA\", \"positive\": 240.0, \"negative\": 335.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"dad1c0a1eff89b6afadb6c2403054966c897f0e2\", \"dateChecked\": \"2020-03-18T20:00:00Z\", \"death\": 6.0, \"hospitalized\": null, \"total\": 575, \"totalTestResults\": 575, \"posNeg\": 575, \"fips\": 22, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 49.0, \"positiveIncrease\": 69.0, \"totalTestResultsIncrease\": 118.0, \"ratio\": 0.41739130434782606, \"sinceDay0\": 2}, {\"index\": 860, \"date\": \"2020-03-19T00:00:00\", \"state\": \"LA\", \"positive\": 347.0, \"negative\": 458.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5027dafbbd45c690b0ccd4fab11851328b078d81\", \"dateChecked\": \"2020-03-19T20:00:00Z\", \"death\": 8.0, \"hospitalized\": null, \"total\": 805, \"totalTestResults\": 805, \"posNeg\": 805, \"fips\": 22, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 123.0, \"positiveIncrease\": 107.0, \"totalTestResultsIncrease\": 230.0, \"ratio\": 0.43105590062111804, \"sinceDay0\": 3}, {\"index\": 804, \"date\": \"2020-03-20T00:00:00\", \"state\": \"LA\", \"positive\": 479.0, \"negative\": 568.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e67536ea67b77d8ca65be412882b0f4d055238f5\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 1047, \"totalTestResults\": 1047, \"posNeg\": 1047, \"fips\": 22, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 110.0, \"positiveIncrease\": 132.0, \"totalTestResultsIncrease\": 242.0, \"ratio\": 0.4574976122254059, \"sinceDay0\": 4}, {\"index\": 748, \"date\": \"2020-03-21T00:00:00\", \"state\": \"LA\", \"positive\": 585.0, \"negative\": 2180.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f7c6c177e7b1f643227b1bc755f63bbb75468835\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 16.0, \"hospitalized\": null, \"total\": 2765, \"totalTestResults\": 2765, \"posNeg\": 2765, \"fips\": 22, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1612.0, \"positiveIncrease\": 106.0, \"totalTestResultsIncrease\": 1718.0, \"ratio\": 0.2115732368896926, \"sinceDay0\": 5}, {\"index\": 692, \"date\": \"2020-03-22T00:00:00\", \"state\": \"LA\", \"positive\": 837.0, \"negative\": 2661.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c89220ae4e2b0931fb785ec35f44887bf5a5355b\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 20.0, \"hospitalized\": null, \"total\": 3498, \"totalTestResults\": 3498, \"posNeg\": 3498, \"fips\": 22, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 481.0, \"positiveIncrease\": 252.0, \"totalTestResultsIncrease\": 733.0, \"ratio\": 0.23927958833619212, \"sinceDay0\": 6}, {\"index\": 636, \"date\": \"2020-03-23T00:00:00\", \"state\": \"LA\", \"positive\": 1172.0, \"negative\": 4776.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"fd499be556bb029c4bc349ac19373d9ba7b95fcd\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 34.0, \"hospitalized\": null, \"total\": 5948, \"totalTestResults\": 5948, \"posNeg\": 5948, \"fips\": 22, \"deathIncrease\": 14.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2115.0, \"positiveIncrease\": 335.0, \"totalTestResultsIncrease\": 2450.0, \"ratio\": 0.19704102219233355, \"sinceDay0\": 7}, {\"index\": 580, \"date\": \"2020-03-24T00:00:00\", \"state\": \"LA\", \"positive\": 1388.0, \"negative\": 7215.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 271.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c443054e2ff12e070077b14d3071b89ea08d7346\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 46.0, \"hospitalized\": 271.0, \"total\": 8603, \"totalTestResults\": 8603, \"posNeg\": 8603, \"fips\": 22, \"deathIncrease\": 12.0, \"hospitalizedIncrease\": 271.0, \"negativeIncrease\": 2439.0, \"positiveIncrease\": 216.0, \"totalTestResultsIncrease\": 2655.0, \"ratio\": 0.161339067767058, \"sinceDay0\": 8}, {\"index\": 524, \"date\": \"2020-03-25T00:00:00\", \"state\": \"LA\", \"positive\": 1795.0, \"negative\": 9656.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 491.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 163.0, \"recovered\": null, \"hash\": \"b9c6d4f81c9f0b6777df7bd4190349d006d90222\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 65.0, \"hospitalized\": 491.0, \"total\": 11451, \"totalTestResults\": 11451, \"posNeg\": 11451, \"fips\": 22, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 220.0, \"negativeIncrease\": 2441.0, \"positiveIncrease\": 407.0, \"totalTestResultsIncrease\": 2848.0, \"ratio\": 0.15675486857043053, \"sinceDay0\": 9}, {\"index\": 468, \"date\": \"2020-03-26T00:00:00\", \"state\": \"LA\", \"positive\": 2305.0, \"negative\": 15724.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 676.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 239.0, \"recovered\": null, \"hash\": \"a3dd3f994877e467e4b0eede332659cfeca99714\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 83.0, \"hospitalized\": 676.0, \"total\": 18029, \"totalTestResults\": 18029, \"posNeg\": 18029, \"fips\": 22, \"deathIncrease\": 18.0, \"hospitalizedIncrease\": 185.0, \"negativeIncrease\": 6068.0, \"positiveIncrease\": 510.0, \"totalTestResultsIncrease\": 6578.0, \"ratio\": 0.12784957568362082, \"sinceDay0\": 10}, {\"index\": 412, \"date\": \"2020-03-27T00:00:00\", \"state\": \"LA\", \"positive\": 2746.0, \"negative\": 18613.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 773.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 270.0, \"recovered\": null, \"hash\": \"8403ec4e8479f56c60ee105634c0b15796c301c3\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 119.0, \"hospitalized\": 773.0, \"total\": 21359, \"totalTestResults\": 21359, \"posNeg\": 21359, \"fips\": 22, \"deathIncrease\": 36.0, \"hospitalizedIncrease\": 97.0, \"negativeIncrease\": 2889.0, \"positiveIncrease\": 441.0, \"totalTestResultsIncrease\": 3330.0, \"ratio\": 0.12856407135165504, \"sinceDay0\": 11}, {\"index\": 356, \"date\": \"2020-03-28T00:00:00\", \"state\": \"LA\", \"positive\": 3315.0, \"negative\": 21846.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 927.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 336.0, \"recovered\": null, \"hash\": \"4a0d79bda0eb000ea91e7c858e929eb0342be5af\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 137.0, \"hospitalized\": 927.0, \"total\": 25161, \"totalTestResults\": 25161, \"posNeg\": 25161, \"fips\": 22, \"deathIncrease\": 18.0, \"hospitalizedIncrease\": 154.0, \"negativeIncrease\": 3233.0, \"positiveIncrease\": 569.0, \"totalTestResultsIncrease\": 3802.0, \"ratio\": 0.13175152020984857, \"sinceDay0\": 12}, {\"index\": 300, \"date\": \"2020-03-29T00:00:00\", \"state\": \"LA\", \"positive\": 3540.0, \"negative\": 24331.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1127.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 380.0, \"recovered\": null, \"hash\": \"c7306243e89fb0a9690d4531ca9ba00b354540bd\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 151.0, \"hospitalized\": 1127.0, \"total\": 27871, \"totalTestResults\": 27871, \"posNeg\": 27871, \"fips\": 22, \"deathIncrease\": 14.0, \"hospitalizedIncrease\": 200.0, \"negativeIncrease\": 2485.0, \"positiveIncrease\": 225.0, \"totalTestResultsIncrease\": 2710.0, \"ratio\": 0.12701374188224318, \"sinceDay0\": 13}, {\"index\": 244, \"date\": \"2020-03-30T00:00:00\", \"state\": \"LA\", \"positive\": 4025.0, \"negative\": 30008.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1185.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 385.0, \"recovered\": null, \"hash\": \"83cdef3008fd6d32b51fc602cee4e1df98d1e7e0\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 185.0, \"hospitalized\": 1185.0, \"total\": 34033, \"totalTestResults\": 34033, \"posNeg\": 34033, \"fips\": 22, \"deathIncrease\": 34.0, \"hospitalizedIncrease\": 58.0, \"negativeIncrease\": 5677.0, \"positiveIncrease\": 485.0, \"totalTestResultsIncrease\": 6162.0, \"ratio\": 0.11826756383510123, \"sinceDay0\": 14}, {\"index\": 188, \"date\": \"2020-03-31T00:00:00\", \"state\": \"LA\", \"positive\": 5237.0, \"negative\": 33730.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1355.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 438.0, \"recovered\": null, \"hash\": \"9afe3b0050bd01d1928766a6d12d65c23f10d0b9\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 239.0, \"hospitalized\": 1355.0, \"total\": 38967, \"totalTestResults\": 38967, \"posNeg\": 38967, \"fips\": 22, \"deathIncrease\": 54.0, \"hospitalizedIncrease\": 170.0, \"negativeIncrease\": 3722.0, \"positiveIncrease\": 1212.0, \"totalTestResultsIncrease\": 4934.0, \"ratio\": 0.13439577078040393, \"sinceDay0\": 15}, {\"index\": 132, \"date\": \"2020-04-01T00:00:00\", \"state\": \"LA\", \"positive\": 6424.0, \"negative\": 39352.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1498.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 490.0, \"recovered\": null, \"hash\": \"3e4974bc6afa3064f7b37913b0497195237d9651\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 273.0, \"hospitalized\": 1498.0, \"total\": 45776, \"totalTestResults\": 45776, \"posNeg\": 45776, \"fips\": 22, \"deathIncrease\": 34.0, \"hospitalizedIncrease\": 143.0, \"negativeIncrease\": 5622.0, \"positiveIncrease\": 1187.0, \"totalTestResultsIncrease\": 6809.0, \"ratio\": 0.14033554701153442, \"sinceDay0\": 16}, {\"index\": 76, \"date\": \"2020-04-02T00:00:00\", \"state\": \"LA\", \"positive\": 9150.0, \"negative\": 41936.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1639.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 507.0, \"recovered\": null, \"hash\": \"00bc323a6acfed050d7eb6527cbc2edd1bea6eb7\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 310.0, \"hospitalized\": 1639.0, \"total\": 51086, \"totalTestResults\": 51086, \"posNeg\": 51086, \"fips\": 22, \"deathIncrease\": 37.0, \"hospitalizedIncrease\": 141.0, \"negativeIncrease\": 2584.0, \"positiveIncrease\": 2726.0, \"totalTestResultsIncrease\": 5310.0, \"ratio\": 0.17910973652272638, \"sinceDay0\": 17}, {\"index\": 20, \"date\": \"2020-04-03T00:00:00\", \"state\": \"LA\", \"positive\": 10297.0, \"negative\": 43348.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1707.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 535.0, \"recovered\": null, \"hash\": \"0694f8cf6531a993f01c11a566a18087757b24d2\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 370.0, \"hospitalized\": 1707.0, \"total\": 53645, \"totalTestResults\": 53645, \"posNeg\": 53645, \"fips\": 22, \"deathIncrease\": 60.0, \"hospitalizedIncrease\": 68.0, \"negativeIncrease\": 1412.0, \"positiveIncrease\": 1147.0, \"totalTestResultsIncrease\": 2559.0, \"ratio\": 0.19194705937179607, \"sinceDay0\": 18}, {\"index\": 1185, \"date\": \"2020-03-13T00:00:00\", \"state\": \"MA\", \"positive\": 123.0, \"negative\": 92.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"020263557685d33ade8e1849eeb35c2a8a12843a\", \"dateChecked\": \"2020-03-13T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 215, \"totalTestResults\": 215, \"posNeg\": 215, \"fips\": 25, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 92.0, \"positiveIncrease\": 28.0, \"totalTestResultsIncrease\": 120.0, \"ratio\": 0.5720930232558139, \"sinceDay0\": 0}, {\"index\": 1134, \"date\": \"2020-03-14T00:00:00\", \"state\": \"MA\", \"positive\": 138.0, \"negative\": 352.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"bdba6fc0046699f5419368f4eb93e84eb0f025c5\", \"dateChecked\": \"2020-03-14T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 490, \"totalTestResults\": 490, \"posNeg\": 490, \"fips\": 25, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 260.0, \"positiveIncrease\": 15.0, \"totalTestResultsIncrease\": 275.0, \"ratio\": 0.2816326530612245, \"sinceDay0\": 1}, {\"index\": 1083, \"date\": \"2020-03-15T00:00:00\", \"state\": \"MA\", \"positive\": 138.0, \"negative\": 352.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c8c2486f9a55549e537cfa05abc2e5e2fe749397\", \"dateChecked\": \"2020-03-15T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 490, \"totalTestResults\": 490, \"posNeg\": 490, \"fips\": 25, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.2816326530612245, \"sinceDay0\": 2}, {\"index\": 1029, \"date\": \"2020-03-16T00:00:00\", \"state\": \"MA\", \"positive\": 164.0, \"negative\": 352.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8b6244ab6b03eb42a217d3342377e82b0051ad3c\", \"dateChecked\": \"2020-03-16T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 516, \"totalTestResults\": 516, \"posNeg\": 516, \"fips\": 25, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 26.0, \"totalTestResultsIncrease\": 26.0, \"ratio\": 0.3178294573643411, \"sinceDay0\": 3}, {\"index\": 973, \"date\": \"2020-03-17T00:00:00\", \"state\": \"MA\", \"positive\": 218.0, \"negative\": 1541.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f2b9d7f0d874da810bfb4b57fa42cb6ad8d320f9\", \"dateChecked\": \"2020-03-17T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 1759, \"totalTestResults\": 1759, \"posNeg\": 1759, \"fips\": 25, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1189.0, \"positiveIncrease\": 54.0, \"totalTestResultsIncrease\": 1243.0, \"ratio\": 0.12393405343945424, \"sinceDay0\": 4}, {\"index\": 917, \"date\": \"2020-03-18T00:00:00\", \"state\": \"MA\", \"positive\": 256.0, \"negative\": 2015.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f33af005453944a9da0ca3a04bb26228e086da9e\", \"dateChecked\": \"2020-03-18T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 2271, \"totalTestResults\": 2271, \"posNeg\": 2271, \"fips\": 25, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 474.0, \"positiveIncrease\": 38.0, \"totalTestResultsIncrease\": 512.0, \"ratio\": 0.11272567151034786, \"sinceDay0\": 5}, {\"index\": 861, \"date\": \"2020-03-19T00:00:00\", \"state\": \"MA\", \"positive\": 328.0, \"negative\": 2804.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"78f476ff93f6ab6ceea2e20dccb8478637895c94\", \"dateChecked\": \"2020-03-19T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 3132, \"totalTestResults\": 3132, \"posNeg\": 3132, \"fips\": 25, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 789.0, \"positiveIncrease\": 72.0, \"totalTestResultsIncrease\": 861.0, \"ratio\": 0.10472541507024266, \"sinceDay0\": 6}, {\"index\": 805, \"date\": \"2020-03-20T00:00:00\", \"state\": \"MA\", \"positive\": 413.0, \"negative\": 3678.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e4fa70dd5807dff8381750edb438c3d8fb03335d\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 1.0, \"hospitalized\": null, \"total\": 4091, \"totalTestResults\": 4091, \"posNeg\": 4091, \"fips\": 25, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 874.0, \"positiveIncrease\": 85.0, \"totalTestResultsIncrease\": 959.0, \"ratio\": 0.10095331214861893, \"sinceDay0\": 7}, {\"index\": 749, \"date\": \"2020-03-21T00:00:00\", \"state\": \"MA\", \"positive\": 525.0, \"negative\": 4752.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 61.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9434ecc82e2e7e8a85d8a027a082389be42e290a\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 1.0, \"hospitalized\": 61.0, \"total\": 5277, \"totalTestResults\": 5277, \"posNeg\": 5277, \"fips\": 25, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 61.0, \"negativeIncrease\": 1074.0, \"positiveIncrease\": 112.0, \"totalTestResultsIncrease\": 1186.0, \"ratio\": 0.09948834565093803, \"sinceDay0\": 8}, {\"index\": 693, \"date\": \"2020-03-22T00:00:00\", \"state\": \"MA\", \"positive\": 646.0, \"negative\": 5459.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 71.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"80dbca40ed272bb21a8cb8dc36290f39876b1ad2\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 5.0, \"hospitalized\": 71.0, \"total\": 6105, \"totalTestResults\": 6105, \"posNeg\": 6105, \"fips\": 25, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 10.0, \"negativeIncrease\": 707.0, \"positiveIncrease\": 121.0, \"totalTestResultsIncrease\": 828.0, \"ratio\": 0.10581490581490581, \"sinceDay0\": 9}, {\"index\": 637, \"date\": \"2020-03-23T00:00:00\", \"state\": \"MA\", \"positive\": 777.0, \"negative\": 8145.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 79.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"40b8c6ab57a8cd588c84704eea95f5d596cb66f6\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 9.0, \"hospitalized\": 79.0, \"total\": 8922, \"totalTestResults\": 8922, \"posNeg\": 8922, \"fips\": 25, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 8.0, \"negativeIncrease\": 2686.0, \"positiveIncrease\": 131.0, \"totalTestResultsIncrease\": 2817.0, \"ratio\": 0.08708809683927371, \"sinceDay0\": 10}, {\"index\": 581, \"date\": \"2020-03-24T00:00:00\", \"state\": \"MA\", \"positive\": 1159.0, \"negative\": 12590.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 94.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"7dba190b6c130ef5b8427912adbcf550a3e63368\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 11.0, \"hospitalized\": 94.0, \"total\": 13749, \"totalTestResults\": 13749, \"posNeg\": 13749, \"fips\": 25, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 15.0, \"negativeIncrease\": 4445.0, \"positiveIncrease\": 382.0, \"totalTestResultsIncrease\": 4827.0, \"ratio\": 0.08429703978471162, \"sinceDay0\": 11}, {\"index\": 525, \"date\": \"2020-03-25T00:00:00\", \"state\": \"MA\", \"positive\": 1838.0, \"negative\": 17956.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 103.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"95bb4fdcf8938f1681915e4ab6cd29914ed60b24\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 15.0, \"hospitalized\": 103.0, \"total\": 19794, \"totalTestResults\": 19794, \"posNeg\": 19794, \"fips\": 25, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 9.0, \"negativeIncrease\": 5366.0, \"positiveIncrease\": 679.0, \"totalTestResultsIncrease\": 6045.0, \"ratio\": 0.0928564211377185, \"sinceDay0\": 12}, {\"index\": 469, \"date\": \"2020-03-26T00:00:00\", \"state\": \"MA\", \"positive\": 2417.0, \"negative\": 21204.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 219.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"83a4a37ff66f38e205b0b18839828d141802f5c1\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 25.0, \"hospitalized\": 219.0, \"total\": 23621, \"totalTestResults\": 23621, \"posNeg\": 23621, \"fips\": 25, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 116.0, \"negativeIncrease\": 3248.0, \"positiveIncrease\": 579.0, \"totalTestResultsIncrease\": 3827.0, \"ratio\": 0.10232420303966809, \"sinceDay0\": 13}, {\"index\": 413, \"date\": \"2020-03-27T00:00:00\", \"state\": \"MA\", \"positive\": 3240.0, \"negative\": 26131.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 219.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"016484cf6143f06b89bdb98758e558945940304e\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 35.0, \"hospitalized\": 219.0, \"total\": 29371, \"totalTestResults\": 29371, \"posNeg\": 29371, \"fips\": 25, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4927.0, \"positiveIncrease\": 823.0, \"totalTestResultsIncrease\": 5750.0, \"ratio\": 0.1103128936706275, \"sinceDay0\": 14}, {\"index\": 357, \"date\": \"2020-03-28T00:00:00\", \"state\": \"MA\", \"positive\": 4257.0, \"negative\": 30792.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 350.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c038ffa81528722c23a2ffffda17f2495a188ded\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 44.0, \"hospitalized\": 350.0, \"total\": 35049, \"totalTestResults\": 35049, \"posNeg\": 35049, \"fips\": 25, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 131.0, \"negativeIncrease\": 4661.0, \"positiveIncrease\": 1017.0, \"totalTestResultsIncrease\": 5678.0, \"ratio\": 0.12145852948728922, \"sinceDay0\": 15}, {\"index\": 301, \"date\": \"2020-03-29T00:00:00\", \"state\": \"MA\", \"positive\": 4955.0, \"negative\": 34111.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 399.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1de5b22e00296e1b0a1fea40b858c4f6d2eeb1b0\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 48.0, \"hospitalized\": 399.0, \"total\": 39066, \"totalTestResults\": 39066, \"posNeg\": 39066, \"fips\": 25, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 49.0, \"negativeIncrease\": 3319.0, \"positiveIncrease\": 698.0, \"totalTestResultsIncrease\": 4017.0, \"ratio\": 0.1268366354374648, \"sinceDay0\": 16}, {\"index\": 245, \"date\": \"2020-03-30T00:00:00\", \"state\": \"MA\", \"positive\": 5752.0, \"negative\": 37041.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 453.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"559b7707f9c7203da0ea8c07a2bfc9577d331c97\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 56.0, \"hospitalized\": 453.0, \"total\": 42793, \"totalTestResults\": 42793, \"posNeg\": 42793, \"fips\": 25, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 54.0, \"negativeIncrease\": 2930.0, \"positiveIncrease\": 797.0, \"totalTestResultsIncrease\": 3727.0, \"ratio\": 0.13441450704554483, \"sinceDay0\": 17}, {\"index\": 189, \"date\": \"2020-03-31T00:00:00\", \"state\": \"MA\", \"positive\": 6620.0, \"negative\": 40315.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 562.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b113daa2aa839e30f1f3605f00483292aa39a60e\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 89.0, \"hospitalized\": 562.0, \"total\": 46935, \"totalTestResults\": 46935, \"posNeg\": 46935, \"fips\": 25, \"deathIncrease\": 33.0, \"hospitalizedIncrease\": 109.0, \"negativeIncrease\": 3274.0, \"positiveIncrease\": 868.0, \"totalTestResultsIncrease\": 4142.0, \"ratio\": 0.14104612762330884, \"sinceDay0\": 18}, {\"index\": 133, \"date\": \"2020-04-01T00:00:00\", \"state\": \"MA\", \"positive\": 7738.0, \"negative\": 44000.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 682.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"70ea3d599c7c506eafd12cbed1d23daa16709040\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 122.0, \"hospitalized\": 682.0, \"total\": 51738, \"totalTestResults\": 51738, \"posNeg\": 51738, \"fips\": 25, \"deathIncrease\": 33.0, \"hospitalizedIncrease\": 120.0, \"negativeIncrease\": 3685.0, \"positiveIncrease\": 1118.0, \"totalTestResultsIncrease\": 4803.0, \"ratio\": 0.14956125091808728, \"sinceDay0\": 19}, {\"index\": 77, \"date\": \"2020-04-02T00:00:00\", \"state\": \"MA\", \"positive\": 8966.0, \"negative\": 47642.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 813.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"79d0614d1b714ae75a41b332ec20fb5cbecebab8\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 154.0, \"hospitalized\": 813.0, \"total\": 56608, \"totalTestResults\": 56608, \"posNeg\": 56608, \"fips\": 25, \"deathIncrease\": 32.0, \"hospitalizedIncrease\": 131.0, \"negativeIncrease\": 3642.0, \"positiveIncrease\": 1228.0, \"totalTestResultsIncrease\": 4870.0, \"ratio\": 0.15838750706613905, \"sinceDay0\": 20}, {\"index\": 21, \"date\": \"2020-04-03T00:00:00\", \"state\": \"MA\", \"positive\": 10402.0, \"negative\": 52560.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 966.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b7bee14b9475ba25ad0b28497d483cec03221230\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 192.0, \"hospitalized\": 966.0, \"total\": 62962, \"totalTestResults\": 62962, \"posNeg\": 62962, \"fips\": 25, \"deathIncrease\": 38.0, \"hospitalizedIncrease\": 153.0, \"negativeIncrease\": 4918.0, \"positiveIncrease\": 1436.0, \"totalTestResultsIncrease\": 6354.0, \"ratio\": 0.16521076204694896, \"sinceDay0\": 21}, {\"index\": 862, \"date\": \"2020-03-19T00:00:00\", \"state\": \"MD\", \"positive\": 107.0, \"negative\": 94.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"395ef22c4ab583e1674bf164aa38aa261b48edc8\", \"dateChecked\": \"2020-03-19T20:00:00Z\", \"death\": 1.0, \"hospitalized\": null, \"total\": 201, \"totalTestResults\": 201, \"posNeg\": 201, \"fips\": 24, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 22.0, \"totalTestResultsIncrease\": 22.0, \"ratio\": 0.5323383084577115, \"sinceDay0\": 0}, {\"index\": 806, \"date\": \"2020-03-20T00:00:00\", \"state\": \"MD\", \"positive\": 149.0, \"negative\": 94.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9f5bf564b168c100be9bfa7869e3237c0307d9f2\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 1.0, \"hospitalized\": null, \"total\": 243, \"totalTestResults\": 243, \"posNeg\": 243, \"fips\": 24, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 42.0, \"totalTestResultsIncrease\": 42.0, \"ratio\": 0.6131687242798354, \"sinceDay0\": 1}, {\"index\": 750, \"date\": \"2020-03-21T00:00:00\", \"state\": \"MD\", \"positive\": 190.0, \"negative\": 94.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4cac298bc1adaf891591b29d4b8eb0cd3ffef248\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 2.0, \"hospitalized\": null, \"total\": 284, \"totalTestResults\": 284, \"posNeg\": 284, \"fips\": 24, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 41.0, \"totalTestResultsIncrease\": 41.0, \"ratio\": 0.6690140845070423, \"sinceDay0\": 2}, {\"index\": 694, \"date\": \"2020-03-22T00:00:00\", \"state\": \"MD\", \"positive\": 244.0, \"negative\": 94.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d9cf183ca3af60eaff0e839e6542a4ae56000e2d\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 3.0, \"hospitalized\": null, \"total\": 338, \"totalTestResults\": 338, \"posNeg\": 338, \"fips\": 24, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 54.0, \"totalTestResultsIncrease\": 54.0, \"ratio\": 0.7218934911242604, \"sinceDay0\": 3}, {\"index\": 638, \"date\": \"2020-03-23T00:00:00\", \"state\": \"MD\", \"positive\": 288.0, \"negative\": 94.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"6e4ed4b8716381c2a1daaa4d89c4647815bc188e\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 3.0, \"hospitalized\": null, \"total\": 382, \"totalTestResults\": 382, \"posNeg\": 382, \"fips\": 24, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 44.0, \"totalTestResultsIncrease\": 44.0, \"ratio\": 0.7539267015706806, \"sinceDay0\": 4}, {\"index\": 582, \"date\": \"2020-03-24T00:00:00\", \"state\": \"MD\", \"positive\": 349.0, \"negative\": 94.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"266357ae1f44a606612441a5a7418a525dda2e4b\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 3.0, \"hospitalized\": null, \"total\": 443, \"totalTestResults\": 443, \"posNeg\": 443, \"fips\": 24, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 61.0, \"totalTestResultsIncrease\": 61.0, \"ratio\": 0.7878103837471784, \"sinceDay0\": 5}, {\"index\": 526, \"date\": \"2020-03-25T00:00:00\", \"state\": \"MD\", \"positive\": 423.0, \"negative\": 94.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ef79567177f07f1f10279b6a4bbb1326684bbd00\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 4.0, \"hospitalized\": null, \"total\": 517, \"totalTestResults\": 517, \"posNeg\": 517, \"fips\": 24, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 74.0, \"totalTestResultsIncrease\": 74.0, \"ratio\": 0.8181818181818182, \"sinceDay0\": 6}, {\"index\": 470, \"date\": \"2020-03-26T00:00:00\", \"state\": \"MD\", \"positive\": 580.0, \"negative\": 94.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 132.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"871e46620cc8507563260a7f3a0336d8e426ab51\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 4.0, \"hospitalized\": 132.0, \"total\": 674, \"totalTestResults\": 674, \"posNeg\": 674, \"fips\": 24, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 132.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 157.0, \"totalTestResultsIncrease\": 157.0, \"ratio\": 0.8605341246290801, \"sinceDay0\": 7}, {\"index\": 414, \"date\": \"2020-03-27T00:00:00\", \"state\": \"MD\", \"positive\": 774.0, \"negative\": 94.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 173.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 25.0, \"hash\": \"0a28c9d4e27baa6cdf5626370be8d76e282880d6\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 5.0, \"hospitalized\": 173.0, \"total\": 868, \"totalTestResults\": 868, \"posNeg\": 868, \"fips\": 24, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 41.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 194.0, \"totalTestResultsIncrease\": 194.0, \"ratio\": 0.8917050691244239, \"sinceDay0\": 8}, {\"index\": 358, \"date\": \"2020-03-28T00:00:00\", \"state\": \"MD\", \"positive\": 992.0, \"negative\": 11516.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 226.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9a4f0c46cc3178a20535820bef6c0096ec60c487\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 5.0, \"hospitalized\": 226.0, \"total\": 12508, \"totalTestResults\": 12508, \"posNeg\": 12508, \"fips\": 24, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 53.0, \"negativeIncrease\": 11422.0, \"positiveIncrease\": 218.0, \"totalTestResultsIncrease\": 11640.0, \"ratio\": 0.07930924208506555, \"sinceDay0\": 9}, {\"index\": 302, \"date\": \"2020-03-29T00:00:00\", \"state\": \"MD\", \"positive\": 1239.0, \"negative\": 12354.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 277.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"43e502f79bd427c342c79c2281412b86f1c174e1\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 10.0, \"hospitalized\": 277.0, \"total\": 13593, \"totalTestResults\": 13593, \"posNeg\": 13593, \"fips\": 24, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 51.0, \"negativeIncrease\": 838.0, \"positiveIncrease\": 247.0, \"totalTestResultsIncrease\": 1085.0, \"ratio\": 0.09114985654380932, \"sinceDay0\": 10}, {\"index\": 246, \"date\": \"2020-03-30T00:00:00\", \"state\": \"MD\", \"positive\": 1413.0, \"negative\": 13316.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 353.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ea51bd505bfb1c35306ee4e4b22abdad5d2820d8\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 15.0, \"hospitalized\": 353.0, \"total\": 14729, \"totalTestResults\": 14729, \"posNeg\": 14729, \"fips\": 24, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 76.0, \"negativeIncrease\": 962.0, \"positiveIncrease\": 174.0, \"totalTestResultsIncrease\": 1136.0, \"ratio\": 0.09593319302057166, \"sinceDay0\": 11}, {\"index\": 190, \"date\": \"2020-03-31T00:00:00\", \"state\": \"MD\", \"positive\": 1660.0, \"negative\": 14868.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 429.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d7bfec3c323983994ff111c9de7dc7addc251550\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 18.0, \"hospitalized\": 429.0, \"total\": 16528, \"totalTestResults\": 16528, \"posNeg\": 16528, \"fips\": 24, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 76.0, \"negativeIncrease\": 1552.0, \"positiveIncrease\": 247.0, \"totalTestResultsIncrease\": 1799.0, \"ratio\": 0.10043562439496612, \"sinceDay0\": 12}, {\"index\": 134, \"date\": \"2020-04-01T00:00:00\", \"state\": \"MD\", \"positive\": 1985.0, \"negative\": 17233.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 522.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"37fdabd80821d81988b5e5a11005bbe7e3a77a5f\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 31.0, \"hospitalized\": 522.0, \"total\": 19218, \"totalTestResults\": 19218, \"posNeg\": 19218, \"fips\": 24, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 93.0, \"negativeIncrease\": 2365.0, \"positiveIncrease\": 325.0, \"totalTestResultsIncrease\": 2690.0, \"ratio\": 0.10328858361952337, \"sinceDay0\": 13}, {\"index\": 78, \"date\": \"2020-04-02T00:00:00\", \"state\": \"MD\", \"positive\": 2331.0, \"negative\": 18890.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 582.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 81.0, \"hash\": \"ecc07bae25f936e57b3850a6ce3bcb5de2a72e94\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 36.0, \"hospitalized\": 582.0, \"total\": 21221, \"totalTestResults\": 21221, \"posNeg\": 21221, \"fips\": 24, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 60.0, \"negativeIncrease\": 1657.0, \"positiveIncrease\": 346.0, \"totalTestResultsIncrease\": 2003.0, \"ratio\": 0.10984402243061119, \"sinceDay0\": 14}, {\"index\": 22, \"date\": \"2020-04-03T00:00:00\", \"state\": \"MD\", \"positive\": 2758.0, \"negative\": 20932.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 664.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 159.0, \"hash\": \"748f7091af15d9ca085a92ba09b7390f763b6eb5\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 42.0, \"hospitalized\": 664.0, \"total\": 23690, \"totalTestResults\": 23690, \"posNeg\": 23690, \"fips\": 24, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 82.0, \"negativeIncrease\": 2042.0, \"positiveIncrease\": 427.0, \"totalTestResultsIncrease\": 2469.0, \"ratio\": 0.11642043056141832, \"sinceDay0\": 15}, {\"index\": 639, \"date\": \"2020-03-23T00:00:00\", \"state\": \"ME\", \"positive\": 107.0, \"negative\": 2791.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"88636589511012ea8869a31269dbb2c701023479\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 2898, \"totalTestResults\": 2898, \"posNeg\": 2898, \"fips\": 23, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 527.0, \"positiveIncrease\": 18.0, \"totalTestResultsIncrease\": 545.0, \"ratio\": 0.03692201518288475, \"sinceDay0\": 0}, {\"index\": 583, \"date\": \"2020-03-24T00:00:00\", \"state\": \"ME\", \"positive\": 125.0, \"negative\": 3014.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9f0c2d2a6bfd36968270dd1dce4ecdfcb0e894bd\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 3139, \"totalTestResults\": 3139, \"posNeg\": 3139, \"fips\": 23, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 223.0, \"positiveIncrease\": 18.0, \"totalTestResultsIncrease\": 241.0, \"ratio\": 0.039821599235425297, \"sinceDay0\": 1}, {\"index\": 527, \"date\": \"2020-03-25T00:00:00\", \"state\": \"ME\", \"positive\": 149.0, \"negative\": 3177.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 7.0, \"hash\": \"6a21285c01dfd9378d220175d14dc3a772dfe3fe\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 3326, \"totalTestResults\": 3326, \"posNeg\": 3326, \"fips\": 23, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 163.0, \"positiveIncrease\": 24.0, \"totalTestResultsIncrease\": 187.0, \"ratio\": 0.04479855682501503, \"sinceDay0\": 2}, {\"index\": 471, \"date\": \"2020-03-26T00:00:00\", \"state\": \"ME\", \"positive\": 155.0, \"negative\": 3394.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 16.0, \"hash\": \"482e706965e1aaacc7b8f40547be7a63dbcb4b7d\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 3549, \"totalTestResults\": 3549, \"posNeg\": 3549, \"fips\": 23, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 217.0, \"positiveIncrease\": 6.0, \"totalTestResultsIncrease\": 223.0, \"ratio\": 0.04367427444350521, \"sinceDay0\": 3}, {\"index\": 415, \"date\": \"2020-03-27T00:00:00\", \"state\": \"ME\", \"positive\": 168.0, \"negative\": 3394.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 24.0, \"hash\": \"7150d501b5d1f77e6ab73e054bb65b8ac1d6685b\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 1.0, \"hospitalized\": null, \"total\": 3562, \"totalTestResults\": 3562, \"posNeg\": 3562, \"fips\": 23, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 13.0, \"totalTestResultsIncrease\": 13.0, \"ratio\": 0.047164514317798986, \"sinceDay0\": 4}, {\"index\": 359, \"date\": \"2020-03-28T00:00:00\", \"state\": \"ME\", \"positive\": 211.0, \"negative\": 3394.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 36.0, \"hash\": \"6a5bccaf6b59cc976bba660e1db01c905136fd21\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 1.0, \"hospitalized\": null, \"total\": 3605, \"totalTestResults\": 3605, \"posNeg\": 3605, \"fips\": 23, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 43.0, \"totalTestResultsIncrease\": 43.0, \"ratio\": 0.058529819694868236, \"sinceDay0\": 5}, {\"index\": 303, \"date\": \"2020-03-29T00:00:00\", \"state\": \"ME\", \"positive\": 253.0, \"negative\": 3394.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 41.0, \"hash\": \"1f1feafef96ccfc55b84c7fc1ec38625fc276029\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 3.0, \"hospitalized\": null, \"total\": 3647, \"totalTestResults\": 3647, \"posNeg\": 3647, \"fips\": 23, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 42.0, \"totalTestResultsIncrease\": 42.0, \"ratio\": 0.06937208664655882, \"sinceDay0\": 6}, {\"index\": 247, \"date\": \"2020-03-30T00:00:00\", \"state\": \"ME\", \"positive\": 275.0, \"negative\": 3394.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 49.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 41.0, \"hash\": \"fe7606d23c550ea474d64f9540019641a5da2680\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 3.0, \"hospitalized\": 49.0, \"total\": 3669, \"totalTestResults\": 3669, \"posNeg\": 3669, \"fips\": 23, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 49.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 22.0, \"totalTestResultsIncrease\": 22.0, \"ratio\": 0.07495230307985827, \"sinceDay0\": 7}, {\"index\": 191, \"date\": \"2020-03-31T00:00:00\", \"state\": \"ME\", \"positive\": 303.0, \"negative\": 6088.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 57.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 68.0, \"hash\": \"9a8dc48e67c43030905fcae8d51b29844ca227ad\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 5.0, \"hospitalized\": 57.0, \"total\": 6391, \"totalTestResults\": 6391, \"posNeg\": 6391, \"fips\": 23, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 8.0, \"negativeIncrease\": 2694.0, \"positiveIncrease\": 28.0, \"totalTestResultsIncrease\": 2722.0, \"ratio\": 0.04741042090439681, \"sinceDay0\": 8}, {\"index\": 135, \"date\": \"2020-04-01T00:00:00\", \"state\": \"ME\", \"positive\": 344.0, \"negative\": 6088.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 63.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 80.0, \"hash\": \"d31aa8304a5b094eb4d5598468a141d0f896f408\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 7.0, \"hospitalized\": 63.0, \"total\": 6432, \"totalTestResults\": 6432, \"posNeg\": 6432, \"fips\": 23, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 6.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 41.0, \"totalTestResultsIncrease\": 41.0, \"ratio\": 0.053482587064676616, \"sinceDay0\": 9}, {\"index\": 79, \"date\": \"2020-04-02T00:00:00\", \"state\": \"ME\", \"positive\": 376.0, \"negative\": 6088.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 68.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 94.0, \"hash\": \"06fbf4e13e1f498f67a0c8c3ed6230b5d2545f50\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 7.0, \"hospitalized\": 68.0, \"total\": 6464, \"totalTestResults\": 6464, \"posNeg\": 6464, \"fips\": 23, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 5.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 32.0, \"totalTestResultsIncrease\": 32.0, \"ratio\": 0.05816831683168317, \"sinceDay0\": 10}, {\"index\": 23, \"date\": \"2020-04-03T00:00:00\", \"state\": \"ME\", \"positive\": 432.0, \"negative\": 6088.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 75.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 113.0, \"hash\": \"4b5209b1b8259d319beb467d9b74d759206853f8\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 9.0, \"hospitalized\": 75.0, \"total\": 6520, \"totalTestResults\": 6520, \"posNeg\": 6520, \"fips\": 23, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 7.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 56.0, \"totalTestResultsIncrease\": 56.0, \"ratio\": 0.06625766871165645, \"sinceDay0\": 11}, {\"index\": 864, \"date\": \"2020-03-19T00:00:00\", \"state\": \"MI\", \"positive\": 336.0, \"negative\": 2113.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"89c231fb7de85a45540bdfbee90c04eec0a7c83c\", \"dateChecked\": \"2020-03-19T20:00:00Z\", \"death\": 3.0, \"hospitalized\": null, \"total\": 2449, \"totalTestResults\": 2449, \"posNeg\": 2449, \"fips\": 26, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1841.0, \"positiveIncrease\": 256.0, \"totalTestResultsIncrease\": 2097.0, \"ratio\": 0.13719885667619436, \"sinceDay0\": 0}, {\"index\": 808, \"date\": \"2020-03-20T00:00:00\", \"state\": \"MI\", \"positive\": 549.0, \"negative\": 2069.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"160de9ccf87b8b01892f79dbcd086c12843e5896\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 3.0, \"hospitalized\": null, \"total\": 2618, \"totalTestResults\": 2618, \"posNeg\": 2618, \"fips\": 26, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": -44.0, \"positiveIncrease\": 213.0, \"totalTestResultsIncrease\": 169.0, \"ratio\": 0.20970206264323912, \"sinceDay0\": 1}, {\"index\": 752, \"date\": \"2020-03-21T00:00:00\", \"state\": \"MI\", \"positive\": 787.0, \"negative\": 2069.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4bbc307860335d00f5fc599de63d3be3b261a288\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 5.0, \"hospitalized\": null, \"total\": 2856, \"totalTestResults\": 2856, \"posNeg\": 2856, \"fips\": 26, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 238.0, \"totalTestResultsIncrease\": 238.0, \"ratio\": 0.2755602240896359, \"sinceDay0\": 2}, {\"index\": 696, \"date\": \"2020-03-22T00:00:00\", \"state\": \"MI\", \"positive\": 1035.0, \"negative\": 2069.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"60a521d83d9795ed2c10c5acd73ac27f04430f53\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 8.0, \"hospitalized\": null, \"total\": 3104, \"totalTestResults\": 3104, \"posNeg\": 3104, \"fips\": 26, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 248.0, \"totalTestResultsIncrease\": 248.0, \"ratio\": 0.3334407216494845, \"sinceDay0\": 3}, {\"index\": 640, \"date\": \"2020-03-23T00:00:00\", \"state\": \"MI\", \"positive\": 1328.0, \"negative\": 2069.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b3d92249498258b511c3e0096b4740313fcc50e7\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 15.0, \"hospitalized\": null, \"total\": 3397, \"totalTestResults\": 3397, \"posNeg\": 3397, \"fips\": 26, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 293.0, \"totalTestResultsIncrease\": 293.0, \"ratio\": 0.3909331763320577, \"sinceDay0\": 4}, {\"index\": 584, \"date\": \"2020-03-24T00:00:00\", \"state\": \"MI\", \"positive\": 1791.0, \"negative\": 2069.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"51b4853b99e397722bba7993d875ce4f9cf72d4c\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 24.0, \"hospitalized\": null, \"total\": 3860, \"totalTestResults\": 3860, \"posNeg\": 3860, \"fips\": 26, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 463.0, \"totalTestResultsIncrease\": 463.0, \"ratio\": 0.4639896373056995, \"sinceDay0\": 5}, {\"index\": 528, \"date\": \"2020-03-25T00:00:00\", \"state\": \"MI\", \"positive\": 2294.0, \"negative\": 2069.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a9f71d967c982eca5345379d53b1d83b96be4e15\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 43.0, \"hospitalized\": null, \"total\": 4363, \"totalTestResults\": 4363, \"posNeg\": 4363, \"fips\": 26, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 503.0, \"totalTestResultsIncrease\": 503.0, \"ratio\": 0.5257850103140042, \"sinceDay0\": 6}, {\"index\": 472, \"date\": \"2020-03-26T00:00:00\", \"state\": \"MI\", \"positive\": 2856.0, \"negative\": 6550.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"310c71abd72cba718d14795224e4119494c942b2\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 60.0, \"hospitalized\": null, \"total\": 9406, \"totalTestResults\": 9406, \"posNeg\": 9406, \"fips\": 26, \"deathIncrease\": 17.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4481.0, \"positiveIncrease\": 562.0, \"totalTestResultsIncrease\": 5043.0, \"ratio\": 0.30363597703593453, \"sinceDay0\": 7}, {\"index\": 416, \"date\": \"2020-03-27T00:00:00\", \"state\": \"MI\", \"positive\": 3657.0, \"negative\": 6550.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9a88e637206f03a02622b999c68fa4e0b400b417\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 92.0, \"hospitalized\": null, \"total\": 10207, \"totalTestResults\": 10207, \"posNeg\": 10207, \"fips\": 26, \"deathIncrease\": 32.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 801.0, \"totalTestResultsIncrease\": 801.0, \"ratio\": 0.3582835309101597, \"sinceDay0\": 8}, {\"index\": 360, \"date\": \"2020-03-28T00:00:00\", \"state\": \"MI\", \"positive\": 3657.0, \"negative\": 9109.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"19385f58abdb5af8402070c8c995ced4e4a7dd67\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 92.0, \"hospitalized\": null, \"total\": 12766, \"totalTestResults\": 12766, \"posNeg\": 12766, \"fips\": 26, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2559.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 2559.0, \"ratio\": 0.2864640451198496, \"sinceDay0\": 9}, {\"index\": 304, \"date\": \"2020-03-29T00:00:00\", \"state\": \"MI\", \"positive\": 5486.0, \"negative\": 11893.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c8453def420acac39ac418e88b3fa6143a8907e7\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 132.0, \"hospitalized\": null, \"total\": 17379, \"totalTestResults\": 17379, \"posNeg\": 17379, \"fips\": 26, \"deathIncrease\": 40.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2784.0, \"positiveIncrease\": 1829.0, \"totalTestResultsIncrease\": 4613.0, \"ratio\": 0.3156683353472582, \"sinceDay0\": 10}, {\"index\": 248, \"date\": \"2020-03-30T00:00:00\", \"state\": \"MI\", \"positive\": 6498.0, \"negative\": 11893.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1f7c04934f736a642fad67de889c8616b7d6c0bf\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 184.0, \"hospitalized\": null, \"total\": 18391, \"totalTestResults\": 18391, \"posNeg\": 18391, \"fips\": 26, \"deathIncrease\": 52.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 1012.0, \"totalTestResultsIncrease\": 1012.0, \"ratio\": 0.35332499592191835, \"sinceDay0\": 11}, {\"index\": 192, \"date\": \"2020-03-31T00:00:00\", \"state\": \"MI\", \"positive\": 7615.0, \"negative\": 11893.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9c0cc8c0bb411d253f820471b33fd6f20fc98c35\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 259.0, \"hospitalized\": null, \"total\": 19508, \"totalTestResults\": 19508, \"posNeg\": 19508, \"fips\": 26, \"deathIncrease\": 75.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 1117.0, \"totalTestResultsIncrease\": 1117.0, \"ratio\": 0.3903526758253024, \"sinceDay0\": 12}, {\"index\": 136, \"date\": \"2020-04-01T00:00:00\", \"state\": \"MI\", \"positive\": 9334.0, \"negative\": 11893.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"654f19f58224826f0114ad7d33661d9d8880ad78\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 337.0, \"hospitalized\": null, \"total\": 21227, \"totalTestResults\": 21227, \"posNeg\": 21227, \"fips\": 26, \"deathIncrease\": 78.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 1719.0, \"totalTestResultsIncrease\": 1719.0, \"ratio\": 0.4397229942997126, \"sinceDay0\": 13}, {\"index\": 80, \"date\": \"2020-04-02T00:00:00\", \"state\": \"MI\", \"positive\": 10791.0, \"negative\": 11893.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"6f2458a7d5643a87a271e0b9bb088a7bff260de3\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 417.0, \"hospitalized\": null, \"total\": 22684, \"totalTestResults\": 22684, \"posNeg\": 22684, \"fips\": 26, \"deathIncrease\": 80.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 1457.0, \"totalTestResultsIncrease\": 1457.0, \"ratio\": 0.475709751366602, \"sinceDay0\": 14}, {\"index\": 24, \"date\": \"2020-04-03T00:00:00\", \"state\": \"MI\", \"positive\": 12744.0, \"negative\": 11893.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"301039b85ad63d7b9da1b36f9694f4c768754044\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 479.0, \"hospitalized\": null, \"total\": 24637, \"totalTestResults\": 24637, \"posNeg\": 24637, \"fips\": 26, \"deathIncrease\": 62.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 1953.0, \"totalTestResultsIncrease\": 1953.0, \"ratio\": 0.5172707716036855, \"sinceDay0\": 15}, {\"index\": 809, \"date\": \"2020-03-20T00:00:00\", \"state\": \"MN\", \"positive\": 115.0, \"negative\": 3741.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4614bb4e80402ac12d217edcebc7fb8c0307722f\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 3856, \"totalTestResults\": 3856, \"posNeg\": 3856, \"fips\": 27, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 792.0, \"positiveIncrease\": 26.0, \"totalTestResultsIncrease\": 818.0, \"ratio\": 0.02982365145228216, \"sinceDay0\": 0}, {\"index\": 753, \"date\": \"2020-03-21T00:00:00\", \"state\": \"MN\", \"positive\": 138.0, \"negative\": 3952.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c8e20e13bb45ac57df76285e119c0769f67c89ea\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 1.0, \"hospitalized\": null, \"total\": 4090, \"totalTestResults\": 4090, \"posNeg\": 4090, \"fips\": 27, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 211.0, \"positiveIncrease\": 23.0, \"totalTestResultsIncrease\": 234.0, \"ratio\": 0.03374083129584352, \"sinceDay0\": 1}, {\"index\": 697, \"date\": \"2020-03-22T00:00:00\", \"state\": \"MN\", \"positive\": 169.0, \"negative\": 4511.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 12.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"eca43d6a5a1e21aef9b115cbf6c37684dfe5daff\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 1.0, \"hospitalized\": 12.0, \"total\": 4680, \"totalTestResults\": 4680, \"posNeg\": 4680, \"fips\": 27, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 12.0, \"negativeIncrease\": 559.0, \"positiveIncrease\": 31.0, \"totalTestResultsIncrease\": 590.0, \"ratio\": 0.03611111111111111, \"sinceDay0\": 2}, {\"index\": 641, \"date\": \"2020-03-23T00:00:00\", \"state\": \"MN\", \"positive\": 235.0, \"negative\": 4511.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 17.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d688eeb57c635ed77ed2196359d616a3dae38e3e\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 1.0, \"hospitalized\": 17.0, \"total\": 4746, \"totalTestResults\": 4746, \"posNeg\": 4746, \"fips\": 27, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 5.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 66.0, \"totalTestResultsIncrease\": 66.0, \"ratio\": 0.049515381373788456, \"sinceDay0\": 3}, {\"index\": 585, \"date\": \"2020-03-24T00:00:00\", \"state\": \"MN\", \"positive\": 262.0, \"negative\": 5550.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 21.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4359be22f1d018582c52f57f0005ecd6da7e3697\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 1.0, \"hospitalized\": 21.0, \"total\": 5812, \"totalTestResults\": 5812, \"posNeg\": 5812, \"fips\": 27, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 4.0, \"negativeIncrease\": 1039.0, \"positiveIncrease\": 27.0, \"totalTestResultsIncrease\": 1066.0, \"ratio\": 0.045079146593255334, \"sinceDay0\": 4}, {\"index\": 529, \"date\": \"2020-03-25T00:00:00\", \"state\": \"MN\", \"positive\": 287.0, \"negative\": 11188.0, \"pending\": null, \"hospitalizedCurrently\": 26.0, \"hospitalizedCumulative\": 35.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 122.0, \"hash\": \"0901433ad4b755a7fa7bf999a5d1cb967f3b843e\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 1.0, \"hospitalized\": 35.0, \"total\": 11475, \"totalTestResults\": 11475, \"posNeg\": 11475, \"fips\": 27, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 14.0, \"negativeIncrease\": 5638.0, \"positiveIncrease\": 25.0, \"totalTestResultsIncrease\": 5663.0, \"ratio\": 0.025010893246187365, \"sinceDay0\": 5}, {\"index\": 473, \"date\": \"2020-03-26T00:00:00\", \"state\": \"MN\", \"positive\": 346.0, \"negative\": 12604.0, \"pending\": null, \"hospitalizedCurrently\": 31.0, \"hospitalizedCumulative\": 41.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"54abcd207865204ef3da6e8985ee95f798f94255\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 2.0, \"hospitalized\": 41.0, \"total\": 12950, \"totalTestResults\": 12950, \"posNeg\": 12950, \"fips\": 27, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 6.0, \"negativeIncrease\": 1416.0, \"positiveIncrease\": 59.0, \"totalTestResultsIncrease\": 1475.0, \"ratio\": 0.026718146718146717, \"sinceDay0\": 6}, {\"index\": 417, \"date\": \"2020-03-27T00:00:00\", \"state\": \"MN\", \"positive\": 398.0, \"negative\": 13605.0, \"pending\": null, \"hospitalizedCurrently\": 34.0, \"hospitalizedCumulative\": 51.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 17.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 180.0, \"hash\": \"7c0b3f30124d18556eddb9a53cba26e8b144daca\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 4.0, \"hospitalized\": 51.0, \"total\": 14003, \"totalTestResults\": 14003, \"posNeg\": 14003, \"fips\": 27, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 10.0, \"negativeIncrease\": 1001.0, \"positiveIncrease\": 52.0, \"totalTestResultsIncrease\": 1053.0, \"ratio\": 0.028422480896950653, \"sinceDay0\": 7}, {\"index\": 361, \"date\": \"2020-03-28T00:00:00\", \"state\": \"MN\", \"positive\": 441.0, \"negative\": 15688.0, \"pending\": null, \"hospitalizedCurrently\": 30.0, \"hospitalizedCumulative\": 57.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 17.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 220.0, \"hash\": \"a8973e480f151382f19549d1bdfc538a4e03c387\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 5.0, \"hospitalized\": 57.0, \"total\": 16129, \"totalTestResults\": 16129, \"posNeg\": 16129, \"fips\": 27, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 6.0, \"negativeIncrease\": 2083.0, \"positiveIncrease\": 43.0, \"totalTestResultsIncrease\": 2126.0, \"ratio\": 0.027342054684109367, \"sinceDay0\": 8}, {\"index\": 305, \"date\": \"2020-03-29T00:00:00\", \"state\": \"MN\", \"positive\": 503.0, \"negative\": 17154.0, \"pending\": null, \"hospitalizedCurrently\": 39.0, \"hospitalizedCumulative\": 75.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 17.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 252.0, \"hash\": \"74247593bee28b5b049c8db9e1db79859e9d48fb\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 9.0, \"hospitalized\": 75.0, \"total\": 17657, \"totalTestResults\": 17657, \"posNeg\": 17657, \"fips\": 27, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 18.0, \"negativeIncrease\": 1466.0, \"positiveIncrease\": 62.0, \"totalTestResultsIncrease\": 1528.0, \"ratio\": 0.028487285495837344, \"sinceDay0\": 9}, {\"index\": 249, \"date\": \"2020-03-30T00:00:00\", \"state\": \"MN\", \"positive\": 576.0, \"negative\": 18246.0, \"pending\": null, \"hospitalizedCurrently\": 56.0, \"hospitalizedCumulative\": 92.0, \"inIcuCurrently\": 24.0, \"inIcuCumulative\": 24.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f4fd6f4736f788b58399563a48e0a4a14c120ff4\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 10.0, \"hospitalized\": 92.0, \"total\": 18822, \"totalTestResults\": 18822, \"posNeg\": 18822, \"fips\": 27, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 17.0, \"negativeIncrease\": 1092.0, \"positiveIncrease\": 73.0, \"totalTestResultsIncrease\": 1165.0, \"ratio\": 0.030602486452024225, \"sinceDay0\": 10}, {\"index\": 193, \"date\": \"2020-03-31T00:00:00\", \"state\": \"MN\", \"positive\": 629.0, \"negative\": 19151.0, \"pending\": null, \"hospitalizedCurrently\": 56.0, \"hospitalizedCumulative\": 112.0, \"inIcuCurrently\": 26.0, \"inIcuCumulative\": 26.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"cb5ae95ed3bb94c2e6a93343b3be56544a28c7e0\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 12.0, \"hospitalized\": 112.0, \"total\": 19780, \"totalTestResults\": 19780, \"posNeg\": 19780, \"fips\": 27, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 20.0, \"negativeIncrease\": 905.0, \"positiveIncrease\": 53.0, \"totalTestResultsIncrease\": 958.0, \"ratio\": 0.03179979777553084, \"sinceDay0\": 11}, {\"index\": 137, \"date\": \"2020-04-01T00:00:00\", \"state\": \"MN\", \"positive\": 689.0, \"negative\": 20502.0, \"pending\": null, \"hospitalizedCurrently\": 54.0, \"hospitalizedCumulative\": 122.0, \"inIcuCurrently\": 27.0, \"inIcuCumulative\": 27.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f3620fcfc12dce927a8e2f46922b59df0e351756\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 17.0, \"hospitalized\": 122.0, \"total\": 21191, \"totalTestResults\": 21191, \"posNeg\": 21191, \"fips\": 27, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 10.0, \"negativeIncrease\": 1351.0, \"positiveIncrease\": 60.0, \"totalTestResultsIncrease\": 1411.0, \"ratio\": 0.032513803029588034, \"sinceDay0\": 12}, {\"index\": 81, \"date\": \"2020-04-02T00:00:00\", \"state\": \"MN\", \"positive\": 742.0, \"negative\": 21652.0, \"pending\": null, \"hospitalizedCurrently\": 75.0, \"hospitalizedCumulative\": 138.0, \"inIcuCurrently\": 38.0, \"inIcuCumulative\": 38.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"af6b7633af8e8dd204b0ba17fe37e8ade6cd0abb\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 18.0, \"hospitalized\": 138.0, \"total\": 22394, \"totalTestResults\": 22394, \"posNeg\": 22394, \"fips\": 27, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 16.0, \"negativeIncrease\": 1150.0, \"positiveIncrease\": 53.0, \"totalTestResultsIncrease\": 1203.0, \"ratio\": 0.03313387514512816, \"sinceDay0\": 13}, {\"index\": 25, \"date\": \"2020-04-03T00:00:00\", \"state\": \"MN\", \"positive\": 789.0, \"negative\": 23438.0, \"pending\": null, \"hospitalizedCurrently\": 86.0, \"hospitalizedCumulative\": 156.0, \"inIcuCurrently\": 40.0, \"inIcuCumulative\": 40.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"6c45e5c1cc14d97b2d8c49fc1e64ae7a7ebb3861\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 22.0, \"hospitalized\": 156.0, \"total\": 24227, \"totalTestResults\": 24227, \"posNeg\": 24227, \"fips\": 27, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 18.0, \"negativeIncrease\": 1786.0, \"positiveIncrease\": 47.0, \"totalTestResultsIncrease\": 1833.0, \"ratio\": 0.03256697073513023, \"sinceDay0\": 14}, {\"index\": 642, \"date\": \"2020-03-23T00:00:00\", \"state\": \"MO\", \"positive\": 183.0, \"negative\": 369.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d451a8053ea326216b31c935b674d0457532b596\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 3.0, \"hospitalized\": null, \"total\": 552, \"totalTestResults\": 552, \"posNeg\": 552, \"fips\": 29, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 93.0, \"totalTestResultsIncrease\": 93.0, \"ratio\": 0.33152173913043476, \"sinceDay0\": 0}, {\"index\": 586, \"date\": \"2020-03-24T00:00:00\", \"state\": \"MO\", \"positive\": 183.0, \"negative\": 369.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9e947531084071a07ed377efd8d57dac769fed9f\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 3.0, \"hospitalized\": null, \"total\": 552, \"totalTestResults\": 552, \"posNeg\": 552, \"fips\": 29, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.33152173913043476, \"sinceDay0\": 1}, {\"index\": 530, \"date\": \"2020-03-25T00:00:00\", \"state\": \"MO\", \"positive\": 356.0, \"negative\": 369.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f7ac8ac4376125f549f2d3237af885e7effab1b5\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 8.0, \"hospitalized\": null, \"total\": 725, \"totalTestResults\": 725, \"posNeg\": 725, \"fips\": 29, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 173.0, \"totalTestResultsIncrease\": 173.0, \"ratio\": 0.4910344827586207, \"sinceDay0\": 2}, {\"index\": 474, \"date\": \"2020-03-26T00:00:00\", \"state\": \"MO\", \"positive\": 502.0, \"negative\": 369.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5d322e752d7a1f4672917629e7702c7bc26a93f6\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 8.0, \"hospitalized\": null, \"total\": 871, \"totalTestResults\": 871, \"posNeg\": 871, \"fips\": 29, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 146.0, \"totalTestResultsIncrease\": 146.0, \"ratio\": 0.5763490241102182, \"sinceDay0\": 3}, {\"index\": 418, \"date\": \"2020-03-27T00:00:00\", \"state\": \"MO\", \"positive\": 669.0, \"negative\": 369.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e164635689d048e1c9a7125b8b7fe42bd18dfd3d\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 8.0, \"hospitalized\": null, \"total\": 1038, \"totalTestResults\": 1038, \"posNeg\": 1038, \"fips\": 29, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 167.0, \"totalTestResultsIncrease\": 167.0, \"ratio\": 0.6445086705202312, \"sinceDay0\": 4}, {\"index\": 362, \"date\": \"2020-03-28T00:00:00\", \"state\": \"MO\", \"positive\": 838.0, \"negative\": 10082.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e3f4b93a6ae042958eb8189a70db6a5157dcbfbe\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 10.0, \"hospitalized\": null, \"total\": 10920, \"totalTestResults\": 10920, \"posNeg\": 10920, \"fips\": 29, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 9713.0, \"positiveIncrease\": 169.0, \"totalTestResultsIncrease\": 9882.0, \"ratio\": 0.07673992673992674, \"sinceDay0\": 5}, {\"index\": 306, \"date\": \"2020-03-29T00:00:00\", \"state\": \"MO\", \"positive\": 838.0, \"negative\": 11547.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c9427dccdae92e441cee6fbb2787ea3a231dc686\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 10.0, \"hospitalized\": null, \"total\": 12385, \"totalTestResults\": 12385, \"posNeg\": 12385, \"fips\": 29, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1465.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 1465.0, \"ratio\": 0.06766249495357288, \"sinceDay0\": 6}, {\"index\": 250, \"date\": \"2020-03-30T00:00:00\", \"state\": \"MO\", \"positive\": 1031.0, \"negative\": 13204.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"932b312edc6f1709cc6feaa4afd9e492c17be555\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 13.0, \"hospitalized\": null, \"total\": 14235, \"totalTestResults\": 14235, \"posNeg\": 14235, \"fips\": 29, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1657.0, \"positiveIncrease\": 193.0, \"totalTestResultsIncrease\": 1850.0, \"ratio\": 0.0724271162627327, \"sinceDay0\": 7}, {\"index\": 194, \"date\": \"2020-03-31T00:00:00\", \"state\": \"MO\", \"positive\": 1327.0, \"negative\": 14614.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4fc56f79bf2224a97947093ebb74ae8bf0a5c36f\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 14.0, \"hospitalized\": null, \"total\": 15941, \"totalTestResults\": 15941, \"posNeg\": 15941, \"fips\": 29, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1410.0, \"positiveIncrease\": 296.0, \"totalTestResultsIncrease\": 1706.0, \"ratio\": 0.08324446396085565, \"sinceDay0\": 8}, {\"index\": 138, \"date\": \"2020-04-01T00:00:00\", \"state\": \"MO\", \"positive\": 1581.0, \"negative\": 15846.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"dc97aa93ab282b95a3c23db92cd5efdf0b46ac22\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 18.0, \"hospitalized\": null, \"total\": 17427, \"totalTestResults\": 17427, \"posNeg\": 17427, \"fips\": 29, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1232.0, \"positiveIncrease\": 254.0, \"totalTestResultsIncrease\": 1486.0, \"ratio\": 0.0907212945429506, \"sinceDay0\": 9}, {\"index\": 82, \"date\": \"2020-04-02T00:00:00\", \"state\": \"MO\", \"positive\": 1834.0, \"negative\": 17849.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"db61b660ddb54194c33a182e92605bcbeccb7e37\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 19.0, \"hospitalized\": null, \"total\": 19683, \"totalTestResults\": 19683, \"posNeg\": 19683, \"fips\": 29, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2003.0, \"positiveIncrease\": 253.0, \"totalTestResultsIncrease\": 2256.0, \"ratio\": 0.09317685312198344, \"sinceDay0\": 10}, {\"index\": 26, \"date\": \"2020-04-03T00:00:00\", \"state\": \"MO\", \"positive\": 2113.0, \"negative\": 19357.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4b8f07be28b3788c1fbf8838dfb55730f628b262\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 19.0, \"hospitalized\": null, \"total\": 21470, \"totalTestResults\": 21470, \"posNeg\": 21470, \"fips\": 29, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1508.0, \"positiveIncrease\": 279.0, \"totalTestResultsIncrease\": 1787.0, \"ratio\": 0.0984163949697252, \"sinceDay0\": 11}, {\"index\": 756, \"date\": \"2020-03-21T00:00:00\", \"state\": \"MS\", \"positive\": 140.0, \"negative\": 695.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"05eb75b1e562b9e17f37c33e0678a91de01249c7\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 1.0, \"hospitalized\": null, \"total\": 835, \"totalTestResults\": 835, \"posNeg\": 835, \"fips\": 28, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 60.0, \"totalTestResultsIncrease\": 60.0, \"ratio\": 0.16766467065868262, \"sinceDay0\": 0}, {\"index\": 700, \"date\": \"2020-03-22T00:00:00\", \"state\": \"MS\", \"positive\": 207.0, \"negative\": 1114.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 33.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"894b62e8c387654b1a0363daf8a6664d1ec4f1a3\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 1.0, \"hospitalized\": 33.0, \"total\": 1321, \"totalTestResults\": 1321, \"posNeg\": 1321, \"fips\": 28, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 33.0, \"negativeIncrease\": 419.0, \"positiveIncrease\": 67.0, \"totalTestResultsIncrease\": 486.0, \"ratio\": 0.1566994700984103, \"sinceDay0\": 1}, {\"index\": 644, \"date\": \"2020-03-23T00:00:00\", \"state\": \"MS\", \"positive\": 249.0, \"negative\": 1143.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 33.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"2ed97cbc9d4455685f466d3ba3c9e7edbd3413ef\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 1.0, \"hospitalized\": 33.0, \"total\": 1392, \"totalTestResults\": 1392, \"posNeg\": 1392, \"fips\": 28, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 29.0, \"positiveIncrease\": 42.0, \"totalTestResultsIncrease\": 71.0, \"ratio\": 0.1788793103448276, \"sinceDay0\": 2}, {\"index\": 588, \"date\": \"2020-03-24T00:00:00\", \"state\": \"MS\", \"positive\": 320.0, \"negative\": 1552.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 86.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4b6d159c684e2e8f23fc95e94397d786890afbd4\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 1.0, \"hospitalized\": 86.0, \"total\": 1872, \"totalTestResults\": 1872, \"posNeg\": 1872, \"fips\": 28, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 53.0, \"negativeIncrease\": 409.0, \"positiveIncrease\": 71.0, \"totalTestResultsIncrease\": 480.0, \"ratio\": 0.17094017094017094, \"sinceDay0\": 3}, {\"index\": 532, \"date\": \"2020-03-25T00:00:00\", \"state\": \"MS\", \"positive\": 377.0, \"negative\": 1566.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 117.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9968fd3d3074b5b25f4930d48c5c7269f0a83495\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 2.0, \"hospitalized\": 117.0, \"total\": 1943, \"totalTestResults\": 1943, \"posNeg\": 1943, \"fips\": 28, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 31.0, \"negativeIncrease\": 14.0, \"positiveIncrease\": 57.0, \"totalTestResultsIncrease\": 71.0, \"ratio\": 0.19402985074626866, \"sinceDay0\": 4}, {\"index\": 476, \"date\": \"2020-03-26T00:00:00\", \"state\": \"MS\", \"positive\": 485.0, \"negative\": 2291.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 150.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"20667611a63432824d0ff16867b5adc4c06b5936\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 6.0, \"hospitalized\": 150.0, \"total\": 2776, \"totalTestResults\": 2776, \"posNeg\": 2776, \"fips\": 28, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 33.0, \"negativeIncrease\": 725.0, \"positiveIncrease\": 108.0, \"totalTestResultsIncrease\": 833.0, \"ratio\": 0.17471181556195967, \"sinceDay0\": 5}, {\"index\": 420, \"date\": \"2020-03-27T00:00:00\", \"state\": \"MS\", \"positive\": 579.0, \"negative\": 2560.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 185.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"cb4ab3b814e5417a4015c0a7ae69eb7eaa092c9a\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 8.0, \"hospitalized\": 185.0, \"total\": 3139, \"totalTestResults\": 3139, \"posNeg\": 3139, \"fips\": 28, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 35.0, \"negativeIncrease\": 269.0, \"positiveIncrease\": 94.0, \"totalTestResultsIncrease\": 363.0, \"ratio\": 0.18445364765848996, \"sinceDay0\": 6}, {\"index\": 364, \"date\": \"2020-03-28T00:00:00\", \"state\": \"MS\", \"positive\": 663.0, \"negative\": 2560.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 219.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"6abee145ef8e88027852840cb9a48bc1ad203737\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 13.0, \"hospitalized\": 219.0, \"total\": 3223, \"totalTestResults\": 3223, \"posNeg\": 3223, \"fips\": 28, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 34.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 84.0, \"totalTestResultsIncrease\": 84.0, \"ratio\": 0.20570896680111697, \"sinceDay0\": 7}, {\"index\": 308, \"date\": \"2020-03-29T00:00:00\", \"state\": \"MS\", \"positive\": 758.0, \"negative\": 2560.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 235.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"7e0258b174e76d4043c8b6164aa265e2ea9b1f53\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 14.0, \"hospitalized\": 235.0, \"total\": 3318, \"totalTestResults\": 3318, \"posNeg\": 3318, \"fips\": 28, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 16.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 95.0, \"totalTestResultsIncrease\": 95.0, \"ratio\": 0.22845087402049427, \"sinceDay0\": 8}, {\"index\": 252, \"date\": \"2020-03-30T00:00:00\", \"state\": \"MS\", \"positive\": 847.0, \"negative\": 2989.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 195.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"306cc9d00ab15c39bbba409f447156bbece99bfe\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 16.0, \"hospitalized\": 195.0, \"total\": 3836, \"totalTestResults\": 3836, \"posNeg\": 3836, \"fips\": 28, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": -40.0, \"negativeIncrease\": 429.0, \"positiveIncrease\": 89.0, \"totalTestResultsIncrease\": 518.0, \"ratio\": 0.2208029197080292, \"sinceDay0\": 9}, {\"index\": 196, \"date\": \"2020-03-31T00:00:00\", \"state\": \"MS\", \"positive\": 937.0, \"negative\": 3537.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 211.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b44e85184d9a95e733dd5b77766d46986a09876a\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 20.0, \"hospitalized\": 211.0, \"total\": 4474, \"totalTestResults\": 4474, \"posNeg\": 4474, \"fips\": 28, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 16.0, \"negativeIncrease\": 548.0, \"positiveIncrease\": 90.0, \"totalTestResultsIncrease\": 638.0, \"ratio\": 0.2094322753687975, \"sinceDay0\": 10}, {\"index\": 140, \"date\": \"2020-04-01T00:00:00\", \"state\": \"MS\", \"positive\": 1073.0, \"negative\": 3712.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 332.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"03c61b979c5d42a05f6620424c0f7090acc01647\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 22.0, \"hospitalized\": 332.0, \"total\": 4785, \"totalTestResults\": 4785, \"posNeg\": 4785, \"fips\": 28, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 121.0, \"negativeIncrease\": 175.0, \"positiveIncrease\": 136.0, \"totalTestResultsIncrease\": 311.0, \"ratio\": 0.22424242424242424, \"sinceDay0\": 11}, {\"index\": 84, \"date\": \"2020-04-02T00:00:00\", \"state\": \"MS\", \"positive\": 1177.0, \"negative\": 4753.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 360.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"3fcf47375c2d49eb03ea205131eac0e18c42a29d\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 26.0, \"hospitalized\": 360.0, \"total\": 5930, \"totalTestResults\": 5930, \"posNeg\": 5930, \"fips\": 28, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 28.0, \"negativeIncrease\": 1041.0, \"positiveIncrease\": 104.0, \"totalTestResultsIncrease\": 1145.0, \"ratio\": 0.1984822934232715, \"sinceDay0\": 12}, {\"index\": 28, \"date\": \"2020-04-03T00:00:00\", \"state\": \"MS\", \"positive\": 1358.0, \"negative\": 4753.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 420.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8fa26347da7a40d2568c9ec1881dcb83d4ba139c\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 29.0, \"hospitalized\": 420.0, \"total\": 6111, \"totalTestResults\": 6111, \"posNeg\": 6111, \"fips\": 28, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 60.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 181.0, \"totalTestResultsIncrease\": 181.0, \"ratio\": 0.2222222222222222, \"sinceDay0\": 13}, {\"index\": 421, \"date\": \"2020-03-27T00:00:00\", \"state\": \"MT\", \"positive\": 108.0, \"negative\": 2590.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 7.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"80cf224382b2b613d31d3a1a3987b68e42389ca3\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": null, \"hospitalized\": 7.0, \"total\": 2698, \"totalTestResults\": 2698, \"posNeg\": 2698, \"fips\": 30, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 6.0, \"negativeIncrease\": 462.0, \"positiveIncrease\": 37.0, \"totalTestResultsIncrease\": 499.0, \"ratio\": 0.04002965159377316, \"sinceDay0\": 0}, {\"index\": 365, \"date\": \"2020-03-28T00:00:00\", \"state\": \"MT\", \"positive\": 129.0, \"negative\": 3256.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 7.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"92e123a507931bf1b282c0575331bdd0d17fba98\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 1.0, \"hospitalized\": 7.0, \"total\": 3385, \"totalTestResults\": 3385, \"posNeg\": 3385, \"fips\": 30, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 666.0, \"positiveIncrease\": 21.0, \"totalTestResultsIncrease\": 687.0, \"ratio\": 0.03810930576070901, \"sinceDay0\": 1}, {\"index\": 309, \"date\": \"2020-03-29T00:00:00\", \"state\": \"MT\", \"positive\": 154.0, \"negative\": 4143.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 8.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8e59ae6eb967f41c99ed548a2cd1a8e66fafb8e1\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 1.0, \"hospitalized\": 8.0, \"total\": 4297, \"totalTestResults\": 4297, \"posNeg\": 4297, \"fips\": 30, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 1.0, \"negativeIncrease\": 887.0, \"positiveIncrease\": 25.0, \"totalTestResultsIncrease\": 912.0, \"ratio\": 0.03583895741214801, \"sinceDay0\": 2}, {\"index\": 253, \"date\": \"2020-03-30T00:00:00\", \"state\": \"MT\", \"positive\": 171.0, \"negative\": 3961.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 10.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"3fd12c2881fd187e82754915f87b299c0bdafcef\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 4.0, \"hospitalized\": 10.0, \"total\": 4132, \"totalTestResults\": 4132, \"posNeg\": 4132, \"fips\": 30, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 2.0, \"negativeIncrease\": -182.0, \"positiveIncrease\": 17.0, \"totalTestResultsIncrease\": -165.0, \"ratio\": 0.04138431752178122, \"sinceDay0\": 3}, {\"index\": 197, \"date\": \"2020-03-31T00:00:00\", \"state\": \"MT\", \"positive\": 184.0, \"negative\": 4234.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 14.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"501a4ed165fe9f891b45ef2af4b82b23f264ef3a\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 4.0, \"hospitalized\": 14.0, \"total\": 4418, \"totalTestResults\": 4418, \"posNeg\": 4418, \"fips\": 30, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 4.0, \"negativeIncrease\": 273.0, \"positiveIncrease\": 13.0, \"totalTestResultsIncrease\": 286.0, \"ratio\": 0.04164780443639656, \"sinceDay0\": 4}, {\"index\": 141, \"date\": \"2020-04-01T00:00:00\", \"state\": \"MT\", \"positive\": 208.0, \"negative\": 4710.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 17.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5c9460763670b2514d789493ad77a8e06dc8bcc2\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 5.0, \"hospitalized\": 17.0, \"total\": 4918, \"totalTestResults\": 4918, \"posNeg\": 4918, \"fips\": 30, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 3.0, \"negativeIncrease\": 476.0, \"positiveIncrease\": 24.0, \"totalTestResultsIncrease\": 500.0, \"ratio\": 0.0422936152907686, \"sinceDay0\": 5}, {\"index\": 85, \"date\": \"2020-04-02T00:00:00\", \"state\": \"MT\", \"positive\": 227.0, \"negative\": 5093.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 20.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"83ed127512ee7881e2dc28380478203d2775dbaa\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 5.0, \"hospitalized\": 20.0, \"total\": 5320, \"totalTestResults\": 5320, \"posNeg\": 5320, \"fips\": 30, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 3.0, \"negativeIncrease\": 383.0, \"positiveIncrease\": 19.0, \"totalTestResultsIncrease\": 402.0, \"ratio\": 0.04266917293233083, \"sinceDay0\": 6}, {\"index\": 29, \"date\": \"2020-04-03T00:00:00\", \"state\": \"MT\", \"positive\": 243.0, \"negative\": 5333.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 24.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"58d29fc14826e53d165af859f9d3b6aa2a562cd4\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 5.0, \"hospitalized\": 24.0, \"total\": 5576, \"totalTestResults\": 5576, \"posNeg\": 5576, \"fips\": 30, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 4.0, \"negativeIncrease\": 240.0, \"positiveIncrease\": 16.0, \"totalTestResultsIncrease\": 256.0, \"ratio\": 0.043579626972740315, \"sinceDay0\": 7}, {\"index\": 814, \"date\": \"2020-03-20T00:00:00\", \"state\": \"NC\", \"positive\": 137.0, \"negative\": 3096.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"7fb95d6505c8d7fe53b1f0b7dbe50120d88bb6c6\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 0.0, \"hospitalized\": null, \"total\": 3233, \"totalTestResults\": 3233, \"posNeg\": 3233, \"fips\": 37, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 688.0, \"positiveIncrease\": 40.0, \"totalTestResultsIncrease\": 728.0, \"ratio\": 0.04237550262913702, \"sinceDay0\": 0}, {\"index\": 758, \"date\": \"2020-03-21T00:00:00\", \"state\": \"NC\", \"positive\": 184.0, \"negative\": 5092.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"bc8438b4be03c06d8b21bb306fa8bcade8848a98\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 0.0, \"hospitalized\": null, \"total\": 5276, \"totalTestResults\": 5276, \"posNeg\": 5276, \"fips\": 37, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1996.0, \"positiveIncrease\": 47.0, \"totalTestResultsIncrease\": 2043.0, \"ratio\": 0.034874905231235785, \"sinceDay0\": 1}, {\"index\": 702, \"date\": \"2020-03-22T00:00:00\", \"state\": \"NC\", \"positive\": 255.0, \"negative\": 6183.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f7ae5da72d04953c92dbeded88d4532bcc0e7cf5\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 0.0, \"hospitalized\": null, \"total\": 6438, \"totalTestResults\": 6438, \"posNeg\": 6438, \"fips\": 37, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1091.0, \"positiveIncrease\": 71.0, \"totalTestResultsIncrease\": 1162.0, \"ratio\": 0.03960857409133271, \"sinceDay0\": 2}, {\"index\": 646, \"date\": \"2020-03-23T00:00:00\", \"state\": \"NC\", \"positive\": 297.0, \"negative\": 8141.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f498171c52256d450302d4d6e478d260e7d5b51d\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 0.0, \"hospitalized\": null, \"total\": 8438, \"totalTestResults\": 8438, \"posNeg\": 8438, \"fips\": 37, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1958.0, \"positiveIncrease\": 42.0, \"totalTestResultsIncrease\": 2000.0, \"ratio\": 0.03519791419767718, \"sinceDay0\": 3}, {\"index\": 590, \"date\": \"2020-03-24T00:00:00\", \"state\": \"NC\", \"positive\": 398.0, \"negative\": 8141.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"48a75030e4fdc67a802eb4afde3e104c229b4eca\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 0.0, \"hospitalized\": null, \"total\": 8539, \"totalTestResults\": 8539, \"posNeg\": 8539, \"fips\": 37, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 101.0, \"totalTestResultsIncrease\": 101.0, \"ratio\": 0.046609673263848225, \"sinceDay0\": 4}, {\"index\": 534, \"date\": \"2020-03-25T00:00:00\", \"state\": \"NC\", \"positive\": 504.0, \"negative\": 9985.0, \"pending\": null, \"hospitalizedCurrently\": 29.0, \"hospitalizedCumulative\": 29.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f1ebbf14648813a80f26774a206119e81adfdd97\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 1.0, \"hospitalized\": 29.0, \"total\": 10489, \"totalTestResults\": 10489, \"posNeg\": 10489, \"fips\": 37, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 29.0, \"negativeIncrease\": 1844.0, \"positiveIncrease\": 106.0, \"totalTestResultsIncrease\": 1950.0, \"ratio\": 0.04805033844980456, \"sinceDay0\": 5}, {\"index\": 478, \"date\": \"2020-03-26T00:00:00\", \"state\": \"NC\", \"positive\": 636.0, \"negative\": 12274.0, \"pending\": null, \"hospitalizedCurrently\": 29.0, \"hospitalizedCumulative\": 29.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b8eeb5c864773c3f14bc449f0e27f832d9ced2b0\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 2.0, \"hospitalized\": 29.0, \"total\": 12910, \"totalTestResults\": 12910, \"posNeg\": 12910, \"fips\": 37, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2289.0, \"positiveIncrease\": 132.0, \"totalTestResultsIncrease\": 2421.0, \"ratio\": 0.04926413632842758, \"sinceDay0\": 6}, {\"index\": 422, \"date\": \"2020-03-27T00:00:00\", \"state\": \"NC\", \"positive\": 763.0, \"negative\": 14373.0, \"pending\": null, \"hospitalizedCurrently\": 77.0, \"hospitalizedCumulative\": 77.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"37a877325357e4e49c996759f5e5df827fa53973\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 3.0, \"hospitalized\": 77.0, \"total\": 15136, \"totalTestResults\": 15136, \"posNeg\": 15136, \"fips\": 37, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 48.0, \"negativeIncrease\": 2099.0, \"positiveIncrease\": 127.0, \"totalTestResultsIncrease\": 2226.0, \"ratio\": 0.05040961945031713, \"sinceDay0\": 7}, {\"index\": 366, \"date\": \"2020-03-28T00:00:00\", \"state\": \"NC\", \"positive\": 935.0, \"negative\": 16592.0, \"pending\": null, \"hospitalizedCurrently\": 87.0, \"hospitalizedCumulative\": 87.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4490e409e3e6c1a5225b5a95861d3d183aecb0d8\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 4.0, \"hospitalized\": 87.0, \"total\": 17527, \"totalTestResults\": 17527, \"posNeg\": 17527, \"fips\": 37, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 10.0, \"negativeIncrease\": 2219.0, \"positiveIncrease\": 172.0, \"totalTestResultsIncrease\": 2391.0, \"ratio\": 0.0533462657613967, \"sinceDay0\": 8}, {\"index\": 310, \"date\": \"2020-03-29T00:00:00\", \"state\": \"NC\", \"positive\": 1040.0, \"negative\": 17905.0, \"pending\": null, \"hospitalizedCurrently\": 91.0, \"hospitalizedCumulative\": 91.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"829b3e91f90f0f3a90688f7a2f51641e3511c3c2\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 4.0, \"hospitalized\": 91.0, \"total\": 18945, \"totalTestResults\": 18945, \"posNeg\": 18945, \"fips\": 37, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 4.0, \"negativeIncrease\": 1313.0, \"positiveIncrease\": 105.0, \"totalTestResultsIncrease\": 1418.0, \"ratio\": 0.05489575085774611, \"sinceDay0\": 9}, {\"index\": 254, \"date\": \"2020-03-30T00:00:00\", \"state\": \"NC\", \"positive\": 1307.0, \"negative\": 19557.0, \"pending\": null, \"hospitalizedCurrently\": 137.0, \"hospitalizedCumulative\": 137.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5551d7943af1b24215d118be796d0d507f3ebc57\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 6.0, \"hospitalized\": 137.0, \"total\": 20864, \"totalTestResults\": 20864, \"posNeg\": 20864, \"fips\": 37, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 46.0, \"negativeIncrease\": 1652.0, \"positiveIncrease\": 267.0, \"totalTestResultsIncrease\": 1919.0, \"ratio\": 0.06264378834355828, \"sinceDay0\": 10}, {\"index\": 198, \"date\": \"2020-03-31T00:00:00\", \"state\": \"NC\", \"positive\": 1498.0, \"negative\": 21608.0, \"pending\": null, \"hospitalizedCurrently\": 157.0, \"hospitalizedCumulative\": 157.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"00f281d116a1250c3ca125211efd13eea4b844cd\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 8.0, \"hospitalized\": 157.0, \"total\": 23106, \"totalTestResults\": 23106, \"posNeg\": 23106, \"fips\": 37, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 20.0, \"negativeIncrease\": 2051.0, \"positiveIncrease\": 191.0, \"totalTestResultsIncrease\": 2242.0, \"ratio\": 0.06483164546005367, \"sinceDay0\": 11}, {\"index\": 142, \"date\": \"2020-04-01T00:00:00\", \"state\": \"NC\", \"positive\": 1584.0, \"negative\": 24659.0, \"pending\": null, \"hospitalizedCurrently\": 204.0, \"hospitalizedCumulative\": 204.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e7d16063de0c0d172e6b3c63e9fa5886f5f3311f\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 10.0, \"hospitalized\": 204.0, \"total\": 26243, \"totalTestResults\": 26243, \"posNeg\": 26243, \"fips\": 37, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 47.0, \"negativeIncrease\": 3051.0, \"positiveIncrease\": 86.0, \"totalTestResultsIncrease\": 3137.0, \"ratio\": 0.06035895286362077, \"sinceDay0\": 12}, {\"index\": 86, \"date\": \"2020-04-02T00:00:00\", \"state\": \"NC\", \"positive\": 1857.0, \"negative\": 26822.0, \"pending\": null, \"hospitalizedCurrently\": 184.0, \"hospitalizedCumulative\": 204.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"fc6505af359bdeaf2b3e4eb74c3845c86659e04c\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 16.0, \"hospitalized\": 204.0, \"total\": 28679, \"totalTestResults\": 28679, \"posNeg\": 28679, \"fips\": 37, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2163.0, \"positiveIncrease\": 273.0, \"totalTestResultsIncrease\": 2436.0, \"ratio\": 0.0647512116879947, \"sinceDay0\": 13}, {\"index\": 30, \"date\": \"2020-04-03T00:00:00\", \"state\": \"NC\", \"positive\": 2093.0, \"negative\": 29505.0, \"pending\": null, \"hospitalizedCurrently\": 184.0, \"hospitalizedCumulative\": 259.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"853296f9cd640052947f0851f15fca08782be536\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 19.0, \"hospitalized\": 259.0, \"total\": 31598, \"totalTestResults\": 31598, \"posNeg\": 31598, \"fips\": 37, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 55.0, \"negativeIncrease\": 2683.0, \"positiveIncrease\": 236.0, \"totalTestResultsIncrease\": 2919.0, \"ratio\": 0.06623836951705804, \"sinceDay0\": 14}, {\"index\": 255, \"date\": \"2020-03-30T00:00:00\", \"state\": \"ND\", \"positive\": 109.0, \"negative\": 3728.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 19.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 19.0, \"hash\": \"68a3b5338b8b1424629db87b97ecbd0c347d7317\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 2.0, \"hospitalized\": 19.0, \"total\": 3837, \"totalTestResults\": 3837, \"posNeg\": 3837, \"fips\": 38, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 2.0, \"negativeIncrease\": 373.0, \"positiveIncrease\": 11.0, \"totalTestResultsIncrease\": 384.0, \"ratio\": 0.02840761011206672, \"sinceDay0\": 0}, {\"index\": 199, \"date\": \"2020-03-31T00:00:00\", \"state\": \"ND\", \"positive\": 126.0, \"negative\": 4131.0, \"pending\": null, \"hospitalizedCurrently\": 21.0, \"hospitalizedCumulative\": 21.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 30.0, \"hash\": \"7baa9d453487d33dfb1af22bce4b3801654e1289\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 3.0, \"hospitalized\": 21.0, \"total\": 4257, \"totalTestResults\": 4257, \"posNeg\": 4257, \"fips\": 38, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 2.0, \"negativeIncrease\": 403.0, \"positiveIncrease\": 17.0, \"totalTestResultsIncrease\": 420.0, \"ratio\": 0.02959830866807611, \"sinceDay0\": 1}, {\"index\": 143, \"date\": \"2020-04-01T00:00:00\", \"state\": \"ND\", \"positive\": 142.0, \"negative\": 4351.0, \"pending\": null, \"hospitalizedCurrently\": 23.0, \"hospitalizedCumulative\": 23.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 34.0, \"hash\": \"ab1dd18bfe3db1694179598fab36263f0532fe0a\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 3.0, \"hospitalized\": 23.0, \"total\": 4493, \"totalTestResults\": 4493, \"posNeg\": 4493, \"fips\": 38, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 2.0, \"negativeIncrease\": 220.0, \"positiveIncrease\": 16.0, \"totalTestResultsIncrease\": 236.0, \"ratio\": 0.031604718450923656, \"sinceDay0\": 2}, {\"index\": 87, \"date\": \"2020-04-02T00:00:00\", \"state\": \"ND\", \"positive\": 159.0, \"negative\": 4821.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 28.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 43.0, \"hash\": \"772ba7dafcd9354101e253cccb816ef1eebf1dc7\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 3.0, \"hospitalized\": 28.0, \"total\": 4980, \"totalTestResults\": 4980, \"posNeg\": 4980, \"fips\": 38, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 5.0, \"negativeIncrease\": 470.0, \"positiveIncrease\": 17.0, \"totalTestResultsIncrease\": 487.0, \"ratio\": 0.031927710843373494, \"sinceDay0\": 3}, {\"index\": 31, \"date\": \"2020-04-03T00:00:00\", \"state\": \"ND\", \"positive\": 173.0, \"negative\": 5625.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 29.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 55.0, \"hash\": \"84ef01d179db6bf5d01711b8006489518c3cb319\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 3.0, \"hospitalized\": 29.0, \"total\": 5798, \"totalTestResults\": 5798, \"posNeg\": 5798, \"fips\": 38, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 1.0, \"negativeIncrease\": 804.0, \"positiveIncrease\": 14.0, \"totalTestResultsIncrease\": 818.0, \"ratio\": 0.02983787512935495, \"sinceDay0\": 4}, {\"index\": 312, \"date\": \"2020-03-29T00:00:00\", \"state\": \"NE\", \"positive\": 108.0, \"negative\": 1968.0, \"pending\": 4.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a91fc8b0c0abec3ecc573422316a5421f9afd0ed\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 2.0, \"hospitalized\": null, \"total\": 2080, \"totalTestResults\": 2076, \"posNeg\": 2076, \"fips\": 31, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 64.0, \"positiveIncrease\": 12.0, \"totalTestResultsIncrease\": 76.0, \"ratio\": 0.051923076923076926, \"sinceDay0\": 0}, {\"index\": 256, \"date\": \"2020-03-30T00:00:00\", \"state\": \"NE\", \"positive\": 145.0, \"negative\": 2584.0, \"pending\": 5.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"088432e8d55e51cb7eaba7eba13d364259f8842c\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 2.0, \"hospitalized\": null, \"total\": 2734, \"totalTestResults\": 2729, \"posNeg\": 2729, \"fips\": 31, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 616.0, \"positiveIncrease\": 37.0, \"totalTestResultsIncrease\": 653.0, \"ratio\": 0.053035844915874174, \"sinceDay0\": 1}, {\"index\": 200, \"date\": \"2020-03-31T00:00:00\", \"state\": \"NE\", \"positive\": 172.0, \"negative\": 2931.0, \"pending\": 8.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b3674a50a3d04771860eca37b3917ee82b88fbba\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 3.0, \"hospitalized\": null, \"total\": 3111, \"totalTestResults\": 3103, \"posNeg\": 3103, \"fips\": 31, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 347.0, \"positiveIncrease\": 27.0, \"totalTestResultsIncrease\": 374.0, \"ratio\": 0.05528768884603021, \"sinceDay0\": 2}, {\"index\": 144, \"date\": \"2020-04-01T00:00:00\", \"state\": \"NE\", \"positive\": 210.0, \"negative\": 3475.0, \"pending\": 8.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a736e9df99d379949dec4b420b4fe03c5a5b32b4\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 4.0, \"hospitalized\": null, \"total\": 3693, \"totalTestResults\": 3685, \"posNeg\": 3685, \"fips\": 31, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 544.0, \"positiveIncrease\": 38.0, \"totalTestResultsIncrease\": 582.0, \"ratio\": 0.05686433793663688, \"sinceDay0\": 3}, {\"index\": 88, \"date\": \"2020-04-02T00:00:00\", \"state\": \"NE\", \"positive\": 246.0, \"negative\": 3978.0, \"pending\": 11.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1e5adc3c19a8d6dfeddcd695a6e27c0091ee0f4a\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 5.0, \"hospitalized\": null, \"total\": 4235, \"totalTestResults\": 4224, \"posNeg\": 4224, \"fips\": 31, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 503.0, \"positiveIncrease\": 36.0, \"totalTestResultsIncrease\": 539.0, \"ratio\": 0.05808736717827627, \"sinceDay0\": 4}, {\"index\": 32, \"date\": \"2020-04-03T00:00:00\", \"state\": \"NE\", \"positive\": 279.0, \"negative\": 4487.0, \"pending\": 11.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4afd0964d77f63c02401a16e57510b1d974e875d\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 6.0, \"hospitalized\": null, \"total\": 4777, \"totalTestResults\": 4766, \"posNeg\": 4766, \"fips\": 31, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 509.0, \"positiveIncrease\": 33.0, \"totalTestResultsIncrease\": 542.0, \"ratio\": 0.058404856604563536, \"sinceDay0\": 5}, {\"index\": 593, \"date\": \"2020-03-24T00:00:00\", \"state\": \"NH\", \"positive\": 101.0, \"negative\": 1447.0, \"pending\": 869.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 11.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"eb6013bb5115cbbe92d9b4d3830dd1fc8f64c164\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 1.0, \"hospitalized\": 11.0, \"total\": 2417, \"totalTestResults\": 1548, \"posNeg\": 1548, \"fips\": 33, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 11.0, \"negativeIncrease\": 73.0, \"positiveIncrease\": 23.0, \"totalTestResultsIncrease\": 96.0, \"ratio\": 0.041787339677285894, \"sinceDay0\": 0}, {\"index\": 537, \"date\": \"2020-03-25T00:00:00\", \"state\": \"NH\", \"positive\": 108.0, \"negative\": 2356.0, \"pending\": 804.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 13.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ba894271c0369b91572e02c61dbe15afd68c146b\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 1.0, \"hospitalized\": 13.0, \"total\": 3268, \"totalTestResults\": 2464, \"posNeg\": 2464, \"fips\": 33, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 2.0, \"negativeIncrease\": 909.0, \"positiveIncrease\": 7.0, \"totalTestResultsIncrease\": 916.0, \"ratio\": 0.033047735618115054, \"sinceDay0\": 1}, {\"index\": 481, \"date\": \"2020-03-26T00:00:00\", \"state\": \"NH\", \"positive\": 137.0, \"negative\": 3001.0, \"pending\": 712.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 19.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a37cd44af5e89e3f36bcbc424c61162b18173e05\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 1.0, \"hospitalized\": 19.0, \"total\": 3850, \"totalTestResults\": 3138, \"posNeg\": 3138, \"fips\": 33, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 6.0, \"negativeIncrease\": 645.0, \"positiveIncrease\": 29.0, \"totalTestResultsIncrease\": 674.0, \"ratio\": 0.03558441558441559, \"sinceDay0\": 2}, {\"index\": 425, \"date\": \"2020-03-27T00:00:00\", \"state\": \"NH\", \"positive\": 158.0, \"negative\": 3395.0, \"pending\": 592.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 25.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a82fcad4f7253fef19c71e71f7f2429e17e1c1a7\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 1.0, \"hospitalized\": 25.0, \"total\": 4145, \"totalTestResults\": 3553, \"posNeg\": 3553, \"fips\": 33, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 6.0, \"negativeIncrease\": 394.0, \"positiveIncrease\": 21.0, \"totalTestResultsIncrease\": 415.0, \"ratio\": 0.03811821471652593, \"sinceDay0\": 3}, {\"index\": 369, \"date\": \"2020-03-28T00:00:00\", \"state\": \"NH\", \"positive\": 187.0, \"negative\": 3656.0, \"pending\": 296.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 30.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"3372eb26e404d2af3105361a92e2fcff4bdd04e7\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 2.0, \"hospitalized\": 30.0, \"total\": 4139, \"totalTestResults\": 3843, \"posNeg\": 3843, \"fips\": 33, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 5.0, \"negativeIncrease\": 261.0, \"positiveIncrease\": 29.0, \"totalTestResultsIncrease\": 290.0, \"ratio\": 0.04517999516791495, \"sinceDay0\": 4}, {\"index\": 313, \"date\": \"2020-03-29T00:00:00\", \"state\": \"NH\", \"positive\": 214.0, \"negative\": 4524.0, \"pending\": 285.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 33.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0802aecb450515b575cf19e88b8b137764d666dc\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 2.0, \"hospitalized\": 33.0, \"total\": 5023, \"totalTestResults\": 4738, \"posNeg\": 4738, \"fips\": 33, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 3.0, \"negativeIncrease\": 868.0, \"positiveIncrease\": 27.0, \"totalTestResultsIncrease\": 895.0, \"ratio\": 0.04260402150109496, \"sinceDay0\": 5}, {\"index\": 257, \"date\": \"2020-03-30T00:00:00\", \"state\": \"NH\", \"positive\": 314.0, \"negative\": 5386.0, \"pending\": 144.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 45.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"09deb0331b52dd98962c90342290df5b9d20b889\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 3.0, \"hospitalized\": 45.0, \"total\": 5844, \"totalTestResults\": 5700, \"posNeg\": 5700, \"fips\": 33, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 12.0, \"negativeIncrease\": 862.0, \"positiveIncrease\": 100.0, \"totalTestResultsIncrease\": 962.0, \"ratio\": 0.05373032169746749, \"sinceDay0\": 6}, {\"index\": 201, \"date\": \"2020-03-31T00:00:00\", \"state\": \"NH\", \"positive\": 314.0, \"negative\": 5413.0, \"pending\": 65.0, \"hospitalizedCurrently\": 45.0, \"hospitalizedCumulative\": 45.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"80a5062cdd7103af585452431f416aca04bafd34\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 3.0, \"hospitalized\": 45.0, \"total\": 5792, \"totalTestResults\": 5727, \"posNeg\": 5727, \"fips\": 33, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 27.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 27.0, \"ratio\": 0.05421270718232044, \"sinceDay0\": 7}, {\"index\": 145, \"date\": \"2020-04-01T00:00:00\", \"state\": \"NH\", \"positive\": 415.0, \"negative\": 5985.0, \"pending\": 97.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 59.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 56.0, \"hash\": \"6fb656cf90040c55a5d29d3739819ab6457a8903\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 4.0, \"hospitalized\": 59.0, \"total\": 6497, \"totalTestResults\": 6400, \"posNeg\": 6400, \"fips\": 33, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 14.0, \"negativeIncrease\": 572.0, \"positiveIncrease\": 101.0, \"totalTestResultsIncrease\": 673.0, \"ratio\": 0.06387563490841927, \"sinceDay0\": 8}, {\"index\": 89, \"date\": \"2020-04-02T00:00:00\", \"state\": \"NH\", \"positive\": 415.0, \"negative\": 6078.0, \"pending\": 126.0, \"hospitalizedCurrently\": 58.0, \"hospitalizedCumulative\": 59.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 91.0, \"hash\": \"db06679a86edc18535729a4d8e32df90889b7a3f\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 4.0, \"hospitalized\": 59.0, \"total\": 6619, \"totalTestResults\": 6493, \"posNeg\": 6493, \"fips\": 33, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 93.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 93.0, \"ratio\": 0.06269829279347333, \"sinceDay0\": 9}, {\"index\": 33, \"date\": \"2020-04-03T00:00:00\", \"state\": \"NH\", \"positive\": 479.0, \"negative\": 6575.0, \"pending\": 114.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 73.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 101.0, \"hash\": \"d868c7b35e0058b0fc967b11ce603223586ff8a4\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 5.0, \"hospitalized\": 73.0, \"total\": 7168, \"totalTestResults\": 7054, \"posNeg\": 7054, \"fips\": 33, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 14.0, \"negativeIncrease\": 497.0, \"positiveIncrease\": 64.0, \"totalTestResultsIncrease\": 561.0, \"ratio\": 0.06682477678571429, \"sinceDay0\": 10}, {\"index\": 1042, \"date\": \"2020-03-16T00:00:00\", \"state\": \"NJ\", \"positive\": 178.0, \"negative\": 120.0, \"pending\": 20.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e3047f52c8b8718510b744979fca9f7ac16351b3\", \"dateChecked\": \"2020-03-16T20:00:00Z\", \"death\": 2.0, \"hospitalized\": null, \"total\": 318, \"totalTestResults\": 298, \"posNeg\": 298, \"fips\": 34, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 80.0, \"totalTestResultsIncrease\": 80.0, \"ratio\": 0.559748427672956, \"sinceDay0\": 0}, {\"index\": 986, \"date\": \"2020-03-17T00:00:00\", \"state\": \"NJ\", \"positive\": 267.0, \"negative\": 163.0, \"pending\": 55.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"245514c59d21a39ce3fcce7909de2f2aea8521fd\", \"dateChecked\": \"2020-03-17T20:00:00Z\", \"death\": 3.0, \"hospitalized\": null, \"total\": 485, \"totalTestResults\": 430, \"posNeg\": 430, \"fips\": 34, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 43.0, \"positiveIncrease\": 89.0, \"totalTestResultsIncrease\": 132.0, \"ratio\": 0.5505154639175258, \"sinceDay0\": 1}, {\"index\": 930, \"date\": \"2020-03-18T00:00:00\", \"state\": \"NJ\", \"positive\": 427.0, \"negative\": 190.0, \"pending\": 21.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"cd982339aab35ead35248c6c7d3f97f69aedc106\", \"dateChecked\": \"2020-03-18T20:00:00Z\", \"death\": 5.0, \"hospitalized\": null, \"total\": 638, \"totalTestResults\": 617, \"posNeg\": 617, \"fips\": 34, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 27.0, \"positiveIncrease\": 160.0, \"totalTestResultsIncrease\": 187.0, \"ratio\": 0.6692789968652038, \"sinceDay0\": 2}, {\"index\": 874, \"date\": \"2020-03-19T00:00:00\", \"state\": \"NJ\", \"positive\": 742.0, \"negative\": 210.0, \"pending\": 74.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"15bfbbb8a65d6a6c68720f955ec0c0cbbc4e133f\", \"dateChecked\": \"2020-03-19T20:00:00Z\", \"death\": 9.0, \"hospitalized\": null, \"total\": 1026, \"totalTestResults\": 952, \"posNeg\": 952, \"fips\": 34, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 20.0, \"positiveIncrease\": 315.0, \"totalTestResultsIncrease\": 335.0, \"ratio\": 0.723196881091618, \"sinceDay0\": 3}, {\"index\": 818, \"date\": \"2020-03-20T00:00:00\", \"state\": \"NJ\", \"positive\": 890.0, \"negative\": 264.0, \"pending\": 86.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"42bf8537b56da3791417f26b573d6c19e37af697\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 11.0, \"hospitalized\": null, \"total\": 1240, \"totalTestResults\": 1154, \"posNeg\": 1154, \"fips\": 34, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 54.0, \"positiveIncrease\": 148.0, \"totalTestResultsIncrease\": 202.0, \"ratio\": 0.717741935483871, \"sinceDay0\": 4}, {\"index\": 762, \"date\": \"2020-03-21T00:00:00\", \"state\": \"NJ\", \"positive\": 1327.0, \"negative\": 294.0, \"pending\": 40.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"619c8150d5592b43e0b0c8a542f3ce57862c85b9\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 16.0, \"hospitalized\": null, \"total\": 1661, \"totalTestResults\": 1621, \"posNeg\": 1621, \"fips\": 34, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 30.0, \"positiveIncrease\": 437.0, \"totalTestResultsIncrease\": 467.0, \"ratio\": 0.7989163154726069, \"sinceDay0\": 5}, {\"index\": 706, \"date\": \"2020-03-22T00:00:00\", \"state\": \"NJ\", \"positive\": 1914.0, \"negative\": 327.0, \"pending\": 49.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"facc3296d95ab4cdeff98dca4f6628c0c6c8a193\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 20.0, \"hospitalized\": null, \"total\": 2290, \"totalTestResults\": 2241, \"posNeg\": 2241, \"fips\": 34, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 33.0, \"positiveIncrease\": 587.0, \"totalTestResultsIncrease\": 620.0, \"ratio\": 0.8358078602620087, \"sinceDay0\": 6}, {\"index\": 650, \"date\": \"2020-03-23T00:00:00\", \"state\": \"NJ\", \"positive\": 2844.0, \"negative\": 359.0, \"pending\": 94.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"31b24615de8d15c0b6de14c1d8d6d4f06708f56f\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 27.0, \"hospitalized\": null, \"total\": 3297, \"totalTestResults\": 3203, \"posNeg\": 3203, \"fips\": 34, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 32.0, \"positiveIncrease\": 930.0, \"totalTestResultsIncrease\": 962.0, \"ratio\": 0.8626023657870792, \"sinceDay0\": 7}, {\"index\": 594, \"date\": \"2020-03-24T00:00:00\", \"state\": \"NJ\", \"positive\": 3675.0, \"negative\": 8325.0, \"pending\": 45.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"3298b6676fb93503cc4695dfd502db188db72854\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 44.0, \"hospitalized\": null, \"total\": 12045, \"totalTestResults\": 12000, \"posNeg\": 12000, \"fips\": 34, \"deathIncrease\": 17.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 7966.0, \"positiveIncrease\": 831.0, \"totalTestResultsIncrease\": 8797.0, \"ratio\": 0.30510585305105853, \"sinceDay0\": 8}, {\"index\": 538, \"date\": \"2020-03-25T00:00:00\", \"state\": \"NJ\", \"positive\": 4402.0, \"negative\": 10452.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"db32961abdc494e4610cb9201238755c5dbe9c9d\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 62.0, \"hospitalized\": null, \"total\": 14854, \"totalTestResults\": 14854, \"posNeg\": 14854, \"fips\": 34, \"deathIncrease\": 18.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2127.0, \"positiveIncrease\": 727.0, \"totalTestResultsIncrease\": 2854.0, \"ratio\": 0.2963511512050626, \"sinceDay0\": 9}, {\"index\": 482, \"date\": \"2020-03-26T00:00:00\", \"state\": \"NJ\", \"positive\": 6876.0, \"negative\": 13661.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"71a03230e8915d5c02cdc6c56ad1fb7e389070b8\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 81.0, \"hospitalized\": null, \"total\": 20537, \"totalTestResults\": 20537, \"posNeg\": 20537, \"fips\": 34, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3209.0, \"positiveIncrease\": 2474.0, \"totalTestResultsIncrease\": 5683.0, \"ratio\": 0.33481034230900325, \"sinceDay0\": 10}, {\"index\": 426, \"date\": \"2020-03-27T00:00:00\", \"state\": \"NJ\", \"positive\": 8825.0, \"negative\": 16547.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4f710137c0893063153d8fe5d0e84c4ea0db8bc4\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 108.0, \"hospitalized\": null, \"total\": 25372, \"totalTestResults\": 25372, \"posNeg\": 25372, \"fips\": 34, \"deathIncrease\": 27.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2886.0, \"positiveIncrease\": 1949.0, \"totalTestResultsIncrease\": 4835.0, \"ratio\": 0.3478243733249251, \"sinceDay0\": 11}, {\"index\": 370, \"date\": \"2020-03-28T00:00:00\", \"state\": \"NJ\", \"positive\": 11124.0, \"negative\": 19386.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c6cebd8484d76c0eb029b134ec375b577bb3c0fa\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 140.0, \"hospitalized\": null, \"total\": 30510, \"totalTestResults\": 30510, \"posNeg\": 30510, \"fips\": 34, \"deathIncrease\": 32.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2839.0, \"positiveIncrease\": 2299.0, \"totalTestResultsIncrease\": 5138.0, \"ratio\": 0.36460176991150445, \"sinceDay0\": 12}, {\"index\": 314, \"date\": \"2020-03-29T00:00:00\", \"state\": \"NJ\", \"positive\": 13386.0, \"negative\": 22216.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"818cb76f7734f5c5a61d07feec6d212f8717396e\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 161.0, \"hospitalized\": null, \"total\": 35602, \"totalTestResults\": 35602, \"posNeg\": 35602, \"fips\": 34, \"deathIncrease\": 21.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2830.0, \"positiveIncrease\": 2262.0, \"totalTestResultsIncrease\": 5092.0, \"ratio\": 0.3759901129150048, \"sinceDay0\": 13}, {\"index\": 258, \"date\": \"2020-03-30T00:00:00\", \"state\": \"NJ\", \"positive\": 16636.0, \"negative\": 25224.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0d0e43bb75f7d3018b323178e9b3ff278f6f6451\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 198.0, \"hospitalized\": null, \"total\": 41860, \"totalTestResults\": 41860, \"posNeg\": 41860, \"fips\": 34, \"deathIncrease\": 37.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3008.0, \"positiveIncrease\": 3250.0, \"totalTestResultsIncrease\": 6258.0, \"ratio\": 0.3974199713330148, \"sinceDay0\": 14}, {\"index\": 202, \"date\": \"2020-03-31T00:00:00\", \"state\": \"NJ\", \"positive\": 18696.0, \"negative\": 27077.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f358cd5dac93690b31a9d665dcb3fb4b046eca97\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 267.0, \"hospitalized\": null, \"total\": 45773, \"totalTestResults\": 45773, \"posNeg\": 45773, \"fips\": 34, \"deathIncrease\": 69.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1853.0, \"positiveIncrease\": 2060.0, \"totalTestResultsIncrease\": 3913.0, \"ratio\": 0.4084503965219671, \"sinceDay0\": 15}, {\"index\": 146, \"date\": \"2020-04-01T00:00:00\", \"state\": \"NJ\", \"positive\": 22255.0, \"negative\": 30387.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c70a3b11fb70789f402a5509b3c0000548c2587b\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 355.0, \"hospitalized\": null, \"total\": 52642, \"totalTestResults\": 52642, \"posNeg\": 52642, \"fips\": 34, \"deathIncrease\": 88.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3310.0, \"positiveIncrease\": 3559.0, \"totalTestResultsIncrease\": 6869.0, \"ratio\": 0.42276129326393375, \"sinceDay0\": 16}, {\"index\": 90, \"date\": \"2020-04-02T00:00:00\", \"state\": \"NJ\", \"positive\": 25590.0, \"negative\": 33520.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1350231ad51ae6e7e6b55243f9566d17a5460703\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 537.0, \"hospitalized\": null, \"total\": 59110, \"totalTestResults\": 59110, \"posNeg\": 59110, \"fips\": 34, \"deathIncrease\": 182.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3133.0, \"positiveIncrease\": 3335.0, \"totalTestResultsIncrease\": 6468.0, \"ratio\": 0.43292167145998983, \"sinceDay0\": 17}, {\"index\": 34, \"date\": \"2020-04-03T00:00:00\", \"state\": \"NJ\", \"positive\": 29895.0, \"negative\": 37608.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f3e8ae961e46883c951b2ac5ddd22f46055c6af3\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 646.0, \"hospitalized\": null, \"total\": 67503, \"totalTestResults\": 67503, \"posNeg\": 67503, \"fips\": 34, \"deathIncrease\": 109.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4088.0, \"positiveIncrease\": 4305.0, \"totalTestResultsIncrease\": 8393.0, \"ratio\": 0.442869205813075, \"sinceDay0\": 18}, {\"index\": 539, \"date\": \"2020-03-25T00:00:00\", \"state\": \"NM\", \"positive\": 100.0, \"negative\": 6742.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b1128704739dbdde58897b48092a9f580fa1ee73\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 1.0, \"hospitalized\": null, \"total\": 6842, \"totalTestResults\": 6842, \"posNeg\": 6842, \"fips\": 35, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 852.0, \"positiveIncrease\": 17.0, \"totalTestResultsIncrease\": 869.0, \"ratio\": 0.014615609470914937, \"sinceDay0\": 0}, {\"index\": 483, \"date\": \"2020-03-26T00:00:00\", \"state\": \"NM\", \"positive\": 112.0, \"negative\": 7681.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1e43be6fccfd53482152b6f0032c9f5380179480\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 1.0, \"hospitalized\": null, \"total\": 7793, \"totalTestResults\": 7793, \"posNeg\": 7793, \"fips\": 35, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 939.0, \"positiveIncrease\": 12.0, \"totalTestResultsIncrease\": 951.0, \"ratio\": 0.014371872192993712, \"sinceDay0\": 1}, {\"index\": 427, \"date\": \"2020-03-27T00:00:00\", \"state\": \"NM\", \"positive\": 136.0, \"negative\": 8377.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a96718b15dd4f8b2bf0aa0cf64145d513d35f6e6\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 1.0, \"hospitalized\": null, \"total\": 8513, \"totalTestResults\": 8513, \"posNeg\": 8513, \"fips\": 35, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 696.0, \"positiveIncrease\": 24.0, \"totalTestResultsIncrease\": 720.0, \"ratio\": 0.01597556678021849, \"sinceDay0\": 2}, {\"index\": 371, \"date\": \"2020-03-28T00:00:00\", \"state\": \"NM\", \"positive\": 191.0, \"negative\": 9196.0, \"pending\": null, \"hospitalizedCurrently\": 17.0, \"hospitalizedCumulative\": 17.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b993009444826db35c4e34917abeeb36c139fe36\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 1.0, \"hospitalized\": 17.0, \"total\": 9387, \"totalTestResults\": 9387, \"posNeg\": 9387, \"fips\": 35, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 17.0, \"negativeIncrease\": 819.0, \"positiveIncrease\": 55.0, \"totalTestResultsIncrease\": 874.0, \"ratio\": 0.020347288803664643, \"sinceDay0\": 3}, {\"index\": 315, \"date\": \"2020-03-29T00:00:00\", \"state\": \"NM\", \"positive\": 237.0, \"negative\": 10769.0, \"pending\": null, \"hospitalizedCurrently\": 19.0, \"hospitalizedCumulative\": 19.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 2.0, \"hash\": \"195ec3c6ab47d477f8aa0013a5e40f1ce8a2af25\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 2.0, \"hospitalized\": 19.0, \"total\": 11006, \"totalTestResults\": 11006, \"posNeg\": 11006, \"fips\": 35, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 2.0, \"negativeIncrease\": 1573.0, \"positiveIncrease\": 46.0, \"totalTestResultsIncrease\": 1619.0, \"ratio\": 0.02153370888606215, \"sinceDay0\": 4}, {\"index\": 259, \"date\": \"2020-03-30T00:00:00\", \"state\": \"NM\", \"positive\": 237.0, \"negative\": 10942.0, \"pending\": null, \"hospitalizedCurrently\": 22.0, \"hospitalizedCumulative\": 22.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 26.0, \"hash\": \"e5c401be427ed6426e5369712551d5d1918261be\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 2.0, \"hospitalized\": 22.0, \"total\": 11179, \"totalTestResults\": 11179, \"posNeg\": 11179, \"fips\": 35, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 3.0, \"negativeIncrease\": 173.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 173.0, \"ratio\": 0.02120046515788532, \"sinceDay0\": 5}, {\"index\": 203, \"date\": \"2020-03-31T00:00:00\", \"state\": \"NM\", \"positive\": 281.0, \"negative\": 12246.0, \"pending\": null, \"hospitalizedCurrently\": 22.0, \"hospitalizedCumulative\": 22.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 26.0, \"hash\": \"f9d7697d0d8c2f7b650b831591b1a36a35481630\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 4.0, \"hospitalized\": 22.0, \"total\": 12527, \"totalTestResults\": 12527, \"posNeg\": 12527, \"fips\": 35, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1304.0, \"positiveIncrease\": 44.0, \"totalTestResultsIncrease\": 1348.0, \"ratio\": 0.02243154785662968, \"sinceDay0\": 6}, {\"index\": 147, \"date\": \"2020-04-01T00:00:00\", \"state\": \"NM\", \"positive\": 315.0, \"negative\": 12925.0, \"pending\": null, \"hospitalizedCurrently\": 24.0, \"hospitalizedCumulative\": 24.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 26.0, \"hash\": \"555b761980125a8119c4d929f41f1f3a9e073a3f\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 5.0, \"hospitalized\": 24.0, \"total\": 13240, \"totalTestResults\": 13240, \"posNeg\": 13240, \"fips\": 35, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 2.0, \"negativeIncrease\": 679.0, \"positiveIncrease\": 34.0, \"totalTestResultsIncrease\": 713.0, \"ratio\": 0.02379154078549849, \"sinceDay0\": 7}, {\"index\": 91, \"date\": \"2020-04-02T00:00:00\", \"state\": \"NM\", \"positive\": 363.0, \"negative\": 13648.0, \"pending\": null, \"hospitalizedCurrently\": 31.0, \"hospitalizedCumulative\": 31.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 26.0, \"hash\": \"d4cbc6f4f974db9eb90a5c3f5df1b80235cb9e43\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 6.0, \"hospitalized\": 31.0, \"total\": 14011, \"totalTestResults\": 14011, \"posNeg\": 14011, \"fips\": 35, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 7.0, \"negativeIncrease\": 723.0, \"positiveIncrease\": 48.0, \"totalTestResultsIncrease\": 771.0, \"ratio\": 0.02590821497394904, \"sinceDay0\": 8}, {\"index\": 35, \"date\": \"2020-04-03T00:00:00\", \"state\": \"NM\", \"positive\": 403.0, \"negative\": 14375.0, \"pending\": null, \"hospitalizedCurrently\": 31.0, \"hospitalizedCumulative\": 31.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 26.0, \"hash\": \"041cca5c10a2fa3cc756d299a62df8e94fc60d2f\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 7.0, \"hospitalized\": 31.0, \"total\": 14778, \"totalTestResults\": 14778, \"posNeg\": 14778, \"fips\": 35, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 727.0, \"positiveIncrease\": 40.0, \"totalTestResultsIncrease\": 767.0, \"ratio\": 0.02727026661253214, \"sinceDay0\": 9}, {\"index\": 820, \"date\": \"2020-03-20T00:00:00\", \"state\": \"NV\", \"positive\": 109.0, \"negative\": 1992.0, \"pending\": -3.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"733cfe29c859178a886f5eb2a74805197f4f44dc\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 1.0, \"hospitalized\": null, \"total\": 2098, \"totalTestResults\": 2101, \"posNeg\": 2101, \"fips\": 32, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 366.0, \"positiveIncrease\": 14.0, \"totalTestResultsIncrease\": 380.0, \"ratio\": 0.051954242135367014, \"sinceDay0\": 0}, {\"index\": 764, \"date\": \"2020-03-21T00:00:00\", \"state\": \"NV\", \"positive\": 124.0, \"negative\": 2384.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c0c98568c4165cc83bc5ee07b50589fdfb35f7e4\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 2.0, \"hospitalized\": null, \"total\": 2508, \"totalTestResults\": 2508, \"posNeg\": 2508, \"fips\": 32, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 392.0, \"positiveIncrease\": 15.0, \"totalTestResultsIncrease\": 407.0, \"ratio\": 0.049441786283891544, \"sinceDay0\": 1}, {\"index\": 708, \"date\": \"2020-03-22T00:00:00\", \"state\": \"NV\", \"positive\": 190.0, \"negative\": 2448.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0dc69efb9cfc8c62e6017e048e94bd390c94d17a\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 2.0, \"hospitalized\": null, \"total\": 2638, \"totalTestResults\": 2638, \"posNeg\": 2638, \"fips\": 32, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 64.0, \"positiveIncrease\": 66.0, \"totalTestResultsIncrease\": 130.0, \"ratio\": 0.07202426080363912, \"sinceDay0\": 2}, {\"index\": 652, \"date\": \"2020-03-23T00:00:00\", \"state\": \"NV\", \"positive\": 245.0, \"negative\": 3490.0, \"pending\": 0.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"2aab20307742f5fb55e14b7dda981537b641addd\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 4.0, \"hospitalized\": null, \"total\": 3735, \"totalTestResults\": 3735, \"posNeg\": 3735, \"fips\": 32, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1042.0, \"positiveIncrease\": 55.0, \"totalTestResultsIncrease\": 1097.0, \"ratio\": 0.06559571619812583, \"sinceDay0\": 3}, {\"index\": 596, \"date\": \"2020-03-24T00:00:00\", \"state\": \"NV\", \"positive\": 278.0, \"negative\": 3954.0, \"pending\": 0.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"235104a86eaec318d30593b04bff7a986b4292da\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 4.0, \"hospitalized\": null, \"total\": 4232, \"totalTestResults\": 4232, \"posNeg\": 4232, \"fips\": 32, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 464.0, \"positiveIncrease\": 33.0, \"totalTestResultsIncrease\": 497.0, \"ratio\": 0.06568998109640832, \"sinceDay0\": 4}, {\"index\": 540, \"date\": \"2020-03-25T00:00:00\", \"state\": \"NV\", \"positive\": 321.0, \"negative\": 4251.0, \"pending\": 0.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"00de92ade569ceeb91261a39215a34cd9d7876fb\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 6.0, \"hospitalized\": null, \"total\": 4572, \"totalTestResults\": 4572, \"posNeg\": 4572, \"fips\": 32, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 297.0, \"positiveIncrease\": 43.0, \"totalTestResultsIncrease\": 340.0, \"ratio\": 0.07020997375328084, \"sinceDay0\": 5}, {\"index\": 484, \"date\": \"2020-03-26T00:00:00\", \"state\": \"NV\", \"positive\": 420.0, \"negative\": 4697.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8439b92c8ef2ecd1b055e3ed1acbab7bedd90001\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 10.0, \"hospitalized\": null, \"total\": 5117, \"totalTestResults\": 5117, \"posNeg\": 5117, \"fips\": 32, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 446.0, \"positiveIncrease\": 99.0, \"totalTestResultsIncrease\": 545.0, \"ratio\": 0.08207934336525308, \"sinceDay0\": 6}, {\"index\": 428, \"date\": \"2020-03-27T00:00:00\", \"state\": \"NV\", \"positive\": 535.0, \"negative\": 6161.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c45254e1c7f4cc7635c3cc42cc996a47b745d36c\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 10.0, \"hospitalized\": null, \"total\": 6696, \"totalTestResults\": 6696, \"posNeg\": 6696, \"fips\": 32, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1464.0, \"positiveIncrease\": 115.0, \"totalTestResultsIncrease\": 1579.0, \"ratio\": 0.0798984468339307, \"sinceDay0\": 7}, {\"index\": 372, \"date\": \"2020-03-28T00:00:00\", \"state\": \"NV\", \"positive\": 621.0, \"negative\": 7901.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"38aee6610ca54e785d7593c3916d7256e0ac2a9b\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 10.0, \"hospitalized\": null, \"total\": 8522, \"totalTestResults\": 8522, \"posNeg\": 8522, \"fips\": 32, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1740.0, \"positiveIncrease\": 86.0, \"totalTestResultsIncrease\": 1826.0, \"ratio\": 0.07287021825862473, \"sinceDay0\": 8}, {\"index\": 316, \"date\": \"2020-03-29T00:00:00\", \"state\": \"NV\", \"positive\": 738.0, \"negative\": 8412.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0c74530736aea27f85556493e8fa89eb8b417763\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 14.0, \"hospitalized\": null, \"total\": 9150, \"totalTestResults\": 9150, \"posNeg\": 9150, \"fips\": 32, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 511.0, \"positiveIncrease\": 117.0, \"totalTestResultsIncrease\": 628.0, \"ratio\": 0.08065573770491803, \"sinceDay0\": 9}, {\"index\": 260, \"date\": \"2020-03-30T00:00:00\", \"state\": \"NV\", \"positive\": 1008.0, \"negative\": 10207.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"34628b797fa0cbc9196833ea89dc685929e71e86\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 15.0, \"hospitalized\": null, \"total\": 11215, \"totalTestResults\": 11215, \"posNeg\": 11215, \"fips\": 32, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1795.0, \"positiveIncrease\": 270.0, \"totalTestResultsIncrease\": 2065.0, \"ratio\": 0.08987962550156041, \"sinceDay0\": 10}, {\"index\": 204, \"date\": \"2020-03-31T00:00:00\", \"state\": \"NV\", \"positive\": 1113.0, \"negative\": 10681.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"75bc5c5fe829f18065e4706cf35ef2994fb69f7b\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 17.0, \"hospitalized\": null, \"total\": 11794, \"totalTestResults\": 11794, \"posNeg\": 11794, \"fips\": 32, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 474.0, \"positiveIncrease\": 105.0, \"totalTestResultsIncrease\": 579.0, \"ratio\": 0.09437001865355266, \"sinceDay0\": 11}, {\"index\": 148, \"date\": \"2020-04-01T00:00:00\", \"state\": \"NV\", \"positive\": 1279.0, \"negative\": 11519.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"99ca8c448bcd3a57ffe6454db6a4b2533447a96b\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 26.0, \"hospitalized\": null, \"total\": 12798, \"totalTestResults\": 12798, \"posNeg\": 12798, \"fips\": 32, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 838.0, \"positiveIncrease\": 166.0, \"totalTestResultsIncrease\": 1004.0, \"ratio\": 0.09993749023284888, \"sinceDay0\": 12}, {\"index\": 92, \"date\": \"2020-04-02T00:00:00\", \"state\": \"NV\", \"positive\": 1458.0, \"negative\": 12588.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ac281047995939a05d81fab70153c5a347c9a93f\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 38.0, \"hospitalized\": null, \"total\": 14046, \"totalTestResults\": 14046, \"posNeg\": 14046, \"fips\": 32, \"deathIncrease\": 12.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1069.0, \"positiveIncrease\": 179.0, \"totalTestResultsIncrease\": 1248.0, \"ratio\": 0.10380179410508329, \"sinceDay0\": 13}, {\"index\": 36, \"date\": \"2020-04-03T00:00:00\", \"state\": \"NV\", \"positive\": 1514.0, \"negative\": 13018.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b06428c9678bd268d2992c491635ac82ec96bf35\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 43.0, \"hospitalized\": null, \"total\": 14532, \"totalTestResults\": 14532, \"posNeg\": 14532, \"fips\": 32, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 430.0, \"positiveIncrease\": 56.0, \"totalTestResultsIncrease\": 486.0, \"ratio\": 0.10418387007982384, \"sinceDay0\": 14}, {\"index\": 1455, \"date\": \"2020-03-08T00:00:00\", \"state\": \"NY\", \"positive\": 105.0, \"negative\": 92.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f6d3b78f41cadeaf08e72f35692a9619d70aad07\", \"dateChecked\": \"2020-03-08T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 197, \"totalTestResults\": 197, \"posNeg\": 197, \"fips\": 36, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 29.0, \"totalTestResultsIncrease\": 29.0, \"ratio\": 0.5329949238578681, \"sinceDay0\": 0}, {\"index\": 1404, \"date\": \"2020-03-09T00:00:00\", \"state\": \"NY\", \"positive\": 142.0, \"negative\": 92.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"260a070d28ed40a35e8b31aca5f4ab3352dc9ba8\", \"dateChecked\": \"2020-03-09T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 234, \"totalTestResults\": 234, \"posNeg\": 234, \"fips\": 36, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 37.0, \"totalTestResultsIncrease\": 37.0, \"ratio\": 0.6068376068376068, \"sinceDay0\": 1}, {\"index\": 1353, \"date\": \"2020-03-10T00:00:00\", \"state\": \"NY\", \"positive\": 173.0, \"negative\": 92.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"193f85893cecb99d063a03060bc4802d2d6458f1\", \"dateChecked\": \"2020-03-10T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 265, \"totalTestResults\": 265, \"posNeg\": 265, \"fips\": 36, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 31.0, \"totalTestResultsIncrease\": 31.0, \"ratio\": 0.6528301886792452, \"sinceDay0\": 2}, {\"index\": 1302, \"date\": \"2020-03-11T00:00:00\", \"state\": \"NY\", \"positive\": 216.0, \"negative\": 92.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"6fbded3854324c39522ab7fdb01d2087f60e2d2b\", \"dateChecked\": \"2020-03-11T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 308, \"totalTestResults\": 308, \"posNeg\": 308, \"fips\": 36, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 43.0, \"totalTestResultsIncrease\": 43.0, \"ratio\": 0.7012987012987013, \"sinceDay0\": 3}, {\"index\": 1251, \"date\": \"2020-03-12T00:00:00\", \"state\": \"NY\", \"positive\": 216.0, \"negative\": 92.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"78ea2217b81c0eba25ec04b1196199ad81793ead\", \"dateChecked\": \"2020-03-12T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 308, \"totalTestResults\": 308, \"posNeg\": 308, \"fips\": 36, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.7012987012987013, \"sinceDay0\": 4}, {\"index\": 1200, \"date\": \"2020-03-13T00:00:00\", \"state\": \"NY\", \"positive\": 421.0, \"negative\": 2779.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a0a0e2997c411014ef2cd98b9502387730f585c7\", \"dateChecked\": \"2020-03-13T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 3200, \"totalTestResults\": 3200, \"posNeg\": 3200, \"fips\": 36, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2687.0, \"positiveIncrease\": 205.0, \"totalTestResultsIncrease\": 2892.0, \"ratio\": 0.1315625, \"sinceDay0\": 5}, {\"index\": 1149, \"date\": \"2020-03-14T00:00:00\", \"state\": \"NY\", \"positive\": 524.0, \"negative\": 2779.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f28c39ca671c26d022ff2556494ad8767765eb93\", \"dateChecked\": \"2020-03-14T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 3303, \"totalTestResults\": 3303, \"posNeg\": 3303, \"fips\": 36, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 103.0, \"totalTestResultsIncrease\": 103.0, \"ratio\": 0.15864365728125945, \"sinceDay0\": 6}, {\"index\": 1098, \"date\": \"2020-03-15T00:00:00\", \"state\": \"NY\", \"positive\": 729.0, \"negative\": 4543.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"963f632b5d1577cd5cf9b6c332a912c2fdebea16\", \"dateChecked\": \"2020-03-15T20:00:00Z\", \"death\": 3.0, \"hospitalized\": null, \"total\": 5272, \"totalTestResults\": 5272, \"posNeg\": 5272, \"fips\": 36, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1764.0, \"positiveIncrease\": 205.0, \"totalTestResultsIncrease\": 1969.0, \"ratio\": 0.13827769347496208, \"sinceDay0\": 7}, {\"index\": 1045, \"date\": \"2020-03-16T00:00:00\", \"state\": \"NY\", \"positive\": 950.0, \"negative\": 4543.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"994a65ba75be3681f76ff4612eb8fde85cff81cd\", \"dateChecked\": \"2020-03-16T20:00:00Z\", \"death\": 7.0, \"hospitalized\": null, \"total\": 5493, \"totalTestResults\": 5493, \"posNeg\": 5493, \"fips\": 36, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 221.0, \"totalTestResultsIncrease\": 221.0, \"ratio\": 0.17294738758419806, \"sinceDay0\": 8}, {\"index\": 989, \"date\": \"2020-03-17T00:00:00\", \"state\": \"NY\", \"positive\": 1700.0, \"negative\": 5506.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a2d96e7a962926fa3165aef038360c097b6be4ce\", \"dateChecked\": \"2020-03-17T20:00:00Z\", \"death\": 7.0, \"hospitalized\": null, \"total\": 7206, \"totalTestResults\": 7206, \"posNeg\": 7206, \"fips\": 36, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 963.0, \"positiveIncrease\": 750.0, \"totalTestResultsIncrease\": 1713.0, \"ratio\": 0.23591451568137664, \"sinceDay0\": 9}, {\"index\": 933, \"date\": \"2020-03-18T00:00:00\", \"state\": \"NY\", \"positive\": 2382.0, \"negative\": 12215.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"65a08e6a0f81bd2c4bbc9988a17f0892d2ec4d35\", \"dateChecked\": \"2020-03-18T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 14597, \"totalTestResults\": 14597, \"posNeg\": 14597, \"fips\": 36, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 6709.0, \"positiveIncrease\": 682.0, \"totalTestResultsIncrease\": 7391.0, \"ratio\": 0.1631842159347811, \"sinceDay0\": 10}, {\"index\": 877, \"date\": \"2020-03-19T00:00:00\", \"state\": \"NY\", \"positive\": 4152.0, \"negative\": 18132.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"2eabc9b73139066e3613021b1e9c9deaf8af733c\", \"dateChecked\": \"2020-03-19T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 22284, \"totalTestResults\": 22284, \"posNeg\": 22284, \"fips\": 36, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5917.0, \"positiveIncrease\": 1770.0, \"totalTestResultsIncrease\": 7687.0, \"ratio\": 0.18632202477113624, \"sinceDay0\": 11}, {\"index\": 821, \"date\": \"2020-03-20T00:00:00\", \"state\": \"NY\", \"positive\": 7102.0, \"negative\": 25325.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5293b5c5920709d4f3cf66b901621a61a47d0d23\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 35.0, \"hospitalized\": null, \"total\": 32427, \"totalTestResults\": 32427, \"posNeg\": 32427, \"fips\": 36, \"deathIncrease\": 23.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 7193.0, \"positiveIncrease\": 2950.0, \"totalTestResultsIncrease\": 10143.0, \"ratio\": 0.21901501834890677, \"sinceDay0\": 12}, {\"index\": 765, \"date\": \"2020-03-21T00:00:00\", \"state\": \"NY\", \"positive\": 10356.0, \"negative\": 35081.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1603.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"eb983c3fb4fc2d7f3c2c1250578379f502787c29\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 44.0, \"hospitalized\": 1603.0, \"total\": 45437, \"totalTestResults\": 45437, \"posNeg\": 45437, \"fips\": 36, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 1603.0, \"negativeIncrease\": 9756.0, \"positiveIncrease\": 3254.0, \"totalTestResultsIncrease\": 13010.0, \"ratio\": 0.2279199771111649, \"sinceDay0\": 13}, {\"index\": 709, \"date\": \"2020-03-22T00:00:00\", \"state\": \"NY\", \"positive\": 15168.0, \"negative\": 46233.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1974.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0df3f76e6407f511b0c5bf4f5647cce8f407250e\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 114.0, \"hospitalized\": 1974.0, \"total\": 61401, \"totalTestResults\": 61401, \"posNeg\": 61401, \"fips\": 36, \"deathIncrease\": 70.0, \"hospitalizedIncrease\": 371.0, \"negativeIncrease\": 11152.0, \"positiveIncrease\": 4812.0, \"totalTestResultsIncrease\": 15964.0, \"ratio\": 0.24703180729955537, \"sinceDay0\": 14}, {\"index\": 653, \"date\": \"2020-03-23T00:00:00\", \"state\": \"NY\", \"positive\": 20875.0, \"negative\": 57414.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 2635.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"40440cdc2bc6ecd1d88040f01ebbdcb130a33257\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 114.0, \"hospitalized\": 2635.0, \"total\": 78289, \"totalTestResults\": 78289, \"posNeg\": 78289, \"fips\": 36, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 661.0, \"negativeIncrease\": 11181.0, \"positiveIncrease\": 5707.0, \"totalTestResultsIncrease\": 16888.0, \"ratio\": 0.2666402687478445, \"sinceDay0\": 15}, {\"index\": 597, \"date\": \"2020-03-24T00:00:00\", \"state\": \"NY\", \"positive\": 25665.0, \"negative\": 65605.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 3234.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ea3323c8187b8ff5574d3576f83791e01dd1521f\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 210.0, \"hospitalized\": 3234.0, \"total\": 91270, \"totalTestResults\": 91270, \"posNeg\": 91270, \"fips\": 36, \"deathIncrease\": 96.0, \"hospitalizedIncrease\": 599.0, \"negativeIncrease\": 8191.0, \"positiveIncrease\": 4790.0, \"totalTestResultsIncrease\": 12981.0, \"ratio\": 0.2811986413936671, \"sinceDay0\": 16}, {\"index\": 541, \"date\": \"2020-03-25T00:00:00\", \"state\": \"NY\", \"positive\": 30811.0, \"negative\": 72668.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 3805.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"332b18596170cd3e35617cfba48a5723aa2ec8f3\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 285.0, \"hospitalized\": 3805.0, \"total\": 103479, \"totalTestResults\": 103479, \"posNeg\": 103479, \"fips\": 36, \"deathIncrease\": 75.0, \"hospitalizedIncrease\": 571.0, \"negativeIncrease\": 7063.0, \"positiveIncrease\": 5146.0, \"totalTestResultsIncrease\": 12209.0, \"ratio\": 0.2977512345500053, \"sinceDay0\": 17}, {\"index\": 485, \"date\": \"2020-03-26T00:00:00\", \"state\": \"NY\", \"positive\": 37258.0, \"negative\": 84846.0, \"pending\": null, \"hospitalizedCurrently\": 5327.0, \"hospitalizedCumulative\": 6844.0, \"inIcuCurrently\": 1290.0, \"inIcuCumulative\": 1290.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c9e5180c39aab68a5662116651d17a05f4e4b966\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 385.0, \"hospitalized\": 6844.0, \"total\": 122104, \"totalTestResults\": 122104, \"posNeg\": 122104, \"fips\": 36, \"deathIncrease\": 100.0, \"hospitalizedIncrease\": 3039.0, \"negativeIncrease\": 12178.0, \"positiveIncrease\": 6447.0, \"totalTestResultsIncrease\": 18625.0, \"ratio\": 0.3051333289654721, \"sinceDay0\": 18}, {\"index\": 429, \"date\": \"2020-03-27T00:00:00\", \"state\": \"NY\", \"positive\": 44635.0, \"negative\": 101118.0, \"pending\": null, \"hospitalizedCurrently\": 6481.0, \"hospitalizedCumulative\": 8526.0, \"inIcuCurrently\": 1583.0, \"inIcuCumulative\": 1583.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 2045.0, \"hash\": \"d7f2dd3fcfbabebfdaeaa0a19e5db38d94fb112a\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 519.0, \"hospitalized\": 8526.0, \"total\": 145753, \"totalTestResults\": 145753, \"posNeg\": 145753, \"fips\": 36, \"deathIncrease\": 134.0, \"hospitalizedIncrease\": 1682.0, \"negativeIncrease\": 16272.0, \"positiveIncrease\": 7377.0, \"totalTestResultsIncrease\": 23649.0, \"ratio\": 0.3062372644130824, \"sinceDay0\": 19}, {\"index\": 373, \"date\": \"2020-03-28T00:00:00\", \"state\": \"NY\", \"positive\": 52318.0, \"negative\": 103616.0, \"pending\": null, \"hospitalizedCurrently\": 7328.0, \"hospitalizedCumulative\": 10054.0, \"inIcuCurrently\": 1755.0, \"inIcuCumulative\": 1755.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 2726.0, \"hash\": \"7592db95575a5d4ef226ff6014283d8d85a0db52\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 728.0, \"hospitalized\": 10054.0, \"total\": 155934, \"totalTestResults\": 155934, \"posNeg\": 155934, \"fips\": 36, \"deathIncrease\": 209.0, \"hospitalizedIncrease\": 1528.0, \"negativeIncrease\": 2498.0, \"positiveIncrease\": 7683.0, \"totalTestResultsIncrease\": 10181.0, \"ratio\": 0.33551374299383074, \"sinceDay0\": 20}, {\"index\": 317, \"date\": \"2020-03-29T00:00:00\", \"state\": \"NY\", \"positive\": 59513.0, \"negative\": 112847.0, \"pending\": null, \"hospitalizedCurrently\": 8503.0, \"hospitalizedCumulative\": 12075.0, \"inIcuCurrently\": 2037.0, \"inIcuCumulative\": 2037.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 3572.0, \"hash\": \"b5656122e28105ae4788a0d68eabb1ef68a06287\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 965.0, \"hospitalized\": 12075.0, \"total\": 172360, \"totalTestResults\": 172360, \"posNeg\": 172360, \"fips\": 36, \"deathIncrease\": 237.0, \"hospitalizedIncrease\": 2021.0, \"negativeIncrease\": 9231.0, \"positiveIncrease\": 7195.0, \"totalTestResultsIncrease\": 16426.0, \"ratio\": 0.34528312833604086, \"sinceDay0\": 21}, {\"index\": 261, \"date\": \"2020-03-30T00:00:00\", \"state\": \"NY\", \"positive\": 66497.0, \"negative\": 119971.0, \"pending\": null, \"hospitalizedCurrently\": 9517.0, \"hospitalizedCumulative\": 13721.0, \"inIcuCurrently\": 2352.0, \"inIcuCumulative\": 2352.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 4204.0, \"hash\": \"a749060bc47c2573b505c13198673b348ed3cc2b\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 1218.0, \"hospitalized\": 13721.0, \"total\": 186468, \"totalTestResults\": 186468, \"posNeg\": 186468, \"fips\": 36, \"deathIncrease\": 253.0, \"hospitalizedIncrease\": 1646.0, \"negativeIncrease\": 7124.0, \"positiveIncrease\": 6984.0, \"totalTestResultsIncrease\": 14108.0, \"ratio\": 0.35661346719008086, \"sinceDay0\": 22}, {\"index\": 205, \"date\": \"2020-03-31T00:00:00\", \"state\": \"NY\", \"positive\": 75795.0, \"negative\": 129391.0, \"pending\": null, \"hospitalizedCurrently\": 10929.0, \"hospitalizedCumulative\": 15904.0, \"inIcuCurrently\": 2710.0, \"inIcuCumulative\": 2710.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 4975.0, \"hash\": \"a3afdea93fae4daf8073978749d736d46e9134c6\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 1550.0, \"hospitalized\": 15904.0, \"total\": 205186, \"totalTestResults\": 205186, \"posNeg\": 205186, \"fips\": 36, \"deathIncrease\": 332.0, \"hospitalizedIncrease\": 2183.0, \"negativeIncrease\": 9420.0, \"positiveIncrease\": 9298.0, \"totalTestResultsIncrease\": 18718.0, \"ratio\": 0.3693965475227355, \"sinceDay0\": 23}, {\"index\": 149, \"date\": \"2020-04-01T00:00:00\", \"state\": \"NY\", \"positive\": 83712.0, \"negative\": 137168.0, \"pending\": null, \"hospitalizedCurrently\": 12226.0, \"hospitalizedCumulative\": 18368.0, \"inIcuCurrently\": 3022.0, \"inIcuCumulative\": 3022.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 6142.0, \"hash\": \"bc022c8f01dbc1a4d1f046ebce21c18a7b42cfa6\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 1941.0, \"hospitalized\": 18368.0, \"total\": 220880, \"totalTestResults\": 220880, \"posNeg\": 220880, \"fips\": 36, \"deathIncrease\": 391.0, \"hospitalizedIncrease\": 2464.0, \"negativeIncrease\": 7777.0, \"positiveIncrease\": 7917.0, \"totalTestResultsIncrease\": 15694.0, \"ratio\": 0.3789931184353495, \"sinceDay0\": 24}, {\"index\": 93, \"date\": \"2020-04-02T00:00:00\", \"state\": \"NY\", \"positive\": 92381.0, \"negative\": 146584.0, \"pending\": null, \"hospitalizedCurrently\": 13383.0, \"hospitalizedCumulative\": 20817.0, \"inIcuCurrently\": 3396.0, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 7434.0, \"hash\": \"764d0566c27be04c416c502640d5fffbcb8cad26\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 2373.0, \"hospitalized\": 20817.0, \"total\": 238965, \"totalTestResults\": 238965, \"posNeg\": 238965, \"fips\": 36, \"deathIncrease\": 432.0, \"hospitalizedIncrease\": 2449.0, \"negativeIncrease\": 9416.0, \"positiveIncrease\": 8669.0, \"totalTestResultsIncrease\": 18085.0, \"ratio\": 0.3865879940577072, \"sinceDay0\": 25}, {\"index\": 37, \"date\": \"2020-04-03T00:00:00\", \"state\": \"NY\", \"positive\": 102863.0, \"negative\": 168139.0, \"pending\": null, \"hospitalizedCurrently\": 14810.0, \"hospitalizedCumulative\": 23696.0, \"inIcuCurrently\": 3731.0, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 8886.0, \"hash\": \"accc00cef8483cff65936c97844fa6aa44976324\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 2935.0, \"hospitalized\": 23696.0, \"total\": 271002, \"totalTestResults\": 271002, \"posNeg\": 271002, \"fips\": 36, \"deathIncrease\": 562.0, \"hospitalizedIncrease\": 2879.0, \"negativeIncrease\": 21555.0, \"positiveIncrease\": 10482.0, \"totalTestResultsIncrease\": 32037.0, \"ratio\": 0.3795654644615169, \"sinceDay0\": 26}, {\"index\": 878, \"date\": \"2020-03-19T00:00:00\", \"state\": \"OH\", \"positive\": 119.0, \"negative\": 140.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d5861e1be38df98f3ebf32584dad71eed414cc1a\", \"dateChecked\": \"2020-03-19T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 259, \"totalTestResults\": 259, \"posNeg\": 259, \"fips\": 39, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 31.0, \"totalTestResultsIncrease\": 31.0, \"ratio\": 0.4594594594594595, \"sinceDay0\": 0}, {\"index\": 822, \"date\": \"2020-03-20T00:00:00\", \"state\": \"OH\", \"positive\": 169.0, \"negative\": 140.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"def0867b0c16cbafd9afe098983af7d8e0badd4c\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 1.0, \"hospitalized\": null, \"total\": 309, \"totalTestResults\": 309, \"posNeg\": 309, \"fips\": 39, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 50.0, \"totalTestResultsIncrease\": 50.0, \"ratio\": 0.5469255663430421, \"sinceDay0\": 1}, {\"index\": 766, \"date\": \"2020-03-21T00:00:00\", \"state\": \"OH\", \"positive\": 247.0, \"negative\": 140.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 58.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"dd1dfcf33ceacdd2502013ab34d3156f97223334\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 3.0, \"hospitalized\": 58.0, \"total\": 387, \"totalTestResults\": 387, \"posNeg\": 387, \"fips\": 39, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 58.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 78.0, \"totalTestResultsIncrease\": 78.0, \"ratio\": 0.6382428940568475, \"sinceDay0\": 2}, {\"index\": 710, \"date\": \"2020-03-22T00:00:00\", \"state\": \"OH\", \"positive\": 351.0, \"negative\": 140.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 83.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"39a31d5f0d426b43011e943369aa758634b79c97\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 3.0, \"hospitalized\": 83.0, \"total\": 491, \"totalTestResults\": 491, \"posNeg\": 491, \"fips\": 39, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 25.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 104.0, \"totalTestResultsIncrease\": 104.0, \"ratio\": 0.714867617107943, \"sinceDay0\": 3}, {\"index\": 654, \"date\": \"2020-03-23T00:00:00\", \"state\": \"OH\", \"positive\": 442.0, \"negative\": 140.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 104.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8966d12c492b67747a0413f8a0fb4ee97bc8b1d6\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 6.0, \"hospitalized\": 104.0, \"total\": 582, \"totalTestResults\": 582, \"posNeg\": 582, \"fips\": 39, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 21.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 91.0, \"totalTestResultsIncrease\": 91.0, \"ratio\": 0.7594501718213058, \"sinceDay0\": 4}, {\"index\": 598, \"date\": \"2020-03-24T00:00:00\", \"state\": \"OH\", \"positive\": 564.0, \"negative\": 140.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 145.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"63b5a22304ed473e83bfbf270a76c1032acea29e\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 8.0, \"hospitalized\": 145.0, \"total\": 704, \"totalTestResults\": 704, \"posNeg\": 704, \"fips\": 39, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 41.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 122.0, \"totalTestResultsIncrease\": 122.0, \"ratio\": 0.8011363636363636, \"sinceDay0\": 5}, {\"index\": 542, \"date\": \"2020-03-25T00:00:00\", \"state\": \"OH\", \"positive\": 704.0, \"negative\": 14060.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 182.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 74.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"37f081a41326a68ac5070d7ed52344f4839699b4\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 10.0, \"hospitalized\": 182.0, \"total\": 14764, \"totalTestResults\": 14764, \"posNeg\": 14764, \"fips\": 39, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 37.0, \"negativeIncrease\": 13920.0, \"positiveIncrease\": 140.0, \"totalTestResultsIncrease\": 14060.0, \"ratio\": 0.047683554592251425, \"sinceDay0\": 6}, {\"index\": 486, \"date\": \"2020-03-26T00:00:00\", \"state\": \"OH\", \"positive\": 867.0, \"negative\": 16449.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 223.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 91.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ec54f23b722a56fc6cb60ec0603c774a574b1b58\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 15.0, \"hospitalized\": 223.0, \"total\": 17316, \"totalTestResults\": 17316, \"posNeg\": 17316, \"fips\": 39, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 41.0, \"negativeIncrease\": 2389.0, \"positiveIncrease\": 163.0, \"totalTestResultsIncrease\": 2552.0, \"ratio\": 0.05006930006930007, \"sinceDay0\": 7}, {\"index\": 430, \"date\": \"2020-03-27T00:00:00\", \"state\": \"OH\", \"positive\": 1137.0, \"negative\": 19012.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 276.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 107.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"775347bbd54dbd3e3235391c7d2d5eb4c87cab2c\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 19.0, \"hospitalized\": 276.0, \"total\": 20149, \"totalTestResults\": 20149, \"posNeg\": 20149, \"fips\": 39, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 53.0, \"negativeIncrease\": 2563.0, \"positiveIncrease\": 270.0, \"totalTestResultsIncrease\": 2833.0, \"ratio\": 0.05642959948384535, \"sinceDay0\": 8}, {\"index\": 374, \"date\": \"2020-03-28T00:00:00\", \"state\": \"OH\", \"positive\": 1406.0, \"negative\": 19012.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 344.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 123.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e1ae2e6533d6476a00dce3fdf53a9d06d6df11c3\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 25.0, \"hospitalized\": 344.0, \"total\": 20418, \"totalTestResults\": 20418, \"posNeg\": 20418, \"fips\": 39, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 68.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 269.0, \"totalTestResultsIncrease\": 269.0, \"ratio\": 0.06886080909001861, \"sinceDay0\": 9}, {\"index\": 318, \"date\": \"2020-03-29T00:00:00\", \"state\": \"OH\", \"positive\": 1653.0, \"negative\": 19012.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 403.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 139.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"10c9da94683ad45dfb568422d04af2604ade7ca3\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 29.0, \"hospitalized\": 403.0, \"total\": 20665, \"totalTestResults\": 20665, \"posNeg\": 20665, \"fips\": 39, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 59.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 247.0, \"totalTestResultsIncrease\": 247.0, \"ratio\": 0.07999032180014518, \"sinceDay0\": 10}, {\"index\": 262, \"date\": \"2020-03-30T00:00:00\", \"state\": \"OH\", \"positive\": 1933.0, \"negative\": 25342.0, \"pending\": null, \"hospitalizedCurrently\": 312.0, \"hospitalizedCumulative\": 475.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 163.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4919c330ab80341299bf33ea25f67dd58a96dd17\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 39.0, \"hospitalized\": 475.0, \"total\": 27275, \"totalTestResults\": 27275, \"posNeg\": 27275, \"fips\": 39, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 72.0, \"negativeIncrease\": 6330.0, \"positiveIncrease\": 280.0, \"totalTestResultsIncrease\": 6610.0, \"ratio\": 0.07087076076993584, \"sinceDay0\": 11}, {\"index\": 206, \"date\": \"2020-03-31T00:00:00\", \"state\": \"OH\", \"positive\": 2199.0, \"negative\": 26992.0, \"pending\": null, \"hospitalizedCurrently\": 387.0, \"hospitalizedCumulative\": 585.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 198.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"2b80954e16b24e4b7d7e8599a71763c1081a8715\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 55.0, \"hospitalized\": 585.0, \"total\": 29191, \"totalTestResults\": 29191, \"posNeg\": 29191, \"fips\": 39, \"deathIncrease\": 16.0, \"hospitalizedIncrease\": 110.0, \"negativeIncrease\": 1650.0, \"positiveIncrease\": 266.0, \"totalTestResultsIncrease\": 1916.0, \"ratio\": 0.075331437771916, \"sinceDay0\": 12}, {\"index\": 150, \"date\": \"2020-04-01T00:00:00\", \"state\": \"OH\", \"positive\": 2547.0, \"negative\": 26992.0, \"pending\": null, \"hospitalizedCurrently\": 679.0, \"hospitalizedCumulative\": 679.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 222.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"dbf14be5566651ac0a96384a5162108330436895\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 65.0, \"hospitalized\": 679.0, \"total\": 29539, \"totalTestResults\": 29539, \"posNeg\": 29539, \"fips\": 39, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 94.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 348.0, \"totalTestResultsIncrease\": 348.0, \"ratio\": 0.08622499069027388, \"sinceDay0\": 13}, {\"index\": 94, \"date\": \"2020-04-02T00:00:00\", \"state\": \"OH\", \"positive\": 2902.0, \"negative\": 32016.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 802.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 260.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9cb637113ec0c42f449d0e11e3fb945befdcb348\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 81.0, \"hospitalized\": 802.0, \"total\": 34918, \"totalTestResults\": 34918, \"posNeg\": 34918, \"fips\": 39, \"deathIncrease\": 16.0, \"hospitalizedIncrease\": 123.0, \"negativeIncrease\": 5024.0, \"positiveIncrease\": 355.0, \"totalTestResultsIncrease\": 5379.0, \"ratio\": 0.08310899822441148, \"sinceDay0\": 14}, {\"index\": 38, \"date\": \"2020-04-03T00:00:00\", \"state\": \"OH\", \"positive\": 3312.0, \"negative\": 35063.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 895.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 288.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4f9def22c6f51b8839104ffcb46d41122de71744\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 91.0, \"hospitalized\": 895.0, \"total\": 38375, \"totalTestResults\": 38375, \"posNeg\": 38375, \"fips\": 39, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 93.0, \"negativeIncrease\": 3047.0, \"positiveIncrease\": 410.0, \"totalTestResultsIncrease\": 3457.0, \"ratio\": 0.08630618892508143, \"sinceDay0\": 15}, {\"index\": 599, \"date\": \"2020-03-24T00:00:00\", \"state\": \"OK\", \"positive\": 106.0, \"negative\": 735.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 25.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"6f7920a3fbf6e8734988631827d4e088b3e392e1\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 3.0, \"hospitalized\": 25.0, \"total\": 841, \"totalTestResults\": 841, \"posNeg\": 841, \"fips\": 40, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 10.0, \"negativeIncrease\": 41.0, \"positiveIncrease\": 25.0, \"totalTestResultsIncrease\": 66.0, \"ratio\": 0.12604042806183116, \"sinceDay0\": 0}, {\"index\": 543, \"date\": \"2020-03-25T00:00:00\", \"state\": \"OK\", \"positive\": 164.0, \"negative\": 805.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 59.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0a9c58ed26188df9e615374204dca8c4e9bded41\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 5.0, \"hospitalized\": 59.0, \"total\": 969, \"totalTestResults\": 969, \"posNeg\": 969, \"fips\": 40, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 34.0, \"negativeIncrease\": 70.0, \"positiveIncrease\": 58.0, \"totalTestResultsIncrease\": 128.0, \"ratio\": 0.1692466460268318, \"sinceDay0\": 1}, {\"index\": 487, \"date\": \"2020-03-26T00:00:00\", \"state\": \"OK\", \"positive\": 248.0, \"negative\": 958.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 86.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"6a5dd746a3fa2c1898256473098b5715589457c2\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 7.0, \"hospitalized\": 86.0, \"total\": 1206, \"totalTestResults\": 1206, \"posNeg\": 1206, \"fips\": 40, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 27.0, \"negativeIncrease\": 153.0, \"positiveIncrease\": 84.0, \"totalTestResultsIncrease\": 237.0, \"ratio\": 0.20563847429519072, \"sinceDay0\": 2}, {\"index\": 431, \"date\": \"2020-03-27T00:00:00\", \"state\": \"OK\", \"positive\": 322.0, \"negative\": 1084.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 105.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"01208f5d22ac2638f9654bb25fdb4bbe426dd561\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 8.0, \"hospitalized\": 105.0, \"total\": 1406, \"totalTestResults\": 1406, \"posNeg\": 1406, \"fips\": 40, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 19.0, \"negativeIncrease\": 126.0, \"positiveIncrease\": 74.0, \"totalTestResultsIncrease\": 200.0, \"ratio\": 0.22901849217638692, \"sinceDay0\": 3}, {\"index\": 375, \"date\": \"2020-03-28T00:00:00\", \"state\": \"OK\", \"positive\": 377.0, \"negative\": 1180.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 126.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0955acd0f7dadd282ecf522f79bd9042b3af7b95\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 15.0, \"hospitalized\": 126.0, \"total\": 1557, \"totalTestResults\": 1557, \"posNeg\": 1557, \"fips\": 40, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 21.0, \"negativeIncrease\": 96.0, \"positiveIncrease\": 55.0, \"totalTestResultsIncrease\": 151.0, \"ratio\": 0.24213230571612074, \"sinceDay0\": 4}, {\"index\": 319, \"date\": \"2020-03-29T00:00:00\", \"state\": \"OK\", \"positive\": 429.0, \"negative\": 1205.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 140.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"90830f70410babf14d5be9257a440aec4c3a2752\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 16.0, \"hospitalized\": 140.0, \"total\": 1634, \"totalTestResults\": 1634, \"posNeg\": 1634, \"fips\": 40, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 14.0, \"negativeIncrease\": 25.0, \"positiveIncrease\": 52.0, \"totalTestResultsIncrease\": 77.0, \"ratio\": 0.26254589963280295, \"sinceDay0\": 5}, {\"index\": 263, \"date\": \"2020-03-30T00:00:00\", \"state\": \"OK\", \"positive\": 481.0, \"negative\": 1207.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 153.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b3b3a86a6005e6bb134a5072898bce9dfe1e5b69\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 17.0, \"hospitalized\": 153.0, \"total\": 1688, \"totalTestResults\": 1688, \"posNeg\": 1688, \"fips\": 40, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 13.0, \"negativeIncrease\": 2.0, \"positiveIncrease\": 52.0, \"totalTestResultsIncrease\": 54.0, \"ratio\": 0.2849526066350711, \"sinceDay0\": 6}, {\"index\": 207, \"date\": \"2020-03-31T00:00:00\", \"state\": \"OK\", \"positive\": 565.0, \"negative\": 1229.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 177.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"7644495f3049f57946f6ac8b36f1eb1ffc6b7991\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 23.0, \"hospitalized\": 177.0, \"total\": 1794, \"totalTestResults\": 1794, \"posNeg\": 1794, \"fips\": 40, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 24.0, \"negativeIncrease\": 22.0, \"positiveIncrease\": 84.0, \"totalTestResultsIncrease\": 106.0, \"ratio\": 0.3149386845039019, \"sinceDay0\": 7}, {\"index\": 151, \"date\": \"2020-04-01T00:00:00\", \"state\": \"OK\", \"positive\": 719.0, \"negative\": 1248.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 219.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ac29d7657881eeb536d49135e22894a8e669ba86\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 30.0, \"hospitalized\": 219.0, \"total\": 1967, \"totalTestResults\": 1967, \"posNeg\": 1967, \"fips\": 40, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 42.0, \"negativeIncrease\": 19.0, \"positiveIncrease\": 154.0, \"totalTestResultsIncrease\": 173.0, \"ratio\": 0.36553126588713775, \"sinceDay0\": 8}, {\"index\": 95, \"date\": \"2020-04-02T00:00:00\", \"state\": \"OK\", \"positive\": 879.0, \"negative\": 1265.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 257.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"566ac2a75a879b83eb20085c9ea44852fa14d63a\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 34.0, \"hospitalized\": 257.0, \"total\": 2144, \"totalTestResults\": 2144, \"posNeg\": 2144, \"fips\": 40, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 38.0, \"negativeIncrease\": 17.0, \"positiveIncrease\": 160.0, \"totalTestResultsIncrease\": 177.0, \"ratio\": 0.4099813432835821, \"sinceDay0\": 9}, {\"index\": 39, \"date\": \"2020-04-03T00:00:00\", \"state\": \"OK\", \"positive\": 988.0, \"negative\": 1315.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 289.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8702f6d3df27dc4ba14e053f1f3ea347acc7dbcf\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 38.0, \"hospitalized\": 289.0, \"total\": 2303, \"totalTestResults\": 2303, \"posNeg\": 2303, \"fips\": 40, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 32.0, \"negativeIncrease\": 50.0, \"positiveIncrease\": 109.0, \"totalTestResultsIncrease\": 159.0, \"ratio\": 0.4290056448111159, \"sinceDay0\": 10}, {\"index\": 824, \"date\": \"2020-03-20T00:00:00\", \"state\": \"OR\", \"positive\": 114.0, \"negative\": 2003.0, \"pending\": 433.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ce87d86e6068b6b11bf179616acd49af43d92ab8\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 3.0, \"hospitalized\": null, \"total\": 2550, \"totalTestResults\": 2117, \"posNeg\": 2117, \"fips\": 41, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 674.0, \"positiveIncrease\": 26.0, \"totalTestResultsIncrease\": 700.0, \"ratio\": 0.04470588235294118, \"sinceDay0\": 0}, {\"index\": 768, \"date\": \"2020-03-21T00:00:00\", \"state\": \"OR\", \"positive\": 114.0, \"negative\": 2003.0, \"pending\": 433.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"10b3171e833e613dedf31c1ac227cc4a45ef6ea0\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 3.0, \"hospitalized\": null, \"total\": 2550, \"totalTestResults\": 2117, \"posNeg\": 2117, \"fips\": 41, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.04470588235294118, \"sinceDay0\": 1}, {\"index\": 712, \"date\": \"2020-03-22T00:00:00\", \"state\": \"OR\", \"positive\": 161.0, \"negative\": 2864.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 43.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ce0d62ce9e64793f5c0c0061df7f500c056f1f94\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 4.0, \"hospitalized\": 43.0, \"total\": 3025, \"totalTestResults\": 3025, \"posNeg\": 3025, \"fips\": 41, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 43.0, \"negativeIncrease\": 861.0, \"positiveIncrease\": 47.0, \"totalTestResultsIncrease\": 908.0, \"ratio\": 0.053223140495867766, \"sinceDay0\": 2}, {\"index\": 656, \"date\": \"2020-03-23T00:00:00\", \"state\": \"OR\", \"positive\": 191.0, \"negative\": 3649.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 56.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d32dc80aee60746bbda8cd2ded2558efd103b76d\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 5.0, \"hospitalized\": 56.0, \"total\": 3840, \"totalTestResults\": 3840, \"posNeg\": 3840, \"fips\": 41, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 13.0, \"negativeIncrease\": 785.0, \"positiveIncrease\": 30.0, \"totalTestResultsIncrease\": 815.0, \"ratio\": 0.04973958333333333, \"sinceDay0\": 3}, {\"index\": 600, \"date\": \"2020-03-24T00:00:00\", \"state\": \"OR\", \"positive\": 209.0, \"negative\": 4350.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 61.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"48f6f90138b010e86974032f5c2c2831e7fb4a75\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 8.0, \"hospitalized\": 61.0, \"total\": 4559, \"totalTestResults\": 4559, \"posNeg\": 4559, \"fips\": 41, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 5.0, \"negativeIncrease\": 701.0, \"positiveIncrease\": 18.0, \"totalTestResultsIncrease\": 719.0, \"ratio\": 0.04584338670761132, \"sinceDay0\": 4}, {\"index\": 544, \"date\": \"2020-03-25T00:00:00\", \"state\": \"OR\", \"positive\": 209.0, \"negative\": 4350.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 61.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5a3e8848f9b6371e0c31274fd62117c40f06a0a3\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 8.0, \"hospitalized\": 61.0, \"total\": 4559, \"totalTestResults\": 4559, \"posNeg\": 4559, \"fips\": 41, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.04584338670761132, \"sinceDay0\": 5}, {\"index\": 488, \"date\": \"2020-03-26T00:00:00\", \"state\": \"OR\", \"positive\": 327.0, \"negative\": 6953.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 90.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ddb030ea072a2fe01a8d71d2a5a24e917d4e8ea2\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 11.0, \"hospitalized\": 90.0, \"total\": 7280, \"totalTestResults\": 7280, \"posNeg\": 7280, \"fips\": 41, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 29.0, \"negativeIncrease\": 2603.0, \"positiveIncrease\": 118.0, \"totalTestResultsIncrease\": 2721.0, \"ratio\": 0.04491758241758242, \"sinceDay0\": 6}, {\"index\": 432, \"date\": \"2020-03-27T00:00:00\", \"state\": \"OR\", \"positive\": 414.0, \"negative\": 8510.0, \"pending\": null, \"hospitalizedCurrently\": 91.0, \"hospitalizedCumulative\": 102.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 31.0, \"onVentilatorCumulative\": 31.0, \"recovered\": null, \"hash\": \"b60609c583643679e2b128c34d9394e1a6104f4d\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 12.0, \"hospitalized\": 102.0, \"total\": 8924, \"totalTestResults\": 8924, \"posNeg\": 8924, \"fips\": 41, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 12.0, \"negativeIncrease\": 1557.0, \"positiveIncrease\": 87.0, \"totalTestResultsIncrease\": 1644.0, \"ratio\": 0.04639175257731959, \"sinceDay0\": 7}, {\"index\": 376, \"date\": \"2020-03-28T00:00:00\", \"state\": \"OR\", \"positive\": 479.0, \"negative\": 9693.0, \"pending\": null, \"hospitalizedCurrently\": 107.0, \"hospitalizedCumulative\": 117.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 31.0, \"onVentilatorCumulative\": 31.0, \"recovered\": null, \"hash\": \"4615188d4b688420245f6cee70b98db2cee2680e\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 13.0, \"hospitalized\": 117.0, \"total\": 10172, \"totalTestResults\": 10172, \"posNeg\": 10172, \"fips\": 41, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 15.0, \"negativeIncrease\": 1183.0, \"positiveIncrease\": 65.0, \"totalTestResultsIncrease\": 1248.0, \"ratio\": 0.04709005112072356, \"sinceDay0\": 8}, {\"index\": 320, \"date\": \"2020-03-29T00:00:00\", \"state\": \"OR\", \"positive\": 548.0, \"negative\": 10878.0, \"pending\": null, \"hospitalizedCurrently\": 107.0, \"hospitalizedCumulative\": 129.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 37.0, \"onVentilatorCumulative\": 37.0, \"recovered\": null, \"hash\": \"fe238901e3353621bc8b5a2c6bdc5b61a26b07fb\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 13.0, \"hospitalized\": 129.0, \"total\": 11426, \"totalTestResults\": 11426, \"posNeg\": 11426, \"fips\": 41, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 12.0, \"negativeIncrease\": 1185.0, \"positiveIncrease\": 69.0, \"totalTestResultsIncrease\": 1254.0, \"ratio\": 0.04796079117801506, \"sinceDay0\": 9}, {\"index\": 264, \"date\": \"2020-03-30T00:00:00\", \"state\": \"OR\", \"positive\": 606.0, \"negative\": 12277.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 140.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 39.0, \"onVentilatorCumulative\": 39.0, \"recovered\": null, \"hash\": \"c543299db7bd820697dd1e52f379790ec57de15a\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 16.0, \"hospitalized\": 140.0, \"total\": 12883, \"totalTestResults\": 12883, \"posNeg\": 12883, \"fips\": 41, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 11.0, \"negativeIncrease\": 1399.0, \"positiveIncrease\": 58.0, \"totalTestResultsIncrease\": 1457.0, \"ratio\": 0.047038733214313434, \"sinceDay0\": 10}, {\"index\": 208, \"date\": \"2020-03-31T00:00:00\", \"state\": \"OR\", \"positive\": 690.0, \"negative\": 13136.0, \"pending\": null, \"hospitalizedCurrently\": 132.0, \"hospitalizedCumulative\": 154.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 40.0, \"onVentilatorCumulative\": 40.0, \"recovered\": null, \"hash\": \"e44596521fd7149cd51b2feacaf8439e95aa4e5d\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 18.0, \"hospitalized\": 154.0, \"total\": 13826, \"totalTestResults\": 13826, \"posNeg\": 13826, \"fips\": 41, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 14.0, \"negativeIncrease\": 859.0, \"positiveIncrease\": 84.0, \"totalTestResultsIncrease\": 943.0, \"ratio\": 0.049905974251410384, \"sinceDay0\": 11}, {\"index\": 152, \"date\": \"2020-04-01T00:00:00\", \"state\": \"OR\", \"positive\": 690.0, \"negative\": 13136.0, \"pending\": null, \"hospitalizedCurrently\": 132.0, \"hospitalizedCumulative\": 154.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 40.0, \"onVentilatorCumulative\": 40.0, \"recovered\": null, \"hash\": \"c37eb024e65c3469e098cccb5acb7c4e54ced2df\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 18.0, \"hospitalized\": 154.0, \"total\": 13826, \"totalTestResults\": 13826, \"posNeg\": 13826, \"fips\": 41, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.049905974251410384, \"sinceDay0\": 12}, {\"index\": 96, \"date\": \"2020-04-02T00:00:00\", \"state\": \"OR\", \"positive\": 736.0, \"negative\": 14132.0, \"pending\": null, \"hospitalizedCurrently\": 134.0, \"hospitalizedCumulative\": 167.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 38.0, \"onVentilatorCumulative\": 40.0, \"recovered\": null, \"hash\": \"b771658b625232d8a1f579f80eab46699a03f83b\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 19.0, \"hospitalized\": 167.0, \"total\": 14868, \"totalTestResults\": 14868, \"posNeg\": 14868, \"fips\": 41, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 13.0, \"negativeIncrease\": 996.0, \"positiveIncrease\": 46.0, \"totalTestResultsIncrease\": 1042.0, \"ratio\": 0.04950228679042239, \"sinceDay0\": 13}, {\"index\": 40, \"date\": \"2020-04-03T00:00:00\", \"state\": \"OR\", \"positive\": 826.0, \"negative\": 15259.0, \"pending\": null, \"hospitalizedCurrently\": 188.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 38.0, \"onVentilatorCumulative\": 40.0, \"recovered\": null, \"hash\": \"b2e5b88bbad8239be3032b82f4afe354fc21fe96\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 21.0, \"hospitalized\": null, \"total\": 16085, \"totalTestResults\": 16085, \"posNeg\": 16085, \"fips\": 41, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1127.0, \"positiveIncrease\": 90.0, \"totalTestResultsIncrease\": 1217.0, \"ratio\": 0.0513521914827479, \"sinceDay0\": 14}, {\"index\": 937, \"date\": \"2020-03-18T00:00:00\", \"state\": \"PA\", \"positive\": 133.0, \"negative\": 1187.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"53f74823d5e0c5cde103d57683986efe781fb763\", \"dateChecked\": \"2020-03-18T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 1320, \"totalTestResults\": 1320, \"posNeg\": 1320, \"fips\": 42, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 308.0, \"positiveIncrease\": 37.0, \"totalTestResultsIncrease\": 345.0, \"ratio\": 0.10075757575757575, \"sinceDay0\": 0}, {\"index\": 881, \"date\": \"2020-03-19T00:00:00\", \"state\": \"PA\", \"positive\": 185.0, \"negative\": 1608.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a87671ef28a0d908f73c46b699f698799347b071\", \"dateChecked\": \"2020-03-19T20:00:00Z\", \"death\": 1.0, \"hospitalized\": null, \"total\": 1793, \"totalTestResults\": 1793, \"posNeg\": 1793, \"fips\": 42, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 421.0, \"positiveIncrease\": 52.0, \"totalTestResultsIncrease\": 473.0, \"ratio\": 0.10317902955939766, \"sinceDay0\": 1}, {\"index\": 825, \"date\": \"2020-03-20T00:00:00\", \"state\": \"PA\", \"positive\": 268.0, \"negative\": 2574.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d618791d5664fb84a0a633890bae484ad6390590\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 1.0, \"hospitalized\": null, \"total\": 2842, \"totalTestResults\": 2842, \"posNeg\": 2842, \"fips\": 42, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 966.0, \"positiveIncrease\": 83.0, \"totalTestResultsIncrease\": 1049.0, \"ratio\": 0.09429978888106967, \"sinceDay0\": 2}, {\"index\": 769, \"date\": \"2020-03-21T00:00:00\", \"state\": \"PA\", \"positive\": 371.0, \"negative\": 3766.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"18df8e2622a5b9fc6b266124af168742b75d3bae\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 2.0, \"hospitalized\": null, \"total\": 4137, \"totalTestResults\": 4137, \"posNeg\": 4137, \"fips\": 42, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1192.0, \"positiveIncrease\": 103.0, \"totalTestResultsIncrease\": 1295.0, \"ratio\": 0.08967851099830795, \"sinceDay0\": 3}, {\"index\": 713, \"date\": \"2020-03-22T00:00:00\", \"state\": \"PA\", \"positive\": 479.0, \"negative\": 4964.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e55025d414359bd8039b3a89935560cdf0759885\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 2.0, \"hospitalized\": null, \"total\": 5443, \"totalTestResults\": 5443, \"posNeg\": 5443, \"fips\": 42, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1198.0, \"positiveIncrease\": 108.0, \"totalTestResultsIncrease\": 1306.0, \"ratio\": 0.08800293955539225, \"sinceDay0\": 4}, {\"index\": 657, \"date\": \"2020-03-23T00:00:00\", \"state\": \"PA\", \"positive\": 644.0, \"negative\": 6595.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f34848bd60ba259abd8ba905bbf1a2edc2e450da\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 6.0, \"hospitalized\": null, \"total\": 7239, \"totalTestResults\": 7239, \"posNeg\": 7239, \"fips\": 42, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1631.0, \"positiveIncrease\": 165.0, \"totalTestResultsIncrease\": 1796.0, \"ratio\": 0.08896256389004006, \"sinceDay0\": 5}, {\"index\": 601, \"date\": \"2020-03-24T00:00:00\", \"state\": \"PA\", \"positive\": 851.0, \"negative\": 8643.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ce0a280d338c6cb38fc09e23260c4a9d36b61a64\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 7.0, \"hospitalized\": null, \"total\": 9494, \"totalTestResults\": 9494, \"posNeg\": 9494, \"fips\": 42, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2048.0, \"positiveIncrease\": 207.0, \"totalTestResultsIncrease\": 2255.0, \"ratio\": 0.08963555930061091, \"sinceDay0\": 6}, {\"index\": 545, \"date\": \"2020-03-25T00:00:00\", \"state\": \"PA\", \"positive\": 1127.0, \"negative\": 11193.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a04cdbf57ddbd0c489b48882295db9559fb037b5\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 11.0, \"hospitalized\": null, \"total\": 12320, \"totalTestResults\": 12320, \"posNeg\": 12320, \"fips\": 42, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2550.0, \"positiveIncrease\": 276.0, \"totalTestResultsIncrease\": 2826.0, \"ratio\": 0.09147727272727273, \"sinceDay0\": 7}, {\"index\": 489, \"date\": \"2020-03-26T00:00:00\", \"state\": \"PA\", \"positive\": 1687.0, \"negative\": 16441.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"7712fd7f15f40e975c2a503bd7633edd4387df7e\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 16.0, \"hospitalized\": null, \"total\": 18128, \"totalTestResults\": 18128, \"posNeg\": 18128, \"fips\": 42, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5248.0, \"positiveIncrease\": 560.0, \"totalTestResultsIncrease\": 5808.0, \"ratio\": 0.09306045895851721, \"sinceDay0\": 8}, {\"index\": 433, \"date\": \"2020-03-27T00:00:00\", \"state\": \"PA\", \"positive\": 2218.0, \"negative\": 21016.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 241.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e80400da9fd2c8e84d22566050fa2b705d7fdde0\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 22.0, \"hospitalized\": 241.0, \"total\": 23234, \"totalTestResults\": 23234, \"posNeg\": 23234, \"fips\": 42, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 241.0, \"negativeIncrease\": 4575.0, \"positiveIncrease\": 531.0, \"totalTestResultsIncrease\": 5106.0, \"ratio\": 0.09546354480502711, \"sinceDay0\": 9}, {\"index\": 377, \"date\": \"2020-03-28T00:00:00\", \"state\": \"PA\", \"positive\": 2751.0, \"negative\": 25254.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 316.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0b00e5e4eec84c744f25bfd23aa3ff905cca2f2e\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 34.0, \"hospitalized\": 316.0, \"total\": 28005, \"totalTestResults\": 28005, \"posNeg\": 28005, \"fips\": 42, \"deathIncrease\": 12.0, \"hospitalizedIncrease\": 75.0, \"negativeIncrease\": 4238.0, \"positiveIncrease\": 533.0, \"totalTestResultsIncrease\": 4771.0, \"ratio\": 0.09823245848955543, \"sinceDay0\": 10}, {\"index\": 321, \"date\": \"2020-03-29T00:00:00\", \"state\": \"PA\", \"positive\": 3394.0, \"negative\": 30061.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 353.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"da55c1eba9c83cb8c9e3ce7b474a2d7f74f7ecbc\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 38.0, \"hospitalized\": 353.0, \"total\": 33455, \"totalTestResults\": 33455, \"posNeg\": 33455, \"fips\": 42, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 37.0, \"negativeIncrease\": 4807.0, \"positiveIncrease\": 643.0, \"totalTestResultsIncrease\": 5450.0, \"ratio\": 0.10144970856374234, \"sinceDay0\": 11}, {\"index\": 265, \"date\": \"2020-03-30T00:00:00\", \"state\": \"PA\", \"positive\": 4087.0, \"negative\": 33777.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 386.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"cac05153a6de7331306734979416c0bbbca4be85\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 49.0, \"hospitalized\": 386.0, \"total\": 37864, \"totalTestResults\": 37864, \"posNeg\": 37864, \"fips\": 42, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 33.0, \"negativeIncrease\": 3716.0, \"positiveIncrease\": 693.0, \"totalTestResultsIncrease\": 4409.0, \"ratio\": 0.1079389393619269, \"sinceDay0\": 12}, {\"index\": 209, \"date\": \"2020-03-31T00:00:00\", \"state\": \"PA\", \"positive\": 4843.0, \"negative\": 37645.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 514.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f2ddb226108bf8650a4c9d6b6394ff9083e3adbc\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 63.0, \"hospitalized\": 514.0, \"total\": 42488, \"totalTestResults\": 42488, \"posNeg\": 42488, \"fips\": 42, \"deathIncrease\": 14.0, \"hospitalizedIncrease\": 128.0, \"negativeIncrease\": 3868.0, \"positiveIncrease\": 756.0, \"totalTestResultsIncrease\": 4624.0, \"ratio\": 0.11398512521182451, \"sinceDay0\": 13}, {\"index\": 153, \"date\": \"2020-04-01T00:00:00\", \"state\": \"PA\", \"positive\": 5805.0, \"negative\": 42427.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 620.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"575ea7e224d4f1f6797bed8fe0a7902daad3ffab\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 74.0, \"hospitalized\": 620.0, \"total\": 48232, \"totalTestResults\": 48232, \"posNeg\": 48232, \"fips\": 42, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 106.0, \"negativeIncrease\": 4782.0, \"positiveIncrease\": 962.0, \"totalTestResultsIncrease\": 5744.0, \"ratio\": 0.12035578039475867, \"sinceDay0\": 14}, {\"index\": 97, \"date\": \"2020-04-02T00:00:00\", \"state\": \"PA\", \"positive\": 7016.0, \"negative\": 47698.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 730.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0dc7935c18797a0f7616c41c364e159c12d62657\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 90.0, \"hospitalized\": 730.0, \"total\": 54714, \"totalTestResults\": 54714, \"posNeg\": 54714, \"fips\": 42, \"deathIncrease\": 16.0, \"hospitalizedIncrease\": 110.0, \"negativeIncrease\": 5271.0, \"positiveIncrease\": 1211.0, \"totalTestResultsIncrease\": 6482.0, \"ratio\": 0.1282304346236795, \"sinceDay0\": 15}, {\"index\": 41, \"date\": \"2020-04-03T00:00:00\", \"state\": \"PA\", \"positive\": 8420.0, \"negative\": 53695.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 852.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"aade9d40167b6e73754871c40386092b362363a2\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 102.0, \"hospitalized\": 852.0, \"total\": 62115, \"totalTestResults\": 62115, \"posNeg\": 62115, \"fips\": 42, \"deathIncrease\": 12.0, \"hospitalizedIncrease\": 122.0, \"negativeIncrease\": 5997.0, \"positiveIncrease\": 1404.0, \"totalTestResultsIncrease\": 7401.0, \"ratio\": 0.1355550189165258, \"sinceDay0\": 16}, {\"index\": 378, \"date\": \"2020-03-28T00:00:00\", \"state\": \"PR\", \"positive\": 100.0, \"negative\": 739.0, \"pending\": 792.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c1f61bf559aeba0b90d63533c15308234532ea16\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 3.0, \"hospitalized\": null, \"total\": 1631, \"totalTestResults\": 839, \"posNeg\": 839, \"fips\": 72, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 220.0, \"positiveIncrease\": 21.0, \"totalTestResultsIncrease\": 241.0, \"ratio\": 0.061312078479460456, \"sinceDay0\": 0}, {\"index\": 322, \"date\": \"2020-03-29T00:00:00\", \"state\": \"PR\", \"positive\": 127.0, \"negative\": 841.0, \"pending\": 817.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e0fd73e5dd7429d9fdff54eda5df78010bbd83c6\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 5.0, \"hospitalized\": null, \"total\": 1785, \"totalTestResults\": 968, \"posNeg\": 968, \"fips\": 72, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 102.0, \"positiveIncrease\": 27.0, \"totalTestResultsIncrease\": 129.0, \"ratio\": 0.0711484593837535, \"sinceDay0\": 1}, {\"index\": 266, \"date\": \"2020-03-30T00:00:00\", \"state\": \"PR\", \"positive\": 174.0, \"negative\": 931.0, \"pending\": 794.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"fd89d6c3b101b8f486f201f326442d416bfd4a2d\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 6.0, \"hospitalized\": null, \"total\": 1899, \"totalTestResults\": 1105, \"posNeg\": 1105, \"fips\": 72, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 90.0, \"positiveIncrease\": 47.0, \"totalTestResultsIncrease\": 137.0, \"ratio\": 0.09162717219589257, \"sinceDay0\": 2}, {\"index\": 210, \"date\": \"2020-03-31T00:00:00\", \"state\": \"PR\", \"positive\": 239.0, \"negative\": 1195.0, \"pending\": 854.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"78117516d9037f5282375c81906d6c029a53bf68\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 8.0, \"hospitalized\": null, \"total\": 2288, \"totalTestResults\": 1434, \"posNeg\": 1434, \"fips\": 72, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 264.0, \"positiveIncrease\": 65.0, \"totalTestResultsIncrease\": 329.0, \"ratio\": 0.10445804195804195, \"sinceDay0\": 3}, {\"index\": 154, \"date\": \"2020-04-01T00:00:00\", \"state\": \"PR\", \"positive\": 286.0, \"negative\": 1409.0, \"pending\": 897.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ae0129f382eb5f04d790633ebc4cfb9e7e00f89a\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 11.0, \"hospitalized\": null, \"total\": 2592, \"totalTestResults\": 1695, \"posNeg\": 1695, \"fips\": 72, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 214.0, \"positiveIncrease\": 47.0, \"totalTestResultsIncrease\": 261.0, \"ratio\": 0.11033950617283951, \"sinceDay0\": 4}, {\"index\": 98, \"date\": \"2020-04-02T00:00:00\", \"state\": \"PR\", \"positive\": 316.0, \"negative\": 1604.0, \"pending\": 1119.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"2b9a9af18f7c56e17ab89f48b071e4c9afd668a9\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 3039, \"totalTestResults\": 1920, \"posNeg\": 1920, \"fips\": 72, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 195.0, \"positiveIncrease\": 30.0, \"totalTestResultsIncrease\": 225.0, \"ratio\": 0.1039815728858177, \"sinceDay0\": 5}, {\"index\": 42, \"date\": \"2020-04-03T00:00:00\", \"state\": \"PR\", \"positive\": 378.0, \"negative\": 2049.0, \"pending\": 1055.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"31c1cb53249716895ec3490c18feb99b785a620a\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 15.0, \"hospitalized\": null, \"total\": 3482, \"totalTestResults\": 2427, \"posNeg\": 2427, \"fips\": 72, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 445.0, \"positiveIncrease\": 62.0, \"totalTestResultsIncrease\": 507.0, \"ratio\": 0.10855829982768524, \"sinceDay0\": 6}, {\"index\": 659, \"date\": \"2020-03-23T00:00:00\", \"state\": \"RI\", \"positive\": 106.0, \"negative\": 932.0, \"pending\": 216.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"09e8adb16f2e4c7b3b6358125df41faf1077f1ee\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 1254, \"totalTestResults\": 1038, \"posNeg\": 1038, \"fips\": 44, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 23.0, \"totalTestResultsIncrease\": 23.0, \"ratio\": 0.08452950558213716, \"sinceDay0\": 0}, {\"index\": 603, \"date\": \"2020-03-24T00:00:00\", \"state\": \"RI\", \"positive\": 106.0, \"negative\": 1120.0, \"pending\": 77.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ad48e36a041ed872084786bb3ab82a7dd19ef455\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 1303, \"totalTestResults\": 1226, \"posNeg\": 1226, \"fips\": 44, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 188.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 188.0, \"ratio\": 0.08135072908672294, \"sinceDay0\": 1}, {\"index\": 547, \"date\": \"2020-03-25T00:00:00\", \"state\": \"RI\", \"positive\": 124.0, \"negative\": 1143.0, \"pending\": 196.0, \"hospitalizedCurrently\": 16.0, \"hospitalizedCumulative\": 16.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"93a324631369ebe04fc4e8023ec4be560dc61c8e\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": null, \"hospitalized\": 16.0, \"total\": 1463, \"totalTestResults\": 1267, \"posNeg\": 1267, \"fips\": 44, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 16.0, \"negativeIncrease\": 23.0, \"positiveIncrease\": 18.0, \"totalTestResultsIncrease\": 41.0, \"ratio\": 0.08475734791524266, \"sinceDay0\": 2}, {\"index\": 491, \"date\": \"2020-03-26T00:00:00\", \"state\": \"RI\", \"positive\": 165.0, \"negative\": 1339.0, \"pending\": 181.0, \"hospitalizedCurrently\": 23.0, \"hospitalizedCumulative\": 23.0, \"inIcuCurrently\": 9.0, \"inIcuCumulative\": 9.0, \"onVentilatorCurrently\": 6.0, \"onVentilatorCumulative\": 6.0, \"recovered\": null, \"hash\": \"9d7cee089d5fa0072f878937365b6bd9edcce159\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": null, \"hospitalized\": 23.0, \"total\": 1685, \"totalTestResults\": 1504, \"posNeg\": 1504, \"fips\": 44, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 7.0, \"negativeIncrease\": 196.0, \"positiveIncrease\": 41.0, \"totalTestResultsIncrease\": 237.0, \"ratio\": 0.09792284866468842, \"sinceDay0\": 3}, {\"index\": 435, \"date\": \"2020-03-27T00:00:00\", \"state\": \"RI\", \"positive\": 165.0, \"negative\": 1366.0, \"pending\": 138.0, \"hospitalizedCurrently\": 23.0, \"hospitalizedCumulative\": 23.0, \"inIcuCurrently\": 9.0, \"inIcuCumulative\": 9.0, \"onVentilatorCurrently\": 6.0, \"onVentilatorCumulative\": 6.0, \"recovered\": null, \"hash\": \"3aa8781ddb1a283fea34688735c02184efabee03\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": null, \"hospitalized\": 23.0, \"total\": 1669, \"totalTestResults\": 1531, \"posNeg\": 1531, \"fips\": 44, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 27.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 27.0, \"ratio\": 0.09886159376872379, \"sinceDay0\": 4}, {\"index\": 379, \"date\": \"2020-03-28T00:00:00\", \"state\": \"RI\", \"positive\": 203.0, \"negative\": 2306.0, \"pending\": 138.0, \"hospitalizedCurrently\": 28.0, \"hospitalizedCumulative\": 28.0, \"inIcuCurrently\": 9.0, \"inIcuCumulative\": 9.0, \"onVentilatorCurrently\": 6.0, \"onVentilatorCumulative\": 6.0, \"recovered\": null, \"hash\": \"0bed0a7e68897a419c999e031bb047fe8344d76f\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": null, \"hospitalized\": 28.0, \"total\": 2647, \"totalTestResults\": 2509, \"posNeg\": 2509, \"fips\": 44, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 5.0, \"negativeIncrease\": 940.0, \"positiveIncrease\": 38.0, \"totalTestResultsIncrease\": 978.0, \"ratio\": 0.07669059312429165, \"sinceDay0\": 5}, {\"index\": 323, \"date\": \"2020-03-29T00:00:00\", \"state\": \"RI\", \"positive\": 294.0, \"negative\": 2541.0, \"pending\": null, \"hospitalizedCurrently\": 35.0, \"hospitalizedCumulative\": 35.0, \"inIcuCurrently\": 9.0, \"inIcuCumulative\": 9.0, \"onVentilatorCurrently\": 6.0, \"onVentilatorCumulative\": 6.0, \"recovered\": null, \"hash\": \"c2ea9ba40403442374f7cb8372bdda06ad8d6297\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 3.0, \"hospitalized\": 35.0, \"total\": 2835, \"totalTestResults\": 2835, \"posNeg\": 2835, \"fips\": 44, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 7.0, \"negativeIncrease\": 235.0, \"positiveIncrease\": 91.0, \"totalTestResultsIncrease\": 326.0, \"ratio\": 0.1037037037037037, \"sinceDay0\": 6}, {\"index\": 267, \"date\": \"2020-03-30T00:00:00\", \"state\": \"RI\", \"positive\": 408.0, \"negative\": 3187.0, \"pending\": null, \"hospitalizedCurrently\": 41.0, \"hospitalizedCumulative\": 41.0, \"inIcuCurrently\": 9.0, \"inIcuCumulative\": 9.0, \"onVentilatorCurrently\": 6.0, \"onVentilatorCumulative\": 6.0, \"recovered\": null, \"hash\": \"0b793432db85ade06b16b6eff37fd1791b7c17e3\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 4.0, \"hospitalized\": 41.0, \"total\": 3595, \"totalTestResults\": 3595, \"posNeg\": 3595, \"fips\": 44, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 6.0, \"negativeIncrease\": 646.0, \"positiveIncrease\": 114.0, \"totalTestResultsIncrease\": 760.0, \"ratio\": 0.11349095966620305, \"sinceDay0\": 7}, {\"index\": 211, \"date\": \"2020-03-31T00:00:00\", \"state\": \"RI\", \"positive\": 488.0, \"negative\": 3476.0, \"pending\": null, \"hospitalizedCurrently\": 59.0, \"hospitalizedCumulative\": 59.0, \"inIcuCurrently\": 9.0, \"inIcuCumulative\": 9.0, \"onVentilatorCurrently\": 6.0, \"onVentilatorCumulative\": 6.0, \"recovered\": 35.0, \"hash\": \"2fd78f73348d718301c48a71cd60267dac78171d\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 8.0, \"hospitalized\": 59.0, \"total\": 3964, \"totalTestResults\": 3964, \"posNeg\": 3964, \"fips\": 44, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 18.0, \"negativeIncrease\": 289.0, \"positiveIncrease\": 80.0, \"totalTestResultsIncrease\": 369.0, \"ratio\": 0.1231079717457114, \"sinceDay0\": 8}, {\"index\": 155, \"date\": \"2020-04-01T00:00:00\", \"state\": \"RI\", \"positive\": 566.0, \"negative\": 3831.0, \"pending\": null, \"hospitalizedCurrently\": 60.0, \"hospitalizedCumulative\": 60.0, \"inIcuCurrently\": 14.0, \"inIcuCumulative\": 14.0, \"onVentilatorCurrently\": 6.0, \"onVentilatorCumulative\": 6.0, \"recovered\": 35.0, \"hash\": \"4a3df6b45504443ee54b0f0fa2910b3a13ffea72\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 10.0, \"hospitalized\": 60.0, \"total\": 4397, \"totalTestResults\": 4397, \"posNeg\": 4397, \"fips\": 44, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 1.0, \"negativeIncrease\": 355.0, \"positiveIncrease\": 78.0, \"totalTestResultsIncrease\": 433.0, \"ratio\": 0.12872413008869685, \"sinceDay0\": 9}, {\"index\": 99, \"date\": \"2020-04-02T00:00:00\", \"state\": \"RI\", \"positive\": 657.0, \"negative\": 4412.0, \"pending\": null, \"hospitalizedCurrently\": 72.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": 14.0, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 6.0, \"onVentilatorCumulative\": 6.0, \"recovered\": 35.0, \"hash\": \"7e7e0cb0eedf94e8de8cc04fbfcbb89fb9b01d54\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 5069, \"totalTestResults\": 5069, \"posNeg\": 5069, \"fips\": 44, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 581.0, \"positiveIncrease\": 91.0, \"totalTestResultsIncrease\": 672.0, \"ratio\": 0.12961136318800554, \"sinceDay0\": 10}, {\"index\": 43, \"date\": \"2020-04-03T00:00:00\", \"state\": \"RI\", \"positive\": 711.0, \"negative\": 4412.0, \"pending\": null, \"hospitalizedCurrently\": 72.0, \"hospitalizedCumulative\": 72.0, \"inIcuCurrently\": 14.0, \"inIcuCumulative\": 14.0, \"onVentilatorCurrently\": 6.0, \"onVentilatorCumulative\": 6.0, \"recovered\": 35.0, \"hash\": \"724f26efb1056eab080d70de6d4ca0dfc034af1c\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 14.0, \"hospitalized\": 72.0, \"total\": 5123, \"totalTestResults\": 5123, \"posNeg\": 5123, \"fips\": 44, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 72.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 54.0, \"totalTestResultsIncrease\": 54.0, \"ratio\": 0.1387858676556705, \"sinceDay0\": 11}, {\"index\": 772, \"date\": \"2020-03-21T00:00:00\", \"state\": \"SC\", \"positive\": 152.0, \"negative\": 1255.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4e3f5cbdfb98432f0e6cc8c36ace53a52b5fd93a\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 1.0, \"hospitalized\": null, \"total\": 1407, \"totalTestResults\": 1407, \"posNeg\": 1407, \"fips\": 45, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 422.0, \"positiveIncrease\": 71.0, \"totalTestResultsIncrease\": 493.0, \"ratio\": 0.10803127221037669, \"sinceDay0\": 0}, {\"index\": 716, \"date\": \"2020-03-22T00:00:00\", \"state\": \"SC\", \"positive\": 195.0, \"negative\": 1466.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f3e5741d5023be2ca84d4a5214e6358c0c04ceeb\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 3.0, \"hospitalized\": null, \"total\": 1661, \"totalTestResults\": 1661, \"posNeg\": 1661, \"fips\": 45, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 211.0, \"positiveIncrease\": 43.0, \"totalTestResultsIncrease\": 254.0, \"ratio\": 0.11739915713425647, \"sinceDay0\": 1}, {\"index\": 660, \"date\": \"2020-03-23T00:00:00\", \"state\": \"SC\", \"positive\": 299.0, \"negative\": 1466.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"33a15e3a79d4ed06c2d35f85b493ce03724ecf6d\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 5.0, \"hospitalized\": null, \"total\": 1765, \"totalTestResults\": 1765, \"posNeg\": 1765, \"fips\": 45, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 104.0, \"totalTestResultsIncrease\": 104.0, \"ratio\": 0.16940509915014165, \"sinceDay0\": 2}, {\"index\": 604, \"date\": \"2020-03-24T00:00:00\", \"state\": \"SC\", \"positive\": 298.0, \"negative\": 2012.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"3ee6b47e4fe208a1a7422880f344f3f32f67679b\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 5.0, \"hospitalized\": null, \"total\": 2310, \"totalTestResults\": 2310, \"posNeg\": 2310, \"fips\": 45, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 546.0, \"positiveIncrease\": -1.0, \"totalTestResultsIncrease\": 545.0, \"ratio\": 0.129004329004329, \"sinceDay0\": 3}, {\"index\": 548, \"date\": \"2020-03-25T00:00:00\", \"state\": \"SC\", \"positive\": 424.0, \"negative\": 2303.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 102.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"eee95db6f47c1427fd6e5482cf0deeced90a8f05\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 7.0, \"hospitalized\": 102.0, \"total\": 2727, \"totalTestResults\": 2727, \"posNeg\": 2727, \"fips\": 45, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 102.0, \"negativeIncrease\": 291.0, \"positiveIncrease\": 126.0, \"totalTestResultsIncrease\": 417.0, \"ratio\": 0.15548221488815547, \"sinceDay0\": 4}, {\"index\": 492, \"date\": \"2020-03-26T00:00:00\", \"state\": \"SC\", \"positive\": 456.0, \"negative\": 2307.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 109.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4c55b055bf2708a25455b71cdb3d6115453ed71c\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 9.0, \"hospitalized\": 109.0, \"total\": 2763, \"totalTestResults\": 2763, \"posNeg\": 2763, \"fips\": 45, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 7.0, \"negativeIncrease\": 4.0, \"positiveIncrease\": 32.0, \"totalTestResultsIncrease\": 36.0, \"ratio\": 0.16503800217155265, \"sinceDay0\": 5}, {\"index\": 436, \"date\": \"2020-03-27T00:00:00\", \"state\": \"SC\", \"positive\": 456.0, \"negative\": 2307.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 109.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"eba42fa8d4d9d65fdf8d2aefb0cc7cf13e75ee31\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 9.0, \"hospitalized\": 109.0, \"total\": 2763, \"totalTestResults\": 2763, \"posNeg\": 2763, \"fips\": 45, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.16503800217155265, \"sinceDay0\": 6}, {\"index\": 380, \"date\": \"2020-03-28T00:00:00\", \"state\": \"SC\", \"positive\": 539.0, \"negative\": 2408.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 129.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4328bb39fcb99f8666b72daf09cc3812ab1727cf\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 13.0, \"hospitalized\": 129.0, \"total\": 2947, \"totalTestResults\": 2947, \"posNeg\": 2947, \"fips\": 45, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 20.0, \"negativeIncrease\": 101.0, \"positiveIncrease\": 83.0, \"totalTestResultsIncrease\": 184.0, \"ratio\": 0.1828978622327791, \"sinceDay0\": 7}, {\"index\": 324, \"date\": \"2020-03-29T00:00:00\", \"state\": \"SC\", \"positive\": 774.0, \"negative\": 3015.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 129.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"6e080ec1f424aec417c9000a8c610501e2870c5a\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 16.0, \"hospitalized\": 129.0, \"total\": 3789, \"totalTestResults\": 3789, \"posNeg\": 3789, \"fips\": 45, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 607.0, \"positiveIncrease\": 235.0, \"totalTestResultsIncrease\": 842.0, \"ratio\": 0.2042755344418052, \"sinceDay0\": 8}, {\"index\": 268, \"date\": \"2020-03-30T00:00:00\", \"state\": \"SC\", \"positive\": 925.0, \"negative\": 4160.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 129.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ceb9937dd126bead37bfbbd92bde9286cf955c64\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 18.0, \"hospitalized\": 129.0, \"total\": 5085, \"totalTestResults\": 5085, \"posNeg\": 5085, \"fips\": 45, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1145.0, \"positiveIncrease\": 151.0, \"totalTestResultsIncrease\": 1296.0, \"ratio\": 0.18190757128810225, \"sinceDay0\": 9}, {\"index\": 212, \"date\": \"2020-03-31T00:00:00\", \"state\": \"SC\", \"positive\": 1083.0, \"negative\": 4616.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 259.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"34a657bc2def360f99f18a1a872eae0f3b37583b\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 22.0, \"hospitalized\": 259.0, \"total\": 5699, \"totalTestResults\": 5699, \"posNeg\": 5699, \"fips\": 45, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 130.0, \"negativeIncrease\": 456.0, \"positiveIncrease\": 158.0, \"totalTestResultsIncrease\": 614.0, \"ratio\": 0.1900333391823127, \"sinceDay0\": 10}, {\"index\": 156, \"date\": \"2020-04-01T00:00:00\", \"state\": \"SC\", \"positive\": 1293.0, \"negative\": 5033.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 349.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a321818d113ea1e8063433667ca10f117f264d11\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 26.0, \"hospitalized\": 349.0, \"total\": 6326, \"totalTestResults\": 6326, \"posNeg\": 6326, \"fips\": 45, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 90.0, \"negativeIncrease\": 417.0, \"positiveIncrease\": 210.0, \"totalTestResultsIncrease\": 627.0, \"ratio\": 0.20439456212456528, \"sinceDay0\": 11}, {\"index\": 100, \"date\": \"2020-04-02T00:00:00\", \"state\": \"SC\", \"positive\": 1554.0, \"negative\": 5441.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 896.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0226337007d3996a9de9db3c450c9eae6f65f47d\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 31.0, \"hospitalized\": 896.0, \"total\": 6995, \"totalTestResults\": 6995, \"posNeg\": 6995, \"fips\": 45, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 547.0, \"negativeIncrease\": 408.0, \"positiveIncrease\": 261.0, \"totalTestResultsIncrease\": 669.0, \"ratio\": 0.22215868477483916, \"sinceDay0\": 12}, {\"index\": 44, \"date\": \"2020-04-03T00:00:00\", \"state\": \"SC\", \"positive\": 1554.0, \"negative\": 5441.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 241.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"83a9526f05767b32166dffbd1c0668fe1e12c1b5\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 31.0, \"hospitalized\": 241.0, \"total\": 6995, \"totalTestResults\": 6995, \"posNeg\": 6995, \"fips\": 45, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": -655.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.22215868477483916, \"sinceDay0\": 13}, {\"index\": 269, \"date\": \"2020-03-30T00:00:00\", \"state\": \"SD\", \"positive\": 101.0, \"negative\": 3478.0, \"pending\": 0.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 34.0, \"hash\": \"0bb03d9210c26f22f5301e7d3d05499e38494ffb\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 1.0, \"hospitalized\": null, \"total\": 3579, \"totalTestResults\": 3579, \"posNeg\": 3579, \"fips\": 46, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 351.0, \"positiveIncrease\": 11.0, \"totalTestResultsIncrease\": 362.0, \"ratio\": 0.028220173232746577, \"sinceDay0\": 0}, {\"index\": 213, \"date\": \"2020-03-31T00:00:00\", \"state\": \"SD\", \"positive\": 108.0, \"negative\": 3609.0, \"pending\": 0.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 12.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 44.0, \"hash\": \"1dfa391214d591fb4af733f72b7006016c4f3309\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 1.0, \"hospitalized\": 12.0, \"total\": 3717, \"totalTestResults\": 3717, \"posNeg\": 3717, \"fips\": 46, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 12.0, \"negativeIncrease\": 131.0, \"positiveIncrease\": 7.0, \"totalTestResultsIncrease\": 138.0, \"ratio\": 0.029055690072639227, \"sinceDay0\": 1}, {\"index\": 157, \"date\": \"2020-04-01T00:00:00\", \"state\": \"SD\", \"positive\": 129.0, \"negative\": 3903.0, \"pending\": 0.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 12.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 51.0, \"hash\": \"321e6948f2b0f05bf9e515252aed1d4ec4873a57\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 2.0, \"hospitalized\": 12.0, \"total\": 4032, \"totalTestResults\": 4032, \"posNeg\": 4032, \"fips\": 46, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 294.0, \"positiveIncrease\": 21.0, \"totalTestResultsIncrease\": 315.0, \"ratio\": 0.031994047619047616, \"sinceDay0\": 2}, {\"index\": 101, \"date\": \"2020-04-02T00:00:00\", \"state\": \"SD\", \"positive\": 165.0, \"negative\": 4217.0, \"pending\": 0.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 17.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 57.0, \"hash\": \"4503bb5ad5f51410838cf0a227b9d7ebeb19f745\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 2.0, \"hospitalized\": 17.0, \"total\": 4382, \"totalTestResults\": 4382, \"posNeg\": 4382, \"fips\": 46, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 5.0, \"negativeIncrease\": 314.0, \"positiveIncrease\": 36.0, \"totalTestResultsIncrease\": 350.0, \"ratio\": 0.03765403925148334, \"sinceDay0\": 3}, {\"index\": 45, \"date\": \"2020-04-03T00:00:00\", \"state\": \"SD\", \"positive\": 187.0, \"negative\": 4593.0, \"pending\": 3.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 17.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 69.0, \"hash\": \"aa416c771bd2c9e919678126e5564dbe952c2e46\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 2.0, \"hospitalized\": 17.0, \"total\": 4783, \"totalTestResults\": 4780, \"posNeg\": 4780, \"fips\": 46, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 376.0, \"positiveIncrease\": 22.0, \"totalTestResultsIncrease\": 398.0, \"ratio\": 0.039096801170813295, \"sinceDay0\": 4}, {\"index\": 886, \"date\": \"2020-03-19T00:00:00\", \"state\": \"TN\", \"positive\": 154.0, \"negative\": 349.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c2e339b7624135eb23a1174d4bd161349012b165\", \"dateChecked\": \"2020-03-19T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 503, \"totalTestResults\": 503, \"posNeg\": 503, \"fips\": 47, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 56.0, \"totalTestResultsIncrease\": 56.0, \"ratio\": 0.3061630218687873, \"sinceDay0\": 0}, {\"index\": 830, \"date\": \"2020-03-20T00:00:00\", \"state\": \"TN\", \"positive\": 228.0, \"negative\": 563.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c30ab203ca516277f9337100529cc875d2cae47a\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 791, \"totalTestResults\": 791, \"posNeg\": 791, \"fips\": 47, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 214.0, \"positiveIncrease\": 74.0, \"totalTestResultsIncrease\": 288.0, \"ratio\": 0.28824273072060685, \"sinceDay0\": 1}, {\"index\": 774, \"date\": \"2020-03-21T00:00:00\", \"state\": \"TN\", \"positive\": 371.0, \"negative\": 3272.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9944d4fad172ece09a78536be10dcc0a6baac09c\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 3643, \"totalTestResults\": 3643, \"posNeg\": 3643, \"fips\": 47, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2709.0, \"positiveIncrease\": 143.0, \"totalTestResultsIncrease\": 2852.0, \"ratio\": 0.10183914356299753, \"sinceDay0\": 2}, {\"index\": 718, \"date\": \"2020-03-22T00:00:00\", \"state\": \"TN\", \"positive\": 505.0, \"negative\": 3272.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"fd0f694ad2179b8cf66684537a9072b0649eed59\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 3777, \"totalTestResults\": 3777, \"posNeg\": 3777, \"fips\": 47, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 134.0, \"totalTestResultsIncrease\": 134.0, \"ratio\": 0.13370399788191686, \"sinceDay0\": 3}, {\"index\": 662, \"date\": \"2020-03-23T00:00:00\", \"state\": \"TN\", \"positive\": 615.0, \"negative\": 3272.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"2c5ac2c1a6353ca8ed3b942a6580e298e333a7ff\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 2.0, \"hospitalized\": null, \"total\": 3887, \"totalTestResults\": 3887, \"posNeg\": 3887, \"fips\": 47, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 110.0, \"totalTestResultsIncrease\": 110.0, \"ratio\": 0.15821970671469, \"sinceDay0\": 4}, {\"index\": 606, \"date\": \"2020-03-24T00:00:00\", \"state\": \"TN\", \"positive\": 667.0, \"negative\": 10517.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4c9bb8e4a36f22b926ee84af65928e341d4fef89\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 2.0, \"hospitalized\": null, \"total\": 11184, \"totalTestResults\": 11184, \"posNeg\": 11184, \"fips\": 47, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 7245.0, \"positiveIncrease\": 52.0, \"totalTestResultsIncrease\": 7297.0, \"ratio\": 0.05963876967095851, \"sinceDay0\": 5}, {\"index\": 550, \"date\": \"2020-03-25T00:00:00\", \"state\": \"TN\", \"positive\": 784.0, \"negative\": 11012.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 53.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"99bf1065223280d5519a05c0f2363f77244d41a9\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 3.0, \"hospitalized\": 53.0, \"total\": 11796, \"totalTestResults\": 11796, \"posNeg\": 11796, \"fips\": 47, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 53.0, \"negativeIncrease\": 495.0, \"positiveIncrease\": 117.0, \"totalTestResultsIncrease\": 612.0, \"ratio\": 0.06646320786707359, \"sinceDay0\": 6}, {\"index\": 494, \"date\": \"2020-03-26T00:00:00\", \"state\": \"TN\", \"positive\": 957.0, \"negative\": 13952.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 76.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d3ce5ed8216ba2c78107cb4d4ec9da1dd0b0f77f\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 3.0, \"hospitalized\": 76.0, \"total\": 14909, \"totalTestResults\": 14909, \"posNeg\": 14909, \"fips\": 47, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 23.0, \"negativeIncrease\": 2940.0, \"positiveIncrease\": 173.0, \"totalTestResultsIncrease\": 3113.0, \"ratio\": 0.06418941578912067, \"sinceDay0\": 7}, {\"index\": 438, \"date\": \"2020-03-27T00:00:00\", \"state\": \"TN\", \"positive\": 1203.0, \"negative\": 14888.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 103.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c3a5af8cf2531b13791648be5b30584a9e811787\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 6.0, \"hospitalized\": 103.0, \"total\": 16091, \"totalTestResults\": 16091, \"posNeg\": 16091, \"fips\": 47, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 27.0, \"negativeIncrease\": 936.0, \"positiveIncrease\": 246.0, \"totalTestResultsIncrease\": 1182.0, \"ratio\": 0.07476228947859051, \"sinceDay0\": 8}, {\"index\": 382, \"date\": \"2020-03-28T00:00:00\", \"state\": \"TN\", \"positive\": 1373.0, \"negative\": 16965.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 118.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"645205ffe209d5acbff94f4dd98d7d981e97a644\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 6.0, \"hospitalized\": 118.0, \"total\": 18338, \"totalTestResults\": 18338, \"posNeg\": 18338, \"fips\": 47, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 15.0, \"negativeIncrease\": 2077.0, \"positiveIncrease\": 170.0, \"totalTestResultsIncrease\": 2247.0, \"ratio\": 0.07487185080161414, \"sinceDay0\": 9}, {\"index\": 326, \"date\": \"2020-03-29T00:00:00\", \"state\": \"TN\", \"positive\": 1537.0, \"negative\": 19037.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 133.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"13f3a406e572a8d2c810f9154c0c08a615f21fb1\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 7.0, \"hospitalized\": 133.0, \"total\": 20574, \"totalTestResults\": 20574, \"posNeg\": 20574, \"fips\": 47, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 15.0, \"negativeIncrease\": 2072.0, \"positiveIncrease\": 164.0, \"totalTestResultsIncrease\": 2236.0, \"ratio\": 0.07470593953533586, \"sinceDay0\": 10}, {\"index\": 270, \"date\": \"2020-03-30T00:00:00\", \"state\": \"TN\", \"positive\": 1834.0, \"negative\": 21470.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 148.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ec22bf9d70375a31624ca8e4f9483a01aac06b52\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 13.0, \"hospitalized\": 148.0, \"total\": 23304, \"totalTestResults\": 23304, \"posNeg\": 23304, \"fips\": 47, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 15.0, \"negativeIncrease\": 2433.0, \"positiveIncrease\": 297.0, \"totalTestResultsIncrease\": 2730.0, \"ratio\": 0.07869893580501201, \"sinceDay0\": 11}, {\"index\": 214, \"date\": \"2020-03-31T00:00:00\", \"state\": \"TN\", \"positive\": 2239.0, \"negative\": 25121.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 175.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 121.0, \"hash\": \"8b236550ae5ec5e539ddcd63854658d0193987d2\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 23.0, \"hospitalized\": 175.0, \"total\": 27360, \"totalTestResults\": 27360, \"posNeg\": 27360, \"fips\": 47, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 27.0, \"negativeIncrease\": 3651.0, \"positiveIncrease\": 405.0, \"totalTestResultsIncrease\": 4056.0, \"ratio\": 0.08183479532163743, \"sinceDay0\": 12}, {\"index\": 158, \"date\": \"2020-04-01T00:00:00\", \"state\": \"TN\", \"positive\": 2683.0, \"negative\": 29769.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 200.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 137.0, \"hash\": \"9e9bb3593287cbf3b938263422d21dba45a771e1\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 24.0, \"hospitalized\": 200.0, \"total\": 32452, \"totalTestResults\": 32452, \"posNeg\": 32452, \"fips\": 47, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 25.0, \"negativeIncrease\": 4648.0, \"positiveIncrease\": 444.0, \"totalTestResultsIncrease\": 5092.0, \"ratio\": 0.08267595217552078, \"sinceDay0\": 13}, {\"index\": 102, \"date\": \"2020-04-02T00:00:00\", \"state\": \"TN\", \"positive\": 2845.0, \"negative\": 31766.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 263.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 220.0, \"hash\": \"59629453e17df16d80dffa1ce35c5dcb1e94c5a2\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 32.0, \"hospitalized\": 263.0, \"total\": 34611, \"totalTestResults\": 34611, \"posNeg\": 34611, \"fips\": 47, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 63.0, \"negativeIncrease\": 1997.0, \"positiveIncrease\": 162.0, \"totalTestResultsIncrease\": 2159.0, \"ratio\": 0.0821993008003236, \"sinceDay0\": 14}, {\"index\": 46, \"date\": \"2020-04-03T00:00:00\", \"state\": \"TN\", \"positive\": 3067.0, \"negative\": 34772.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 293.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 248.0, \"hash\": \"019351b10edda80786a653adea2799cab1992e8a\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 37.0, \"hospitalized\": 293.0, \"total\": 37839, \"totalTestResults\": 37839, \"posNeg\": 37839, \"fips\": 47, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 30.0, \"negativeIncrease\": 3006.0, \"positiveIncrease\": 222.0, \"totalTestResultsIncrease\": 3228.0, \"ratio\": 0.0810539390575861, \"sinceDay0\": 15}, {\"index\": 887, \"date\": \"2020-03-19T00:00:00\", \"state\": \"TX\", \"positive\": 143.0, \"negative\": 2212.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"cde417be86facde0b4cc168d73b067ee838a6131\", \"dateChecked\": \"2020-03-19T20:00:00Z\", \"death\": 3.0, \"hospitalized\": null, \"total\": 2355, \"totalTestResults\": 2355, \"posNeg\": 2355, \"fips\": 48, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 388.0, \"positiveIncrease\": 60.0, \"totalTestResultsIncrease\": 448.0, \"ratio\": 0.06072186836518047, \"sinceDay0\": 0}, {\"index\": 831, \"date\": \"2020-03-20T00:00:00\", \"state\": \"TX\", \"positive\": 194.0, \"negative\": 5083.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"41c1f53ffba2657e7fbd2eee03f09bebab402ec5\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 5.0, \"hospitalized\": null, \"total\": 5277, \"totalTestResults\": 5277, \"posNeg\": 5277, \"fips\": 48, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2871.0, \"positiveIncrease\": 51.0, \"totalTestResultsIncrease\": 2922.0, \"ratio\": 0.03676331248815615, \"sinceDay0\": 1}, {\"index\": 775, \"date\": \"2020-03-21T00:00:00\", \"state\": \"TX\", \"positive\": 304.0, \"negative\": 6218.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"54267227a81424058326d8ead3199e15f96b8d75\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 5.0, \"hospitalized\": null, \"total\": 6522, \"totalTestResults\": 6522, \"posNeg\": 6522, \"fips\": 48, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1135.0, \"positiveIncrease\": 110.0, \"totalTestResultsIncrease\": 1245.0, \"ratio\": 0.04661146887457835, \"sinceDay0\": 2}, {\"index\": 719, \"date\": \"2020-03-22T00:00:00\", \"state\": \"TX\", \"positive\": 334.0, \"negative\": 8422.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b4cdb42d93deee8dd849c6c76a750d6cf2bcc16d\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 5.0, \"hospitalized\": null, \"total\": 8756, \"totalTestResults\": 8756, \"posNeg\": 8756, \"fips\": 48, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2204.0, \"positiveIncrease\": 30.0, \"totalTestResultsIncrease\": 2234.0, \"ratio\": 0.038145271813613525, \"sinceDay0\": 3}, {\"index\": 663, \"date\": \"2020-03-23T00:00:00\", \"state\": \"TX\", \"positive\": 352.0, \"negative\": 9703.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b8898c676a614ee7ce5cba28465922cb7b1b025e\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 8.0, \"hospitalized\": null, \"total\": 10055, \"totalTestResults\": 10055, \"posNeg\": 10055, \"fips\": 48, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1281.0, \"positiveIncrease\": 18.0, \"totalTestResultsIncrease\": 1299.0, \"ratio\": 0.035007458975634016, \"sinceDay0\": 4}, {\"index\": 607, \"date\": \"2020-03-24T00:00:00\", \"state\": \"TX\", \"positive\": 410.0, \"negative\": 10757.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f004eb8a9503c7e97a5fc6cd7c6d33278d7a4305\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 9.0, \"hospitalized\": null, \"total\": 11167, \"totalTestResults\": 11167, \"posNeg\": 11167, \"fips\": 48, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1054.0, \"positiveIncrease\": 58.0, \"totalTestResultsIncrease\": 1112.0, \"ratio\": 0.03671532193068864, \"sinceDay0\": 5}, {\"index\": 551, \"date\": \"2020-03-25T00:00:00\", \"state\": \"TX\", \"positive\": 974.0, \"negative\": 12520.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"94d22076ee33e8232bf343c6e7cb48853cad8083\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 13494, \"totalTestResults\": 13494, \"posNeg\": 13494, \"fips\": 48, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1763.0, \"positiveIncrease\": 564.0, \"totalTestResultsIncrease\": 2327.0, \"ratio\": 0.07218022824959242, \"sinceDay0\": 6}, {\"index\": 495, \"date\": \"2020-03-26T00:00:00\", \"state\": \"TX\", \"positive\": 1396.0, \"negative\": 20028.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"fa643c14dbc1c896f7d243f22f25aa05e563d6af\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 18.0, \"hospitalized\": null, \"total\": 21424, \"totalTestResults\": 21424, \"posNeg\": 21424, \"fips\": 48, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 7508.0, \"positiveIncrease\": 422.0, \"totalTestResultsIncrease\": 7930.0, \"ratio\": 0.06516056758775206, \"sinceDay0\": 7}, {\"index\": 439, \"date\": \"2020-03-27T00:00:00\", \"state\": \"TX\", \"positive\": 1731.0, \"negative\": 21935.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8409fedc70d96ce072fcd2c62d1101488f155d94\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 23.0, \"hospitalized\": null, \"total\": 23666, \"totalTestResults\": 23666, \"posNeg\": 23666, \"fips\": 48, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1907.0, \"positiveIncrease\": 335.0, \"totalTestResultsIncrease\": 2242.0, \"ratio\": 0.07314290543395588, \"sinceDay0\": 8}, {\"index\": 383, \"date\": \"2020-03-28T00:00:00\", \"state\": \"TX\", \"positive\": 2052.0, \"negative\": 23208.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9d601857ab7b38aa375d52c046e21db2fe147e92\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 27.0, \"hospitalized\": null, \"total\": 25260, \"totalTestResults\": 25260, \"posNeg\": 25260, \"fips\": 48, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1273.0, \"positiveIncrease\": 321.0, \"totalTestResultsIncrease\": 1594.0, \"ratio\": 0.08123515439429929, \"sinceDay0\": 9}, {\"index\": 327, \"date\": \"2020-03-29T00:00:00\", \"state\": \"TX\", \"positive\": 2552.0, \"negative\": 23208.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a9b7fb107b90949f6bd5ab29b957e2cf6e46f9c5\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 34.0, \"hospitalized\": null, \"total\": 25760, \"totalTestResults\": 25760, \"posNeg\": 25760, \"fips\": 48, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 500.0, \"totalTestResultsIncrease\": 500.0, \"ratio\": 0.09906832298136646, \"sinceDay0\": 10}, {\"index\": 271, \"date\": \"2020-03-30T00:00:00\", \"state\": \"TX\", \"positive\": 2877.0, \"negative\": 33003.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 38.0, \"hash\": \"97f0dea6f50c349bb0a5bb31afde8cf9ad5ffcf8\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 34.0, \"hospitalized\": null, \"total\": 35880, \"totalTestResults\": 35880, \"posNeg\": 35880, \"fips\": 48, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 9795.0, \"positiveIncrease\": 325.0, \"totalTestResultsIncrease\": 10120.0, \"ratio\": 0.08018394648829431, \"sinceDay0\": 11}, {\"index\": 215, \"date\": \"2020-03-31T00:00:00\", \"state\": \"TX\", \"positive\": 3266.0, \"negative\": 39726.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 196.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 38.0, \"hash\": \"49880c7d533574ad29d17299ae133096cba20a3c\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 41.0, \"hospitalized\": 196.0, \"total\": 42992, \"totalTestResults\": 42992, \"posNeg\": 42992, \"fips\": 48, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 196.0, \"negativeIncrease\": 6723.0, \"positiveIncrease\": 389.0, \"totalTestResultsIncrease\": 7112.0, \"ratio\": 0.07596762188314105, \"sinceDay0\": 12}, {\"index\": 159, \"date\": \"2020-04-01T00:00:00\", \"state\": \"TX\", \"positive\": 3997.0, \"negative\": 43860.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 196.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 38.0, \"hash\": \"d7eee4ced63cacacb4fa81132e1bc4fa3884f105\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 58.0, \"hospitalized\": 196.0, \"total\": 47857, \"totalTestResults\": 47857, \"posNeg\": 47857, \"fips\": 48, \"deathIncrease\": 17.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4134.0, \"positiveIncrease\": 731.0, \"totalTestResultsIncrease\": 4865.0, \"ratio\": 0.08351965229746955, \"sinceDay0\": 13}, {\"index\": 103, \"date\": \"2020-04-02T00:00:00\", \"state\": \"TX\", \"positive\": 4669.0, \"negative\": 46010.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 196.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 38.0, \"hash\": \"7d8ea7ba1c7a7c798cfb9c6c3862a58278c06e3b\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 70.0, \"hospitalized\": 196.0, \"total\": 50679, \"totalTestResults\": 50679, \"posNeg\": 50679, \"fips\": 48, \"deathIncrease\": 12.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2150.0, \"positiveIncrease\": 672.0, \"totalTestResultsIncrease\": 2822.0, \"ratio\": 0.09212888967817044, \"sinceDay0\": 14}, {\"index\": 47, \"date\": \"2020-04-03T00:00:00\", \"state\": \"TX\", \"positive\": 5330.0, \"negative\": 50434.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 196.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 38.0, \"hash\": \"18a3dcd9d77854accccca1eb809c495d24501fbf\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 90.0, \"hospitalized\": 196.0, \"total\": 55764, \"totalTestResults\": 55764, \"posNeg\": 55764, \"fips\": 48, \"deathIncrease\": 20.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4424.0, \"positiveIncrease\": 661.0, \"totalTestResultsIncrease\": 5085.0, \"ratio\": 0.09558137866724051, \"sinceDay0\": 15}, {\"index\": 832, \"date\": \"2020-03-20T00:00:00\", \"state\": \"UT\", \"positive\": 112.0, \"negative\": 2035.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"df33dd66d88c6b1eddc25ca3aa7321769032d783\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 0.0, \"hospitalized\": null, \"total\": 2147, \"totalTestResults\": 2147, \"posNeg\": 2147, \"fips\": 49, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 587.0, \"positiveIncrease\": 34.0, \"totalTestResultsIncrease\": 621.0, \"ratio\": 0.05216581276199348, \"sinceDay0\": 0}, {\"index\": 776, \"date\": \"2020-03-21T00:00:00\", \"state\": \"UT\", \"positive\": 136.0, \"negative\": 2424.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1612a05ae5f2350863da87addf0e11159a1c4d0c\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 0.0, \"hospitalized\": null, \"total\": 2560, \"totalTestResults\": 2560, \"posNeg\": 2560, \"fips\": 49, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 389.0, \"positiveIncrease\": 24.0, \"totalTestResultsIncrease\": 413.0, \"ratio\": 0.053125, \"sinceDay0\": 1}, {\"index\": 720, \"date\": \"2020-03-22T00:00:00\", \"state\": \"UT\", \"positive\": 181.0, \"negative\": 3508.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"3de2bbed886da550ffa13c9dc65e5535094d41bc\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 1.0, \"hospitalized\": null, \"total\": 3689, \"totalTestResults\": 3689, \"posNeg\": 3689, \"fips\": 49, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1084.0, \"positiveIncrease\": 45.0, \"totalTestResultsIncrease\": 1129.0, \"ratio\": 0.049064787205204664, \"sinceDay0\": 2}, {\"index\": 664, \"date\": \"2020-03-23T00:00:00\", \"state\": \"UT\", \"positive\": 257.0, \"negative\": 4790.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1c0d56f6022578f0b588db0251a1c880d278c1c8\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 1.0, \"hospitalized\": null, \"total\": 5047, \"totalTestResults\": 5047, \"posNeg\": 5047, \"fips\": 49, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1282.0, \"positiveIncrease\": 76.0, \"totalTestResultsIncrease\": 1358.0, \"ratio\": 0.05092133940955023, \"sinceDay0\": 3}, {\"index\": 608, \"date\": \"2020-03-24T00:00:00\", \"state\": \"UT\", \"positive\": 299.0, \"negative\": 5524.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ded18a05ae98e3a2dd796af47b0463703d38fd1e\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 1.0, \"hospitalized\": null, \"total\": 5823, \"totalTestResults\": 5823, \"posNeg\": 5823, \"fips\": 49, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 734.0, \"positiveIncrease\": 42.0, \"totalTestResultsIncrease\": 776.0, \"ratio\": 0.051348102352739136, \"sinceDay0\": 4}, {\"index\": 552, \"date\": \"2020-03-25T00:00:00\", \"state\": \"UT\", \"positive\": 346.0, \"negative\": 6491.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0edf4fe386389c4acf4c834fa913fa86ba48669b\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 1.0, \"hospitalized\": null, \"total\": 6837, \"totalTestResults\": 6837, \"posNeg\": 6837, \"fips\": 49, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 967.0, \"positiveIncrease\": 47.0, \"totalTestResultsIncrease\": 1014.0, \"ratio\": 0.05060699137048413, \"sinceDay0\": 5}, {\"index\": 496, \"date\": \"2020-03-26T00:00:00\", \"state\": \"UT\", \"positive\": 402.0, \"negative\": 7308.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"dd83cffb270720784e9e520a6513c7c8f1ec68c5\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 1.0, \"hospitalized\": null, \"total\": 7710, \"totalTestResults\": 7710, \"posNeg\": 7710, \"fips\": 49, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 817.0, \"positiveIncrease\": 56.0, \"totalTestResultsIncrease\": 873.0, \"ratio\": 0.052140077821011675, \"sinceDay0\": 6}, {\"index\": 440, \"date\": \"2020-03-27T00:00:00\", \"state\": \"UT\", \"positive\": 480.0, \"negative\": 8764.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"59049455f72c15c38a8ad386ca6a601e271b4a6d\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 2.0, \"hospitalized\": null, \"total\": 9244, \"totalTestResults\": 9244, \"posNeg\": 9244, \"fips\": 49, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1456.0, \"positiveIncrease\": 78.0, \"totalTestResultsIncrease\": 1534.0, \"ratio\": 0.05192557334487235, \"sinceDay0\": 7}, {\"index\": 384, \"date\": \"2020-03-28T00:00:00\", \"state\": \"UT\", \"positive\": 602.0, \"negative\": 10710.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"eff17f1a0f1557568ff842519c39e1fbc56c66ae\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 2.0, \"hospitalized\": null, \"total\": 11312, \"totalTestResults\": 11312, \"posNeg\": 11312, \"fips\": 49, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1946.0, \"positiveIncrease\": 122.0, \"totalTestResultsIncrease\": 2068.0, \"ratio\": 0.053217821782178217, \"sinceDay0\": 8}, {\"index\": 328, \"date\": \"2020-03-29T00:00:00\", \"state\": \"UT\", \"positive\": 719.0, \"negative\": 13274.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c9720da2b069f73256af2086f464a94afc3ade35\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 2.0, \"hospitalized\": null, \"total\": 13993, \"totalTestResults\": 13993, \"posNeg\": 13993, \"fips\": 49, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2564.0, \"positiveIncrease\": 117.0, \"totalTestResultsIncrease\": 2681.0, \"ratio\": 0.05138283427428, \"sinceDay0\": 9}, {\"index\": 272, \"date\": \"2020-03-30T00:00:00\", \"state\": \"UT\", \"positive\": 806.0, \"negative\": 15197.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9c05aaa04b932a442629dc78d9f4015fc3648184\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 4.0, \"hospitalized\": null, \"total\": 16003, \"totalTestResults\": 16003, \"posNeg\": 16003, \"fips\": 49, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1923.0, \"positiveIncrease\": 87.0, \"totalTestResultsIncrease\": 2010.0, \"ratio\": 0.050365556458164096, \"sinceDay0\": 10}, {\"index\": 216, \"date\": \"2020-03-31T00:00:00\", \"state\": \"UT\", \"positive\": 887.0, \"negative\": 17626.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 73.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"df48bc20a6b94395ef809b6483a81ac976f07c72\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 5.0, \"hospitalized\": 73.0, \"total\": 18513, \"totalTestResults\": 18513, \"posNeg\": 18513, \"fips\": 49, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 73.0, \"negativeIncrease\": 2429.0, \"positiveIncrease\": 81.0, \"totalTestResultsIncrease\": 2510.0, \"ratio\": 0.04791227785880192, \"sinceDay0\": 11}, {\"index\": 160, \"date\": \"2020-04-01T00:00:00\", \"state\": \"UT\", \"positive\": 1012.0, \"negative\": 20155.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 91.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"3060e79ad1d88a94c41b61754e101f096b677716\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 7.0, \"hospitalized\": 91.0, \"total\": 21167, \"totalTestResults\": 21167, \"posNeg\": 21167, \"fips\": 49, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 18.0, \"negativeIncrease\": 2529.0, \"positiveIncrease\": 125.0, \"totalTestResultsIncrease\": 2654.0, \"ratio\": 0.047810270704398354, \"sinceDay0\": 12}, {\"index\": 104, \"date\": \"2020-04-02T00:00:00\", \"state\": \"UT\", \"positive\": 1074.0, \"negative\": 19991.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 100.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c52cf5f5cbc216f45b25fcef2adf90f644c2b052\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 7.0, \"hospitalized\": 100.0, \"total\": 21065, \"totalTestResults\": 21065, \"posNeg\": 21065, \"fips\": 49, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 9.0, \"negativeIncrease\": -164.0, \"positiveIncrease\": 62.0, \"totalTestResultsIncrease\": -102.0, \"ratio\": 0.05098504628530738, \"sinceDay0\": 13}, {\"index\": 48, \"date\": \"2020-04-03T00:00:00\", \"state\": \"UT\", \"positive\": 1246.0, \"negative\": 23002.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 106.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"be88433eea3c0ab307191b78f63c45fe05615642\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 7.0, \"hospitalized\": 106.0, \"total\": 24248, \"totalTestResults\": 24248, \"posNeg\": 24248, \"fips\": 49, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 6.0, \"negativeIncrease\": 3011.0, \"positiveIncrease\": 172.0, \"totalTestResultsIncrease\": 3183.0, \"ratio\": 0.05138568129330254, \"sinceDay0\": 14}, {\"index\": 833, \"date\": \"2020-03-20T00:00:00\", \"state\": \"VA\", \"positive\": 114.0, \"negative\": 2211.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"998c78195dd294b9150ccec8e02a47681cc444d2\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 2.0, \"hospitalized\": null, \"total\": 2325, \"totalTestResults\": 2325, \"posNeg\": 2325, \"fips\": 51, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 382.0, \"positiveIncrease\": 20.0, \"totalTestResultsIncrease\": 402.0, \"ratio\": 0.04903225806451613, \"sinceDay0\": 0}, {\"index\": 777, \"date\": \"2020-03-21T00:00:00\", \"state\": \"VA\", \"positive\": 152.0, \"negative\": 2638.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 25.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d3642dd2689ddb450f271a5e4940f134feb53a28\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 2.0, \"hospitalized\": 25.0, \"total\": 2790, \"totalTestResults\": 2790, \"posNeg\": 2790, \"fips\": 51, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 25.0, \"negativeIncrease\": 427.0, \"positiveIncrease\": 38.0, \"totalTestResultsIncrease\": 465.0, \"ratio\": 0.05448028673835126, \"sinceDay0\": 1}, {\"index\": 721, \"date\": \"2020-03-22T00:00:00\", \"state\": \"VA\", \"positive\": 219.0, \"negative\": 3118.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 32.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"47ee4fa81f1a7aa2fadcb7ad212b0f2a82b88b1f\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 3.0, \"hospitalized\": 32.0, \"total\": 3337, \"totalTestResults\": 3337, \"posNeg\": 3337, \"fips\": 51, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 7.0, \"negativeIncrease\": 480.0, \"positiveIncrease\": 67.0, \"totalTestResultsIncrease\": 547.0, \"ratio\": 0.06562780940964938, \"sinceDay0\": 2}, {\"index\": 665, \"date\": \"2020-03-23T00:00:00\", \"state\": \"VA\", \"positive\": 254.0, \"negative\": 3443.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 38.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f04ccf03a897d757c0d98d7b10c12edb59dbbc33\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 6.0, \"hospitalized\": 38.0, \"total\": 3697, \"totalTestResults\": 3697, \"posNeg\": 3697, \"fips\": 51, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 6.0, \"negativeIncrease\": 325.0, \"positiveIncrease\": 35.0, \"totalTestResultsIncrease\": 360.0, \"ratio\": 0.06870435488233703, \"sinceDay0\": 3}, {\"index\": 609, \"date\": \"2020-03-24T00:00:00\", \"state\": \"VA\", \"positive\": 290.0, \"negative\": 4180.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 45.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c50739256e2bff651beb24c7d3bf783301d228bd\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 7.0, \"hospitalized\": 45.0, \"total\": 4470, \"totalTestResults\": 4470, \"posNeg\": 4470, \"fips\": 51, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 7.0, \"negativeIncrease\": 737.0, \"positiveIncrease\": 36.0, \"totalTestResultsIncrease\": 773.0, \"ratio\": 0.06487695749440715, \"sinceDay0\": 4}, {\"index\": 553, \"date\": \"2020-03-25T00:00:00\", \"state\": \"VA\", \"positive\": 391.0, \"negative\": 4979.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 59.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f6276b380e5e6e9a92435116b52b41ae24db94df\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 9.0, \"hospitalized\": 59.0, \"total\": 5370, \"totalTestResults\": 5370, \"posNeg\": 5370, \"fips\": 51, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 14.0, \"negativeIncrease\": 799.0, \"positiveIncrease\": 101.0, \"totalTestResultsIncrease\": 900.0, \"ratio\": 0.07281191806331472, \"sinceDay0\": 5}, {\"index\": 497, \"date\": \"2020-03-26T00:00:00\", \"state\": \"VA\", \"positive\": 460.0, \"negative\": 5729.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 65.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"60d151765c90a17f38487d1089ef283796e1c122\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 13.0, \"hospitalized\": 65.0, \"total\": 6189, \"totalTestResults\": 6189, \"posNeg\": 6189, \"fips\": 51, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 6.0, \"negativeIncrease\": 750.0, \"positiveIncrease\": 69.0, \"totalTestResultsIncrease\": 819.0, \"ratio\": 0.07432541606075295, \"sinceDay0\": 6}, {\"index\": 441, \"date\": \"2020-03-27T00:00:00\", \"state\": \"VA\", \"positive\": 604.0, \"negative\": 6733.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 83.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"376dd9385db92b70861adb4e990699e2ae38ea4f\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 14.0, \"hospitalized\": 83.0, \"total\": 7337, \"totalTestResults\": 7337, \"posNeg\": 7337, \"fips\": 51, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 18.0, \"negativeIncrease\": 1004.0, \"positiveIncrease\": 144.0, \"totalTestResultsIncrease\": 1148.0, \"ratio\": 0.08232247512607332, \"sinceDay0\": 7}, {\"index\": 385, \"date\": \"2020-03-28T00:00:00\", \"state\": \"VA\", \"positive\": 739.0, \"negative\": 8427.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 99.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4a9486b875debc40351684839a6e07900f0fd3ca\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 17.0, \"hospitalized\": 99.0, \"total\": 9166, \"totalTestResults\": 9166, \"posNeg\": 9166, \"fips\": 51, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 16.0, \"negativeIncrease\": 1694.0, \"positiveIncrease\": 135.0, \"totalTestResultsIncrease\": 1829.0, \"ratio\": 0.08062404538511891, \"sinceDay0\": 8}, {\"index\": 329, \"date\": \"2020-03-29T00:00:00\", \"state\": \"VA\", \"positive\": 890.0, \"negative\": 9719.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 112.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c69c5d634a01118e8c0e248abc63805871431f51\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 22.0, \"hospitalized\": 112.0, \"total\": 10609, \"totalTestResults\": 10609, \"posNeg\": 10609, \"fips\": 51, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 13.0, \"negativeIncrease\": 1292.0, \"positiveIncrease\": 151.0, \"totalTestResultsIncrease\": 1443.0, \"ratio\": 0.08389103591290414, \"sinceDay0\": 9}, {\"index\": 273, \"date\": \"2020-03-30T00:00:00\", \"state\": \"VA\", \"positive\": 1020.0, \"negative\": 11018.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 136.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1b814b67e1fc83c5f9fdc2e3ca2dc1e7d1fa66d7\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 25.0, \"hospitalized\": 136.0, \"total\": 12038, \"totalTestResults\": 12038, \"posNeg\": 12038, \"fips\": 51, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 24.0, \"negativeIncrease\": 1299.0, \"positiveIncrease\": 130.0, \"totalTestResultsIncrease\": 1429.0, \"ratio\": 0.08473168300382124, \"sinceDay0\": 10}, {\"index\": 217, \"date\": \"2020-03-31T00:00:00\", \"state\": \"VA\", \"positive\": 1250.0, \"negative\": 12151.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 165.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"94c6ced5cbd2d7474ef25844e4f1c69d185328b8\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 27.0, \"hospitalized\": 165.0, \"total\": 13401, \"totalTestResults\": 13401, \"posNeg\": 13401, \"fips\": 51, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 29.0, \"negativeIncrease\": 1133.0, \"positiveIncrease\": 230.0, \"totalTestResultsIncrease\": 1363.0, \"ratio\": 0.09327662114767554, \"sinceDay0\": 11}, {\"index\": 161, \"date\": \"2020-04-01T00:00:00\", \"state\": \"VA\", \"positive\": 1484.0, \"negative\": 13860.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 305.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 145.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 108.0, \"recovered\": null, \"hash\": \"3978f9b311c4141c1b8cab5ace841ef8bff698d3\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 34.0, \"hospitalized\": 305.0, \"total\": 15344, \"totalTestResults\": 15344, \"posNeg\": 15344, \"fips\": 51, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 140.0, \"negativeIncrease\": 1709.0, \"positiveIncrease\": 234.0, \"totalTestResultsIncrease\": 1943.0, \"ratio\": 0.09671532846715329, \"sinceDay0\": 12}, {\"index\": 105, \"date\": \"2020-04-02T00:00:00\", \"state\": \"VA\", \"positive\": 1706.0, \"negative\": 15883.0, \"pending\": null, \"hospitalizedCurrently\": 246.0, \"hospitalizedCumulative\": 305.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 145.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 108.0, \"recovered\": null, \"hash\": \"9796a8ec0aabb4d2cffe52ed46445fae43bd50c6\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 41.0, \"hospitalized\": 305.0, \"total\": 17589, \"totalTestResults\": 17589, \"posNeg\": 17589, \"fips\": 51, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2023.0, \"positiveIncrease\": 222.0, \"totalTestResultsIncrease\": 2245.0, \"ratio\": 0.09699243845585309, \"sinceDay0\": 13}, {\"index\": 49, \"date\": \"2020-04-03T00:00:00\", \"state\": \"VA\", \"positive\": 2012.0, \"negative\": 16993.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 312.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 145.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 108.0, \"recovered\": null, \"hash\": \"cb349d06a8404e8ea589d4d05f5ae53dfdbd1692\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 46.0, \"hospitalized\": 312.0, \"total\": 19005, \"totalTestResults\": 19005, \"posNeg\": 19005, \"fips\": 51, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 7.0, \"negativeIncrease\": 1110.0, \"positiveIncrease\": 306.0, \"totalTestResultsIncrease\": 1416.0, \"ratio\": 0.10586687713759536, \"sinceDay0\": 14}, {\"index\": 555, \"date\": \"2020-03-25T00:00:00\", \"state\": \"VT\", \"positive\": 123.0, \"negative\": 1589.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"007aa638edad042e4ae3bc4e7d899f62b3d3ffee\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 8.0, \"hospitalized\": null, \"total\": 1712, \"totalTestResults\": 1712, \"posNeg\": 1712, \"fips\": 50, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 149.0, \"positiveIncrease\": 28.0, \"totalTestResultsIncrease\": 177.0, \"ratio\": 0.07184579439252337, \"sinceDay0\": 0}, {\"index\": 499, \"date\": \"2020-03-26T00:00:00\", \"state\": \"VT\", \"positive\": 158.0, \"negative\": 1850.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"994b0d80648160d62da49b803410ff385ef7f906\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 9.0, \"hospitalized\": null, \"total\": 2008, \"totalTestResults\": 2008, \"posNeg\": 2008, \"fips\": 50, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 261.0, \"positiveIncrease\": 35.0, \"totalTestResultsIncrease\": 296.0, \"ratio\": 0.07868525896414343, \"sinceDay0\": 1}, {\"index\": 443, \"date\": \"2020-03-27T00:00:00\", \"state\": \"VT\", \"positive\": 184.0, \"negative\": 2077.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 18.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0064eda2b4b2bd74f386a29d0fa13b8378aff141\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 10.0, \"hospitalized\": 18.0, \"total\": 2261, \"totalTestResults\": 2261, \"posNeg\": 2261, \"fips\": 50, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 18.0, \"negativeIncrease\": 227.0, \"positiveIncrease\": 26.0, \"totalTestResultsIncrease\": 253.0, \"ratio\": 0.08137992038920831, \"sinceDay0\": 2}, {\"index\": 387, \"date\": \"2020-03-28T00:00:00\", \"state\": \"VT\", \"positive\": 211.0, \"negative\": 2163.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 18.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c531c6adaae5c5623a25bebe275eb0269f0e549e\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 12.0, \"hospitalized\": 18.0, \"total\": 2374, \"totalTestResults\": 2374, \"posNeg\": 2374, \"fips\": 50, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 86.0, \"positiveIncrease\": 27.0, \"totalTestResultsIncrease\": 113.0, \"ratio\": 0.08887952822240944, \"sinceDay0\": 3}, {\"index\": 331, \"date\": \"2020-03-29T00:00:00\", \"state\": \"VT\", \"positive\": 235.0, \"negative\": 3466.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 18.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"6378ad325a9d0e9f7f1edfeb369856d460b5e9d8\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 12.0, \"hospitalized\": 18.0, \"total\": 3701, \"totalTestResults\": 3701, \"posNeg\": 3701, \"fips\": 50, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1303.0, \"positiveIncrease\": 24.0, \"totalTestResultsIncrease\": 1327.0, \"ratio\": 0.06349635233720616, \"sinceDay0\": 4}, {\"index\": 275, \"date\": \"2020-03-30T00:00:00\", \"state\": \"VT\", \"positive\": 256.0, \"negative\": 3674.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 18.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"707ea7e30f8939272fe9b6691b379a0385237953\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 12.0, \"hospitalized\": 18.0, \"total\": 3930, \"totalTestResults\": 3930, \"posNeg\": 3930, \"fips\": 50, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 208.0, \"positiveIncrease\": 21.0, \"totalTestResultsIncrease\": 229.0, \"ratio\": 0.06513994910941476, \"sinceDay0\": 5}, {\"index\": 219, \"date\": \"2020-03-31T00:00:00\", \"state\": \"VT\", \"positive\": 293.0, \"negative\": 3957.0, \"pending\": null, \"hospitalizedCurrently\": 21.0, \"hospitalizedCumulative\": 36.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 15.0, \"hash\": \"f7ff1c5b387b478086752b2ba379a2aaab0bf9fd\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 13.0, \"hospitalized\": 36.0, \"total\": 4250, \"totalTestResults\": 4250, \"posNeg\": 4250, \"fips\": 50, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 18.0, \"negativeIncrease\": 283.0, \"positiveIncrease\": 37.0, \"totalTestResultsIncrease\": 320.0, \"ratio\": 0.06894117647058824, \"sinceDay0\": 6}, {\"index\": 163, \"date\": \"2020-04-01T00:00:00\", \"state\": \"VT\", \"positive\": 321.0, \"negative\": 4174.0, \"pending\": null, \"hospitalizedCurrently\": 30.0, \"hospitalizedCumulative\": 45.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 15.0, \"hash\": \"09d62e8a97e7673d2cb199f97cefebe931639672\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 16.0, \"hospitalized\": 45.0, \"total\": 4495, \"totalTestResults\": 4495, \"posNeg\": 4495, \"fips\": 50, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 9.0, \"negativeIncrease\": 217.0, \"positiveIncrease\": 28.0, \"totalTestResultsIncrease\": 245.0, \"ratio\": 0.071412680756396, \"sinceDay0\": 7}, {\"index\": 107, \"date\": \"2020-04-02T00:00:00\", \"state\": \"VT\", \"positive\": 338.0, \"negative\": 4711.0, \"pending\": null, \"hospitalizedCurrently\": 29.0, \"hospitalizedCumulative\": 45.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 15.0, \"hash\": \"7510d18997abe87e7201c6841efcdf23546e72e3\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 17.0, \"hospitalized\": 45.0, \"total\": 5049, \"totalTestResults\": 5049, \"posNeg\": 5049, \"fips\": 50, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 537.0, \"positiveIncrease\": 17.0, \"totalTestResultsIncrease\": 554.0, \"ratio\": 0.06694394929689047, \"sinceDay0\": 8}, {\"index\": 51, \"date\": \"2020-04-03T00:00:00\", \"state\": \"VT\", \"positive\": 389.0, \"negative\": 4839.0, \"pending\": null, \"hospitalizedCurrently\": 29.0, \"hospitalizedCumulative\": 45.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 15.0, \"hash\": \"fd502b9dcb8608ca17ea5eecf37d01466c5f5389\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 17.0, \"hospitalized\": 45.0, \"total\": 5228, \"totalTestResults\": 5228, \"posNeg\": 5228, \"fips\": 50, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 128.0, \"positiveIncrease\": 51.0, \"totalTestResultsIncrease\": 179.0, \"ratio\": 0.074407039020658, \"sinceDay0\": 9}, {\"index\": 1519, \"date\": \"2020-03-07T00:00:00\", \"state\": \"WA\", \"positive\": 102.0, \"negative\": 370.0, \"pending\": 66.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"bba4f8c850e820bd03b106bdf1e40f53bca745cd\", \"dateChecked\": \"2020-03-07T21:00:00Z\", \"death\": 16.0, \"hospitalized\": null, \"total\": 538, \"totalTestResults\": 472, \"posNeg\": 472, \"fips\": 53, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 23.0, \"totalTestResultsIncrease\": 23.0, \"ratio\": 0.1895910780669145, \"sinceDay0\": 0}, {\"index\": 1468, \"date\": \"2020-03-08T00:00:00\", \"state\": \"WA\", \"positive\": 102.0, \"negative\": 640.0, \"pending\": 60.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ff203f889be06e02d7abbc241bb3327974f62c59\", \"dateChecked\": \"2020-03-08T20:00:00Z\", \"death\": 18.0, \"hospitalized\": null, \"total\": 802, \"totalTestResults\": 742, \"posNeg\": 742, \"fips\": 53, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 270.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 270.0, \"ratio\": 0.12718204488778054, \"sinceDay0\": 1}, {\"index\": 1417, \"date\": \"2020-03-09T00:00:00\", \"state\": \"WA\", \"positive\": 136.0, \"negative\": 1110.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d72514f02a70119a149f4bc9d6ec6cb789a7e255\", \"dateChecked\": \"2020-03-09T20:00:00Z\", \"death\": 22.0, \"hospitalized\": null, \"total\": 1246, \"totalTestResults\": 1246, \"posNeg\": 1246, \"fips\": 53, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 470.0, \"positiveIncrease\": 34.0, \"totalTestResultsIncrease\": 504.0, \"ratio\": 0.10914927768860354, \"sinceDay0\": 2}, {\"index\": 1366, \"date\": \"2020-03-10T00:00:00\", \"state\": \"WA\", \"positive\": 162.0, \"negative\": 1110.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"06768336fc25d73cd5c617780d60df98257b9efc\", \"dateChecked\": \"2020-03-10T20:00:00Z\", \"death\": 24.0, \"hospitalized\": null, \"total\": 1272, \"totalTestResults\": 1272, \"posNeg\": 1272, \"fips\": 53, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 26.0, \"totalTestResultsIncrease\": 26.0, \"ratio\": 0.12735849056603774, \"sinceDay0\": 3}, {\"index\": 1315, \"date\": \"2020-03-11T00:00:00\", \"state\": \"WA\", \"positive\": 267.0, \"negative\": 2175.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f3865367145deea2d1be9a82dd6bd3d055ac2c85\", \"dateChecked\": \"2020-03-11T20:00:00Z\", \"death\": 24.0, \"hospitalized\": null, \"total\": 2442, \"totalTestResults\": 2442, \"posNeg\": 2442, \"fips\": 53, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1065.0, \"positiveIncrease\": 105.0, \"totalTestResultsIncrease\": 1170.0, \"ratio\": 0.10933660933660934, \"sinceDay0\": 4}, {\"index\": 1264, \"date\": \"2020-03-12T00:00:00\", \"state\": \"WA\", \"positive\": 337.0, \"negative\": 3037.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b346d7b6e661fa57b707151beb7062178a311a51\", \"dateChecked\": \"2020-03-12T20:00:00Z\", \"death\": 29.0, \"hospitalized\": null, \"total\": 3374, \"totalTestResults\": 3374, \"posNeg\": 3374, \"fips\": 53, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 862.0, \"positiveIncrease\": 70.0, \"totalTestResultsIncrease\": 932.0, \"ratio\": 0.0998814463544754, \"sinceDay0\": 5}, {\"index\": 1213, \"date\": \"2020-03-13T00:00:00\", \"state\": \"WA\", \"positive\": 457.0, \"negative\": 4350.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c99bf19d3a7a6a5973c1b9b48d8cf526bc91647e\", \"dateChecked\": \"2020-03-13T20:00:00Z\", \"death\": 31.0, \"hospitalized\": null, \"total\": 4807, \"totalTestResults\": 4807, \"posNeg\": 4807, \"fips\": 53, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1313.0, \"positiveIncrease\": 120.0, \"totalTestResultsIncrease\": 1433.0, \"ratio\": 0.0950696900353651, \"sinceDay0\": 6}, {\"index\": 1162, \"date\": \"2020-03-14T00:00:00\", \"state\": \"WA\", \"positive\": 568.0, \"negative\": 6001.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d0c542a7903d9d53eee47064cd36f4618727252d\", \"dateChecked\": \"2020-03-14T20:00:00Z\", \"death\": 37.0, \"hospitalized\": null, \"total\": 6569, \"totalTestResults\": 6569, \"posNeg\": 6569, \"fips\": 53, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1651.0, \"positiveIncrease\": 111.0, \"totalTestResultsIncrease\": 1762.0, \"ratio\": 0.08646673770741362, \"sinceDay0\": 7}, {\"index\": 1111, \"date\": \"2020-03-15T00:00:00\", \"state\": \"WA\", \"positive\": 642.0, \"negative\": 7122.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1c7e7a0baa721892bbf89e899b597d921e807fce\", \"dateChecked\": \"2020-03-15T20:00:00Z\", \"death\": 40.0, \"hospitalized\": null, \"total\": 7764, \"totalTestResults\": 7764, \"posNeg\": 7764, \"fips\": 53, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1121.0, \"positiveIncrease\": 74.0, \"totalTestResultsIncrease\": 1195.0, \"ratio\": 0.08268933539412673, \"sinceDay0\": 8}, {\"index\": 1060, \"date\": \"2020-03-16T00:00:00\", \"state\": \"WA\", \"positive\": 769.0, \"negative\": 9451.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5de3ba2bf662278c0b9e9a023e91181398269132\", \"dateChecked\": \"2020-03-16T20:00:00Z\", \"death\": 42.0, \"hospitalized\": null, \"total\": 10220, \"totalTestResults\": 10220, \"posNeg\": 10220, \"fips\": 53, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2329.0, \"positiveIncrease\": 127.0, \"totalTestResultsIncrease\": 2456.0, \"ratio\": 0.07524461839530333, \"sinceDay0\": 9}, {\"index\": 1004, \"date\": \"2020-03-17T00:00:00\", \"state\": \"WA\", \"positive\": 904.0, \"negative\": 11582.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a36581696a7488a065d62717a6bcb90bcb0e0893\", \"dateChecked\": \"2020-03-17T20:00:00Z\", \"death\": 48.0, \"hospitalized\": null, \"total\": 12486, \"totalTestResults\": 12486, \"posNeg\": 12486, \"fips\": 53, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2131.0, \"positiveIncrease\": 135.0, \"totalTestResultsIncrease\": 2266.0, \"ratio\": 0.07240108921992632, \"sinceDay0\": 10}, {\"index\": 948, \"date\": \"2020-03-18T00:00:00\", \"state\": \"WA\", \"positive\": 1012.0, \"negative\": 13117.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"eb230fa9aea0b5fd1026102c5bd5775579092452\", \"dateChecked\": \"2020-03-18T20:00:00Z\", \"death\": 52.0, \"hospitalized\": null, \"total\": 14129, \"totalTestResults\": 14129, \"posNeg\": 14129, \"fips\": 53, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1535.0, \"positiveIncrease\": 108.0, \"totalTestResultsIncrease\": 1643.0, \"ratio\": 0.07162573430532947, \"sinceDay0\": 11}, {\"index\": 892, \"date\": \"2020-03-19T00:00:00\", \"state\": \"WA\", \"positive\": 1187.0, \"negative\": 15918.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"535a5769677827d78d2939c5f8f9e44eef508975\", \"dateChecked\": \"2020-03-19T20:00:00Z\", \"death\": 66.0, \"hospitalized\": null, \"total\": 17105, \"totalTestResults\": 17105, \"posNeg\": 17105, \"fips\": 53, \"deathIncrease\": 14.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2801.0, \"positiveIncrease\": 175.0, \"totalTestResultsIncrease\": 2976.0, \"ratio\": 0.06939491376790412, \"sinceDay0\": 12}, {\"index\": 836, \"date\": \"2020-03-20T00:00:00\", \"state\": \"WA\", \"positive\": 1376.0, \"negative\": 19336.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c45d0ccbda5510b5e0067fa6d12226f9debfec0e\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 74.0, \"hospitalized\": null, \"total\": 20712, \"totalTestResults\": 20712, \"posNeg\": 20712, \"fips\": 53, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3418.0, \"positiveIncrease\": 189.0, \"totalTestResultsIncrease\": 3607.0, \"ratio\": 0.0664349169563538, \"sinceDay0\": 13}, {\"index\": 780, \"date\": \"2020-03-21T00:00:00\", \"state\": \"WA\", \"positive\": 1524.0, \"negative\": 21719.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e89ca534af406d512dad526cfc1b5a1e64f75f0c\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 83.0, \"hospitalized\": null, \"total\": 23243, \"totalTestResults\": 23243, \"posNeg\": 23243, \"fips\": 53, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2383.0, \"positiveIncrease\": 148.0, \"totalTestResultsIncrease\": 2531.0, \"ratio\": 0.06556812803854924, \"sinceDay0\": 14}, {\"index\": 724, \"date\": \"2020-03-22T00:00:00\", \"state\": \"WA\", \"positive\": 1793.0, \"negative\": 25328.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"072f5a891339bd1334dfd2ef0458210d55271483\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 94.0, \"hospitalized\": null, \"total\": 27121, \"totalTestResults\": 27121, \"posNeg\": 27121, \"fips\": 53, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3609.0, \"positiveIncrease\": 269.0, \"totalTestResultsIncrease\": 3878.0, \"ratio\": 0.06611113159544264, \"sinceDay0\": 15}, {\"index\": 668, \"date\": \"2020-03-23T00:00:00\", \"state\": \"WA\", \"positive\": 1996.0, \"negative\": 28879.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a3330315ca0c6d8393cbffc5d4da83ba0e7a116b\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 95.0, \"hospitalized\": null, \"total\": 30875, \"totalTestResults\": 30875, \"posNeg\": 30875, \"fips\": 53, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3551.0, \"positiveIncrease\": 203.0, \"totalTestResultsIncrease\": 3754.0, \"ratio\": 0.06464777327935223, \"sinceDay0\": 16}, {\"index\": 612, \"date\": \"2020-03-24T00:00:00\", \"state\": \"WA\", \"positive\": 2221.0, \"negative\": 31712.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9da4d0ab70b396d48bb42e53afa63e5d21c41aef\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 110.0, \"hospitalized\": null, \"total\": 33933, \"totalTestResults\": 33933, \"posNeg\": 33933, \"fips\": 53, \"deathIncrease\": 15.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2833.0, \"positiveIncrease\": 225.0, \"totalTestResultsIncrease\": 3058.0, \"ratio\": 0.06545250935667345, \"sinceDay0\": 17}, {\"index\": 556, \"date\": \"2020-03-25T00:00:00\", \"state\": \"WA\", \"positive\": 2469.0, \"negative\": 31712.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"44b3cb99139fc5b8f131fa7216e447a156a958b4\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 123.0, \"hospitalized\": null, \"total\": 34181, \"totalTestResults\": 34181, \"posNeg\": 34181, \"fips\": 53, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 248.0, \"totalTestResultsIncrease\": 248.0, \"ratio\": 0.07223311196278634, \"sinceDay0\": 18}, {\"index\": 500, \"date\": \"2020-03-26T00:00:00\", \"state\": \"WA\", \"positive\": 2580.0, \"negative\": 31712.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e178057fc2a88562fb8b27dcb5cb7ce3bb9da334\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 132.0, \"hospitalized\": null, \"total\": 34292, \"totalTestResults\": 34292, \"posNeg\": 34292, \"fips\": 53, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 111.0, \"totalTestResultsIncrease\": 111.0, \"ratio\": 0.07523620669543916, \"sinceDay0\": 19}, {\"index\": 444, \"date\": \"2020-03-27T00:00:00\", \"state\": \"WA\", \"positive\": 3207.0, \"negative\": 43173.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c6ef40387ed54825d111164344c738e39fc62ef5\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 147.0, \"hospitalized\": null, \"total\": 46380, \"totalTestResults\": 46380, \"posNeg\": 46380, \"fips\": 53, \"deathIncrease\": 15.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 11461.0, \"positiveIncrease\": 627.0, \"totalTestResultsIncrease\": 12088.0, \"ratio\": 0.06914618369987063, \"sinceDay0\": 20}, {\"index\": 388, \"date\": \"2020-03-28T00:00:00\", \"state\": \"WA\", \"positive\": 3723.0, \"negative\": 49015.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 254.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"aa547bbffd960fa3d6684722df352a64ab786e19\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 175.0, \"hospitalized\": 254.0, \"total\": 52738, \"totalTestResults\": 52738, \"posNeg\": 52738, \"fips\": 53, \"deathIncrease\": 28.0, \"hospitalizedIncrease\": 254.0, \"negativeIncrease\": 5842.0, \"positiveIncrease\": 516.0, \"totalTestResultsIncrease\": 6358.0, \"ratio\": 0.070594258409496, \"sinceDay0\": 21}, {\"index\": 332, \"date\": \"2020-03-29T00:00:00\", \"state\": \"WA\", \"positive\": 4310.0, \"negative\": 54896.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 254.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"79de2d56dfc5fe5931f0670e225388f974f163a9\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 189.0, \"hospitalized\": 254.0, \"total\": 59206, \"totalTestResults\": 59206, \"posNeg\": 59206, \"fips\": 53, \"deathIncrease\": 14.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5881.0, \"positiveIncrease\": 587.0, \"totalTestResultsIncrease\": 6468.0, \"ratio\": 0.0727966760125663, \"sinceDay0\": 22}, {\"index\": 276, \"date\": \"2020-03-30T00:00:00\", \"state\": \"WA\", \"positive\": 4896.0, \"negative\": 60566.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 254.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c734382e8a516a0f55f370aacda4ac92b877649e\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 195.0, \"hospitalized\": 254.0, \"total\": 65462, \"totalTestResults\": 65462, \"posNeg\": 65462, \"fips\": 53, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5670.0, \"positiveIncrease\": 586.0, \"totalTestResultsIncrease\": 6256.0, \"ratio\": 0.07479148208120742, \"sinceDay0\": 23}, {\"index\": 220, \"date\": \"2020-03-31T00:00:00\", \"state\": \"WA\", \"positive\": 4896.0, \"negative\": 60566.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 254.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"215fd829abdd735dea112aded7893ab62d5310ac\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 195.0, \"hospitalized\": 254.0, \"total\": 65462, \"totalTestResults\": 65462, \"posNeg\": 65462, \"fips\": 53, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.07479148208120742, \"sinceDay0\": 24}, {\"index\": 164, \"date\": \"2020-04-01T00:00:00\", \"state\": \"WA\", \"positive\": 5634.0, \"negative\": 60566.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 254.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d6cb23f0dc40421b2d167caba2408a74cfcaf9a1\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 224.0, \"hospitalized\": 254.0, \"total\": 66200, \"totalTestResults\": 66200, \"posNeg\": 66200, \"fips\": 53, \"deathIncrease\": 29.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 738.0, \"totalTestResultsIncrease\": 738.0, \"ratio\": 0.08510574018126889, \"sinceDay0\": 25}, {\"index\": 108, \"date\": \"2020-04-02T00:00:00\", \"state\": \"WA\", \"positive\": 5984.0, \"negative\": 68814.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 254.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"85955197769abfbadd9dcbe4a2678ab67b3e6822\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 247.0, \"hospitalized\": 254.0, \"total\": 74798, \"totalTestResults\": 74798, \"posNeg\": 74798, \"fips\": 53, \"deathIncrease\": 23.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 8248.0, \"positiveIncrease\": 350.0, \"totalTestResultsIncrease\": 8598.0, \"ratio\": 0.0800021390946282, \"sinceDay0\": 26}, {\"index\": 52, \"date\": \"2020-04-03T00:00:00\", \"state\": \"WA\", \"positive\": 6585.0, \"negative\": 72833.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 254.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"959e56f464378567061d69a9f5fe856b61563bc4\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 262.0, \"hospitalized\": 254.0, \"total\": 79418, \"totalTestResults\": 79418, \"posNeg\": 79418, \"fips\": 53, \"deathIncrease\": 15.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4019.0, \"positiveIncrease\": 601.0, \"totalTestResultsIncrease\": 4620.0, \"ratio\": 0.08291571180336951, \"sinceDay0\": 27}, {\"index\": 949, \"date\": \"2020-03-18T00:00:00\", \"state\": \"WI\", \"positive\": 106.0, \"negative\": 1577.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c6687fa3edbbc8d56cf9953ddbf05a0988642570\", \"dateChecked\": \"2020-03-18T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 1683, \"totalTestResults\": 1683, \"posNeg\": 1683, \"fips\": 55, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 539.0, \"positiveIncrease\": 34.0, \"totalTestResultsIncrease\": 573.0, \"ratio\": 0.0629827688651218, \"sinceDay0\": 0}, {\"index\": 893, \"date\": \"2020-03-19T00:00:00\", \"state\": \"WI\", \"positive\": 155.0, \"negative\": 2192.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"04cf4cb3009a0ce03e8c1a25c0fab069f3b6e5bc\", \"dateChecked\": \"2020-03-19T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 2347, \"totalTestResults\": 2347, \"posNeg\": 2347, \"fips\": 55, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 615.0, \"positiveIncrease\": 49.0, \"totalTestResultsIncrease\": 664.0, \"ratio\": 0.06604175543246697, \"sinceDay0\": 1}, {\"index\": 837, \"date\": \"2020-03-20T00:00:00\", \"state\": \"WI\", \"positive\": 206.0, \"negative\": 3455.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"93fb2a48a14e3d7dc1b46f9735b75d4f211b378b\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 3.0, \"hospitalized\": null, \"total\": 3661, \"totalTestResults\": 3661, \"posNeg\": 3661, \"fips\": 55, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1263.0, \"positiveIncrease\": 51.0, \"totalTestResultsIncrease\": 1314.0, \"ratio\": 0.056268779022125105, \"sinceDay0\": 2}, {\"index\": 781, \"date\": \"2020-03-21T00:00:00\", \"state\": \"WI\", \"positive\": 281.0, \"negative\": 4628.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ba16b5db1cba4db66a6ee6542b106fe8c6241158\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 4.0, \"hospitalized\": null, \"total\": 4909, \"totalTestResults\": 4909, \"posNeg\": 4909, \"fips\": 55, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1173.0, \"positiveIncrease\": 75.0, \"totalTestResultsIncrease\": 1248.0, \"ratio\": 0.05724180077408841, \"sinceDay0\": 3}, {\"index\": 725, \"date\": \"2020-03-22T00:00:00\", \"state\": \"WI\", \"positive\": 385.0, \"negative\": 6230.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5c152a9b70d088a432901c770430f27845f16456\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 4.0, \"hospitalized\": null, \"total\": 6615, \"totalTestResults\": 6615, \"posNeg\": 6615, \"fips\": 55, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1602.0, \"positiveIncrease\": 104.0, \"totalTestResultsIncrease\": 1706.0, \"ratio\": 0.0582010582010582, \"sinceDay0\": 4}, {\"index\": 669, \"date\": \"2020-03-23T00:00:00\", \"state\": \"WI\", \"positive\": 416.0, \"negative\": 7050.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4d367dd2bdc949d101983f7dca73a29062b3f1f7\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 5.0, \"hospitalized\": null, \"total\": 7466, \"totalTestResults\": 7466, \"posNeg\": 7466, \"fips\": 55, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 820.0, \"positiveIncrease\": 31.0, \"totalTestResultsIncrease\": 851.0, \"ratio\": 0.055719260648272165, \"sinceDay0\": 5}, {\"index\": 613, \"date\": \"2020-03-24T00:00:00\", \"state\": \"WI\", \"positive\": 457.0, \"negative\": 8237.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f3b3b8071eeb99db0f8a0ba361cffbf1d17aa843\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 5.0, \"hospitalized\": null, \"total\": 8694, \"totalTestResults\": 8694, \"posNeg\": 8694, \"fips\": 55, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1187.0, \"positiveIncrease\": 41.0, \"totalTestResultsIncrease\": 1228.0, \"ratio\": 0.05256498734759604, \"sinceDay0\": 6}, {\"index\": 557, \"date\": \"2020-03-25T00:00:00\", \"state\": \"WI\", \"positive\": 585.0, \"negative\": 10089.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"990d1cee0a0325690dd1ddb866cc2ec4d457130a\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 7.0, \"hospitalized\": null, \"total\": 10674, \"totalTestResults\": 10674, \"posNeg\": 10674, \"fips\": 55, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1852.0, \"positiveIncrease\": 128.0, \"totalTestResultsIncrease\": 1980.0, \"ratio\": 0.05480607082630692, \"sinceDay0\": 7}, {\"index\": 501, \"date\": \"2020-03-26T00:00:00\", \"state\": \"WI\", \"positive\": 707.0, \"negative\": 11583.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9683cfe2bd653af14dcfc375a493d40198712796\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 8.0, \"hospitalized\": null, \"total\": 12290, \"totalTestResults\": 12290, \"posNeg\": 12290, \"fips\": 55, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1494.0, \"positiveIncrease\": 122.0, \"totalTestResultsIncrease\": 1616.0, \"ratio\": 0.05752644426362897, \"sinceDay0\": 8}, {\"index\": 445, \"date\": \"2020-03-27T00:00:00\", \"state\": \"WI\", \"positive\": 842.0, \"negative\": 13140.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8c63c548c621e8d51f2c08c5e2e7a34947238262\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 13.0, \"hospitalized\": null, \"total\": 13982, \"totalTestResults\": 13982, \"posNeg\": 13982, \"fips\": 55, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1557.0, \"positiveIncrease\": 135.0, \"totalTestResultsIncrease\": 1692.0, \"ratio\": 0.06022028322128451, \"sinceDay0\": 9}, {\"index\": 389, \"date\": \"2020-03-28T00:00:00\", \"state\": \"WI\", \"positive\": 989.0, \"negative\": 15232.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"cc9a38626e488667d80901c4814ba600f9f923cb\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 13.0, \"hospitalized\": null, \"total\": 16221, \"totalTestResults\": 16221, \"posNeg\": 16221, \"fips\": 55, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2092.0, \"positiveIncrease\": 147.0, \"totalTestResultsIncrease\": 2239.0, \"ratio\": 0.060970347080944454, \"sinceDay0\": 10}, {\"index\": 333, \"date\": \"2020-03-29T00:00:00\", \"state\": \"WI\", \"positive\": 1112.0, \"negative\": 16550.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8687db826f68ba2e1871b9798043b5acf7de9e5e\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 13.0, \"hospitalized\": null, \"total\": 17662, \"totalTestResults\": 17662, \"posNeg\": 17662, \"fips\": 55, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1318.0, \"positiveIncrease\": 123.0, \"totalTestResultsIncrease\": 1441.0, \"ratio\": 0.06296002717699015, \"sinceDay0\": 11}, {\"index\": 277, \"date\": \"2020-03-30T00:00:00\", \"state\": \"WI\", \"positive\": 1221.0, \"negative\": 15856.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"23dce446b3a30d5d3dda0c1c88c909196d75aaab\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 14.0, \"hospitalized\": null, \"total\": 17077, \"totalTestResults\": 17077, \"posNeg\": 17077, \"fips\": 55, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": -694.0, \"positiveIncrease\": 109.0, \"totalTestResultsIncrease\": -585.0, \"ratio\": 0.0714996779293787, \"sinceDay0\": 12}, {\"index\": 221, \"date\": \"2020-03-31T00:00:00\", \"state\": \"WI\", \"positive\": 1351.0, \"negative\": 17375.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 337.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5743ca4c966b5e5a927d00d404c31fbb7cc91341\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 16.0, \"hospitalized\": 337.0, \"total\": 18726, \"totalTestResults\": 18726, \"posNeg\": 18726, \"fips\": 55, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 337.0, \"negativeIncrease\": 1519.0, \"positiveIncrease\": 130.0, \"totalTestResultsIncrease\": 1649.0, \"ratio\": 0.07214567980348179, \"sinceDay0\": 13}, {\"index\": 165, \"date\": \"2020-04-01T00:00:00\", \"state\": \"WI\", \"positive\": 1550.0, \"negative\": 18819.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 398.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"3a304dc1edaaf3c59465b033f7b4aa76ad3dec32\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 24.0, \"hospitalized\": 398.0, \"total\": 20369, \"totalTestResults\": 20369, \"posNeg\": 20369, \"fips\": 55, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 61.0, \"negativeIncrease\": 1444.0, \"positiveIncrease\": 199.0, \"totalTestResultsIncrease\": 1643.0, \"ratio\": 0.07609602827826599, \"sinceDay0\": 14}, {\"index\": 109, \"date\": \"2020-04-02T00:00:00\", \"state\": \"WI\", \"positive\": 1730.0, \"negative\": 20317.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 461.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"834fc46c2905f903a94bd047bced3c8b65158dbe\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 31.0, \"hospitalized\": 461.0, \"total\": 22047, \"totalTestResults\": 22047, \"posNeg\": 22047, \"fips\": 55, \"deathIncrease\": 7.0, \"hospitalizedIncrease\": 63.0, \"negativeIncrease\": 1498.0, \"positiveIncrease\": 180.0, \"totalTestResultsIncrease\": 1678.0, \"ratio\": 0.07846872590375108, \"sinceDay0\": 15}, {\"index\": 53, \"date\": \"2020-04-03T00:00:00\", \"state\": \"WI\", \"positive\": 1912.0, \"negative\": 22377.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 487.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ac2e774ab91aaf87bd106a4d19ddc35d0a14d163\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 37.0, \"hospitalized\": 487.0, \"total\": 24289, \"totalTestResults\": 24289, \"posNeg\": 24289, \"fips\": 55, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 26.0, \"negativeIncrease\": 2060.0, \"positiveIncrease\": 182.0, \"totalTestResultsIncrease\": 2242.0, \"ratio\": 0.07871876157931575, \"sinceDay0\": 16}, {\"index\": 334, \"date\": \"2020-03-29T00:00:00\", \"state\": \"WV\", \"positive\": 113.0, \"negative\": 2705.0, \"pending\": 0.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"95339cc3a82c7850a55cdc2d30895277e29795d5\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 0.0, \"hospitalized\": 1.0, \"total\": 2818, \"totalTestResults\": 2818, \"posNeg\": 2818, \"fips\": 54, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 374.0, \"positiveIncrease\": 17.0, \"totalTestResultsIncrease\": 391.0, \"ratio\": 0.04009936124911285, \"sinceDay0\": 0}, {\"index\": 278, \"date\": \"2020-03-30T00:00:00\", \"state\": \"WV\", \"positive\": 126.0, \"negative\": 2984.0, \"pending\": 0.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ce4f1662c7da92e2834a2a7b3bfdc61882f80794\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 1.0, \"hospitalized\": 1.0, \"total\": 3110, \"totalTestResults\": 3110, \"posNeg\": 3110, \"fips\": 54, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 279.0, \"positiveIncrease\": 13.0, \"totalTestResultsIncrease\": 292.0, \"ratio\": 0.04051446945337621, \"sinceDay0\": 1}, {\"index\": 222, \"date\": \"2020-03-31T00:00:00\", \"state\": \"WV\", \"positive\": 162.0, \"negative\": 3981.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8e2d2b08f0436cdcaf61239f004ddbef807c2a89\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 1.0, \"hospitalized\": 1.0, \"total\": 4143, \"totalTestResults\": 4143, \"posNeg\": 4143, \"fips\": 54, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 997.0, \"positiveIncrease\": 36.0, \"totalTestResultsIncrease\": 1033.0, \"ratio\": 0.0391020999275887, \"sinceDay0\": 2}, {\"index\": 166, \"date\": \"2020-04-01T00:00:00\", \"state\": \"WV\", \"positive\": 191.0, \"negative\": 4384.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"264082faaa6983c76d88bf13c4444943677bfd72\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 1.0, \"hospitalized\": 1.0, \"total\": 4575, \"totalTestResults\": 4575, \"posNeg\": 4575, \"fips\": 54, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 403.0, \"positiveIncrease\": 29.0, \"totalTestResultsIncrease\": 432.0, \"ratio\": 0.04174863387978142, \"sinceDay0\": 3}, {\"index\": 110, \"date\": \"2020-04-02T00:00:00\", \"state\": \"WV\", \"positive\": 217.0, \"negative\": 5276.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"bf37a7e21c11c01b281839b088a20c114f1455eb\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 2.0, \"hospitalized\": 1.0, \"total\": 5493, \"totalTestResults\": 5493, \"posNeg\": 5493, \"fips\": 54, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 892.0, \"positiveIncrease\": 26.0, \"totalTestResultsIncrease\": 918.0, \"ratio\": 0.03950482432186419, \"sinceDay0\": 4}, {\"index\": 54, \"date\": \"2020-04-03T00:00:00\", \"state\": \"WV\", \"positive\": 237.0, \"negative\": 6130.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0d5735f82295c4874f145fbc22684001af9837e6\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 2.0, \"hospitalized\": 1.0, \"total\": 6367, \"totalTestResults\": 6367, \"posNeg\": 6367, \"fips\": 54, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 854.0, \"positiveIncrease\": 20.0, \"totalTestResultsIncrease\": 874.0, \"ratio\": 0.03722318203235433, \"sinceDay0\": 5}, {\"index\": 223, \"date\": \"2020-03-31T00:00:00\", \"state\": \"WY\", \"positive\": 109.0, \"negative\": 1999.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 17.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 26.0, \"hash\": \"56481c095ddf7e629ed8e0a3c0eedf3ce33180f7\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 0.0, \"hospitalized\": 17.0, \"total\": 2108, \"totalTestResults\": 2108, \"posNeg\": 2108, \"fips\": 56, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 159.0, \"positiveIncrease\": 15.0, \"totalTestResultsIncrease\": 174.0, \"ratio\": 0.051707779886148005, \"sinceDay0\": 0}, {\"index\": 167, \"date\": \"2020-04-01T00:00:00\", \"state\": \"WY\", \"positive\": 130.0, \"negative\": 2218.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 18.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 31.0, \"hash\": \"a5690ff900709e2e51e09c47b186c26c6bb7d126\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 0.0, \"hospitalized\": 18.0, \"total\": 2348, \"totalTestResults\": 2348, \"posNeg\": 2348, \"fips\": 56, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 1.0, \"negativeIncrease\": 219.0, \"positiveIncrease\": 21.0, \"totalTestResultsIncrease\": 240.0, \"ratio\": 0.05536626916524702, \"sinceDay0\": 1}, {\"index\": 111, \"date\": \"2020-04-02T00:00:00\", \"state\": \"WY\", \"positive\": 150.0, \"negative\": 2439.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 19.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 31.0, \"hash\": \"eb0c78de23230d157b8ec36ace867b3cb3657118\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 0.0, \"hospitalized\": 19.0, \"total\": 2589, \"totalTestResults\": 2589, \"posNeg\": 2589, \"fips\": 56, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 1.0, \"negativeIncrease\": 221.0, \"positiveIncrease\": 20.0, \"totalTestResultsIncrease\": 241.0, \"ratio\": 0.05793742757821553, \"sinceDay0\": 2}, {\"index\": 55, \"date\": \"2020-04-03T00:00:00\", \"state\": \"WY\", \"positive\": 162.0, \"negative\": 2704.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 21.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 37.0, \"hash\": \"3fa4d519d76a3a9a53f819f66887a8a4f7587958\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 0.0, \"hospitalized\": 21.0, \"total\": 2866, \"totalTestResults\": 2866, \"posNeg\": 2866, \"fips\": 56, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 2.0, \"negativeIncrease\": 265.0, \"positiveIncrease\": 12.0, \"totalTestResultsIncrease\": 277.0, \"ratio\": 0.056524773203070484, \"sinceDay0\": 3}], \"data-b85121732bffee7f18d1b46eac2b852b\": [{\"index\": 0, \"day\": 1, \"case\": 200.0, \"doubling period\": \"every day\"}, {\"index\": 1, \"day\": 2, \"case\": 400.0, \"doubling period\": \"every day\"}, {\"index\": 2, \"day\": 3, \"case\": 800.0, \"doubling period\": \"every day\"}, {\"index\": 3, \"day\": 4, \"case\": 1600.0, \"doubling period\": \"every day\"}, {\"index\": 4, \"day\": 5, \"case\": 3200.0, \"doubling period\": \"every day\"}, {\"index\": 5, \"day\": 10, \"case\": 102400.0, \"doubling period\": \"every day\"}, {\"index\": 6, \"day\": 15, \"case\": 3276800.0, \"doubling period\": \"every day\"}, {\"index\": 7, \"day\": 20, \"case\": 104857600.0, \"doubling period\": \"every day\"}, {\"index\": 8, \"day\": 35, \"case\": 3435973836800.0, \"doubling period\": \"every day\"}, {\"index\": 0, \"day\": 1, \"case\": 125.99210498948732, \"doubling period\": \"three days\"}, {\"index\": 1, \"day\": 2, \"case\": 158.74010519681994, \"doubling period\": \"three days\"}, {\"index\": 2, \"day\": 3, \"case\": 200.0, \"doubling period\": \"three days\"}, {\"index\": 3, \"day\": 4, \"case\": 251.98420997897463, \"doubling period\": \"three days\"}, {\"index\": 4, \"day\": 5, \"case\": 317.48021039363994, \"doubling period\": \"three days\"}, {\"index\": 5, \"day\": 10, \"case\": 1007.9368399158985, \"doubling period\": \"three days\"}, {\"index\": 6, \"day\": 15, \"case\": 3200.0, \"doubling period\": \"three days\"}, {\"index\": 7, \"day\": 20, \"case\": 10159.366732596478, \"doubling period\": \"three days\"}, {\"index\": 8, \"day\": 35, \"case\": 325099.7354430871, \"doubling period\": \"three days\"}, {\"index\": 0, \"day\": 1, \"case\": 110.40895136738122, \"doubling period\": \"every week\"}, {\"index\": 1, \"day\": 2, \"case\": 121.90136542044753, \"doubling period\": \"every week\"}, {\"index\": 2, \"day\": 3, \"case\": 134.5900192632356, \"doubling period\": \"every week\"}, {\"index\": 3, \"day\": 4, \"case\": 148.59942891369485, \"doubling period\": \"every week\"}, {\"index\": 4, \"day\": 5, \"case\": 164.0670712015276, \"doubling period\": \"every week\"}, {\"index\": 5, \"day\": 10, \"case\": 269.1800385264712, \"doubling period\": \"every week\"}, {\"index\": 6, \"day\": 15, \"case\": 441.6358054695249, \"doubling period\": \"every week\"}, {\"index\": 7, \"day\": 20, \"case\": 724.5789314111254, \"doubling period\": \"every week\"}, {\"index\": 8, \"day\": 35, \"case\": 3200.0, \"doubling period\": \"every week\"}], \"data-410fc60666b961dad9e1e4e45412fcd6\": [{\"index\": 0, \"date\": \"2020-04-03T00:00:00\", \"state\": \"AK\", \"positive\": 157.0, \"negative\": 5859.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 15.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"192f851a8f9b68576ed308814322d1333b538699\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 3.0, \"hospitalized\": 15.0, \"total\": 6016, \"totalTestResults\": 6016, \"posNeg\": 6016, \"fips\": 2, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 6.0, \"negativeIncrease\": 980.0, \"positiveIncrease\": 14.0, \"totalTestResultsIncrease\": 994.0, \"ratio\": 0.026097074468085107, \"sinceDay0\": 5}, {\"index\": 1, \"date\": \"2020-04-03T00:00:00\", \"state\": \"AL\", \"positive\": 1432.0, \"negative\": 8187.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"2321b8fce440dd33ac0feef0e923113ffffbf603\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 35.0, \"hospitalized\": null, \"total\": 9619, \"totalTestResults\": 9619, \"posNeg\": 9619, \"fips\": 1, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 684.0, \"positiveIncrease\": 199.0, \"totalTestResultsIncrease\": 883.0, \"ratio\": 0.14887202411893127, \"sinceDay0\": 13}, {\"index\": 2, \"date\": \"2020-04-03T00:00:00\", \"state\": \"AR\", \"positive\": 704.0, \"negative\": 8995.0, \"pending\": null, \"hospitalizedCurrently\": 71.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 26.0, \"onVentilatorCumulative\": 39.0, \"recovered\": 60.0, \"hash\": \"1668b119de8dbd14c4334330a55a40591b632995\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 9699, \"totalTestResults\": 9699, \"posNeg\": 9699, \"fips\": 5, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1115.0, \"positiveIncrease\": 61.0, \"totalTestResultsIncrease\": 1176.0, \"ratio\": 0.07258480255696463, \"sinceDay0\": 13}, {\"index\": 4, \"date\": \"2020-04-03T00:00:00\", \"state\": \"AZ\", \"positive\": 1769.0, \"negative\": 22904.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 249.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 91.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"86d38836c9910dcfeb9ec4779c20c399d8da103d\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 41.0, \"hospitalized\": 249.0, \"total\": 24673, \"totalTestResults\": 24673, \"posNeg\": 24673, \"fips\": 4, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 21.0, \"negativeIncrease\": 1793.0, \"positiveIncrease\": 171.0, \"totalTestResultsIncrease\": 1964.0, \"ratio\": 0.07169780731974223, \"sinceDay0\": 13}, {\"index\": 30, \"date\": \"2020-04-03T00:00:00\", \"state\": \"All US\", \"positive\": 271915.0, \"negative\": 1135356.0, \"pending\": 61980.0, \"hospitalizedCurrently\": 19926.0, \"hospitalizedCumulative\": 35991.0, \"inIcuCurrently\": 4686.0, \"inIcuCumulative\": 593.0, \"onVentilatorCurrently\": 70.0, \"onVentilatorCumulative\": 728.0, \"recovered\": 10422.0, \"hash\": null, \"dateChecked\": null, \"death\": 6962.0, \"hospitalized\": 35991.0, \"total\": 1469251, \"totalTestResults\": 1407271, \"posNeg\": 1407271, \"fips\": 1822, \"deathIncrease\": 1178.0, \"hospitalizedIncrease\": 3509.0, \"negativeIncrease\": 106707.0, \"positiveIncrease\": 32906.0, \"totalTestResultsIncrease\": 139613.0, \"ratio\": 7.221055349592441, \"sinceDay0\": 30}, {\"index\": 5, \"date\": \"2020-04-03T00:00:00\", \"state\": \"CA\", \"positive\": 10701.0, \"negative\": 24599.0, \"pending\": 59500.0, \"hospitalizedCurrently\": 2188.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": 901.0, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"67f105bfa3690e07b85e362a0c6c43aa796aba45\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 237.0, \"hospitalized\": null, \"total\": 94800, \"totalTestResults\": 35300, \"posNeg\": 35300, \"fips\": 6, \"deathIncrease\": 34.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 790.0, \"positiveIncrease\": 1510.0, \"totalTestResultsIncrease\": 2300.0, \"ratio\": 0.11287974683544304, \"sinceDay0\": 25}, {\"index\": 6, \"date\": \"2020-04-03T00:00:00\", \"state\": \"CO\", \"positive\": 3728.0, \"negative\": 16683.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 710.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"34cd672827b7383da28377a0761440041fae9232\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 97.0, \"hospitalized\": 710.0, \"total\": 20411, \"totalTestResults\": 20411, \"posNeg\": 20411, \"fips\": 8, \"deathIncrease\": 17.0, \"hospitalizedIncrease\": 90.0, \"negativeIncrease\": 1380.0, \"positiveIncrease\": 386.0, \"totalTestResultsIncrease\": 1766.0, \"ratio\": 0.18264661212091518, \"sinceDay0\": 20}, {\"index\": 7, \"date\": \"2020-04-03T00:00:00\", \"state\": \"CT\", \"positive\": 4914.0, \"negative\": 15101.0, \"pending\": null, \"hospitalizedCurrently\": 909.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1951d0ca03e6ab2d9bffc4856b060402c69ea7e6\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 131.0, \"hospitalized\": null, \"total\": 20015, \"totalTestResults\": 20015, \"posNeg\": 20015, \"fips\": 9, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 625.0, \"positiveIncrease\": 1090.0, \"totalTestResultsIncrease\": 1715.0, \"ratio\": 0.24551586310267298, \"sinceDay0\": 14}, {\"index\": 8, \"date\": \"2020-04-03T00:00:00\", \"state\": \"DC\", \"positive\": 757.0, \"negative\": 4827.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 206.0, \"hash\": \"fbf3f83530b301cee1d7dc47fd0719b435edc428\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 15.0, \"hospitalized\": null, \"total\": 5584, \"totalTestResults\": 5584, \"posNeg\": 5584, \"fips\": 11, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 410.0, \"positiveIncrease\": 104.0, \"totalTestResultsIncrease\": 514.0, \"ratio\": 0.13556590257879655, \"sinceDay0\": 11}, {\"index\": 9, \"date\": \"2020-04-03T00:00:00\", \"state\": \"DE\", \"positive\": 450.0, \"negative\": 4995.0, \"pending\": null, \"hospitalizedCurrently\": 63.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 71.0, \"hash\": \"b840b5921e6e7a1adc67cdefd1c22f4e046d277a\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 14.0, \"hospitalized\": null, \"total\": 5445, \"totalTestResults\": 5445, \"posNeg\": 5445, \"fips\": 10, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 429.0, \"positiveIncrease\": 57.0, \"totalTestResultsIncrease\": 486.0, \"ratio\": 0.08264462809917356, \"sinceDay0\": 9}, {\"index\": 10, \"date\": \"2020-04-03T00:00:00\", \"state\": \"FL\", \"positive\": 9585.0, \"negative\": 82137.0, \"pending\": 1225.0, \"hospitalizedCurrently\": 1215.0, \"hospitalizedCumulative\": 1287.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"fd0c37309c79ae95c06c48e43ce956652814c5e5\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 163.0, \"hospitalized\": 1287.0, \"total\": 92947, \"totalTestResults\": 91722, \"posNeg\": 91722, \"fips\": 12, \"deathIncrease\": 35.0, \"hospitalizedIncrease\": 164.0, \"negativeIncrease\": 12851.0, \"positiveIncrease\": 1575.0, \"totalTestResultsIncrease\": 14426.0, \"ratio\": 0.10312328531313544, \"sinceDay0\": 19}, {\"index\": 11, \"date\": \"2020-04-03T00:00:00\", \"state\": \"GA\", \"positive\": 5831.0, \"negative\": 19434.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1158.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c82f88637af7d0c85b2360390bb2386b0da43065\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 184.0, \"hospitalized\": 1158.0, \"total\": 25265, \"totalTestResults\": 25265, \"posNeg\": 25265, \"fips\": 13, \"deathIncrease\": 21.0, \"hospitalizedIncrease\": 102.0, \"negativeIncrease\": 1825.0, \"positiveIncrease\": 483.0, \"totalTestResultsIncrease\": 2308.0, \"ratio\": 0.23079358796754404, \"sinceDay0\": 18}, {\"index\": 13, \"date\": \"2020-04-03T00:00:00\", \"state\": \"HI\", \"positive\": 285.0, \"negative\": 10206.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 15.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 6.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 72.0, \"hash\": \"1c81c643bccf41f562ee8a0b1565f639a71e5cb7\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 2.0, \"hospitalized\": 15.0, \"total\": 10491, \"totalTestResults\": 10491, \"posNeg\": 10491, \"fips\": 15, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 27.0, \"totalTestResultsIncrease\": 27.0, \"ratio\": 0.027166142407778097, \"sinceDay0\": 7}, {\"index\": 14, \"date\": \"2020-04-03T00:00:00\", \"state\": \"IA\", \"positive\": 699.0, \"negative\": 8754.0, \"pending\": null, \"hospitalizedCurrently\": 80.0, \"hospitalizedCumulative\": 138.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 188.0, \"hash\": \"feb894b5b255cf3a6496c9856b448a6307f9b022\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 11.0, \"hospitalized\": 138.0, \"total\": 9453, \"totalTestResults\": 9453, \"posNeg\": 9453, \"fips\": 19, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 18.0, \"negativeIncrease\": 700.0, \"positiveIncrease\": 85.0, \"totalTestResultsIncrease\": 785.0, \"ratio\": 0.07394477943509997, \"sinceDay0\": 11}, {\"index\": 15, \"date\": \"2020-04-03T00:00:00\", \"state\": \"ID\", \"positive\": 891.0, \"negative\": 7054.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 56.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 7.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a3f3c21c0ca004354535ce3e1e5108d313bd5a30\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 9.0, \"hospitalized\": 56.0, \"total\": 7945, \"totalTestResults\": 7945, \"posNeg\": 7945, \"fips\": 16, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 7.0, \"negativeIncrease\": 441.0, \"positiveIncrease\": 222.0, \"totalTestResultsIncrease\": 663.0, \"ratio\": 0.11214600377595972, \"sinceDay0\": 8}, {\"index\": 16, \"date\": \"2020-04-03T00:00:00\", \"state\": \"IL\", \"positive\": 8904.0, \"negative\": 39144.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5393eb554824524a4a63bbec9c795869c7869414\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 210.0, \"hospitalized\": null, \"total\": 48048, \"totalTestResults\": 48048, \"posNeg\": 48048, \"fips\": 17, \"deathIncrease\": 53.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3183.0, \"positiveIncrease\": 1209.0, \"totalTestResultsIncrease\": 4392.0, \"ratio\": 0.1853146853146853, \"sinceDay0\": 17}, {\"index\": 17, \"date\": \"2020-04-03T00:00:00\", \"state\": \"IN\", \"positive\": 3437.0, \"negative\": 14398.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b6a582ed478dfba401e4a56efe6e9e4a1b532d04\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 102.0, \"hospitalized\": null, \"total\": 17835, \"totalTestResults\": 17835, \"posNeg\": 17835, \"fips\": 18, \"deathIncrease\": 24.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1152.0, \"positiveIncrease\": 398.0, \"totalTestResultsIncrease\": 1550.0, \"ratio\": 0.19271096159237455, \"sinceDay0\": 13}, {\"index\": 18, \"date\": \"2020-04-03T00:00:00\", \"state\": \"KS\", \"positive\": 620.0, \"negative\": 6454.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 151.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"423f188ae5bf45319e336f75b49a3708bdbc8494\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 17.0, \"hospitalized\": 151.0, \"total\": 7074, \"totalTestResults\": 7074, \"posNeg\": 7074, \"fips\": 20, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 13.0, \"negativeIncrease\": 395.0, \"positiveIncrease\": 68.0, \"totalTestResultsIncrease\": 463.0, \"ratio\": 0.08764489680520215, \"sinceDay0\": 9}, {\"index\": 19, \"date\": \"2020-04-03T00:00:00\", \"state\": \"KY\", \"positive\": 770.0, \"negative\": 12034.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b7ec08543b9b2324d60694f6721979dc00c54543\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 31.0, \"hospitalized\": null, \"total\": 12804, \"totalTestResults\": 12804, \"posNeg\": 12804, \"fips\": 21, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4814.0, \"positiveIncrease\": 90.0, \"totalTestResultsIncrease\": 4904.0, \"ratio\": 0.06013745704467354, \"sinceDay0\": 11}, {\"index\": 20, \"date\": \"2020-04-03T00:00:00\", \"state\": \"LA\", \"positive\": 10297.0, \"negative\": 43348.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1707.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 535.0, \"recovered\": null, \"hash\": \"0694f8cf6531a993f01c11a566a18087757b24d2\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 370.0, \"hospitalized\": 1707.0, \"total\": 53645, \"totalTestResults\": 53645, \"posNeg\": 53645, \"fips\": 22, \"deathIncrease\": 60.0, \"hospitalizedIncrease\": 68.0, \"negativeIncrease\": 1412.0, \"positiveIncrease\": 1147.0, \"totalTestResultsIncrease\": 2559.0, \"ratio\": 0.19194705937179607, \"sinceDay0\": 18}, {\"index\": 21, \"date\": \"2020-04-03T00:00:00\", \"state\": \"MA\", \"positive\": 10402.0, \"negative\": 52560.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 966.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b7bee14b9475ba25ad0b28497d483cec03221230\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 192.0, \"hospitalized\": 966.0, \"total\": 62962, \"totalTestResults\": 62962, \"posNeg\": 62962, \"fips\": 25, \"deathIncrease\": 38.0, \"hospitalizedIncrease\": 153.0, \"negativeIncrease\": 4918.0, \"positiveIncrease\": 1436.0, \"totalTestResultsIncrease\": 6354.0, \"ratio\": 0.16521076204694896, \"sinceDay0\": 21}, {\"index\": 22, \"date\": \"2020-04-03T00:00:00\", \"state\": \"MD\", \"positive\": 2758.0, \"negative\": 20932.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 664.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 159.0, \"hash\": \"748f7091af15d9ca085a92ba09b7390f763b6eb5\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 42.0, \"hospitalized\": 664.0, \"total\": 23690, \"totalTestResults\": 23690, \"posNeg\": 23690, \"fips\": 24, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 82.0, \"negativeIncrease\": 2042.0, \"positiveIncrease\": 427.0, \"totalTestResultsIncrease\": 2469.0, \"ratio\": 0.11642043056141832, \"sinceDay0\": 15}, {\"index\": 23, \"date\": \"2020-04-03T00:00:00\", \"state\": \"ME\", \"positive\": 432.0, \"negative\": 6088.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 75.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 113.0, \"hash\": \"4b5209b1b8259d319beb467d9b74d759206853f8\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 9.0, \"hospitalized\": 75.0, \"total\": 6520, \"totalTestResults\": 6520, \"posNeg\": 6520, \"fips\": 23, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 7.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 56.0, \"totalTestResultsIncrease\": 56.0, \"ratio\": 0.06625766871165645, \"sinceDay0\": 11}, {\"index\": 24, \"date\": \"2020-04-03T00:00:00\", \"state\": \"MI\", \"positive\": 12744.0, \"negative\": 11893.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"301039b85ad63d7b9da1b36f9694f4c768754044\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 479.0, \"hospitalized\": null, \"total\": 24637, \"totalTestResults\": 24637, \"posNeg\": 24637, \"fips\": 26, \"deathIncrease\": 62.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 1953.0, \"totalTestResultsIncrease\": 1953.0, \"ratio\": 0.5172707716036855, \"sinceDay0\": 15}, {\"index\": 25, \"date\": \"2020-04-03T00:00:00\", \"state\": \"MN\", \"positive\": 789.0, \"negative\": 23438.0, \"pending\": null, \"hospitalizedCurrently\": 86.0, \"hospitalizedCumulative\": 156.0, \"inIcuCurrently\": 40.0, \"inIcuCumulative\": 40.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"6c45e5c1cc14d97b2d8c49fc1e64ae7a7ebb3861\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 22.0, \"hospitalized\": 156.0, \"total\": 24227, \"totalTestResults\": 24227, \"posNeg\": 24227, \"fips\": 27, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 18.0, \"negativeIncrease\": 1786.0, \"positiveIncrease\": 47.0, \"totalTestResultsIncrease\": 1833.0, \"ratio\": 0.03256697073513023, \"sinceDay0\": 14}, {\"index\": 26, \"date\": \"2020-04-03T00:00:00\", \"state\": \"MO\", \"positive\": 2113.0, \"negative\": 19357.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4b8f07be28b3788c1fbf8838dfb55730f628b262\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 19.0, \"hospitalized\": null, \"total\": 21470, \"totalTestResults\": 21470, \"posNeg\": 21470, \"fips\": 29, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1508.0, \"positiveIncrease\": 279.0, \"totalTestResultsIncrease\": 1787.0, \"ratio\": 0.0984163949697252, \"sinceDay0\": 11}, {\"index\": 28, \"date\": \"2020-04-03T00:00:00\", \"state\": \"MS\", \"positive\": 1358.0, \"negative\": 4753.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 420.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8fa26347da7a40d2568c9ec1881dcb83d4ba139c\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 29.0, \"hospitalized\": 420.0, \"total\": 6111, \"totalTestResults\": 6111, \"posNeg\": 6111, \"fips\": 28, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 60.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 181.0, \"totalTestResultsIncrease\": 181.0, \"ratio\": 0.2222222222222222, \"sinceDay0\": 13}, {\"index\": 29, \"date\": \"2020-04-03T00:00:00\", \"state\": \"MT\", \"positive\": 243.0, \"negative\": 5333.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 24.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"58d29fc14826e53d165af859f9d3b6aa2a562cd4\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 5.0, \"hospitalized\": 24.0, \"total\": 5576, \"totalTestResults\": 5576, \"posNeg\": 5576, \"fips\": 30, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 4.0, \"negativeIncrease\": 240.0, \"positiveIncrease\": 16.0, \"totalTestResultsIncrease\": 256.0, \"ratio\": 0.043579626972740315, \"sinceDay0\": 7}, {\"index\": 30, \"date\": \"2020-04-03T00:00:00\", \"state\": \"NC\", \"positive\": 2093.0, \"negative\": 29505.0, \"pending\": null, \"hospitalizedCurrently\": 184.0, \"hospitalizedCumulative\": 259.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"853296f9cd640052947f0851f15fca08782be536\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 19.0, \"hospitalized\": 259.0, \"total\": 31598, \"totalTestResults\": 31598, \"posNeg\": 31598, \"fips\": 37, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 55.0, \"negativeIncrease\": 2683.0, \"positiveIncrease\": 236.0, \"totalTestResultsIncrease\": 2919.0, \"ratio\": 0.06623836951705804, \"sinceDay0\": 14}, {\"index\": 31, \"date\": \"2020-04-03T00:00:00\", \"state\": \"ND\", \"positive\": 173.0, \"negative\": 5625.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 29.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 55.0, \"hash\": \"84ef01d179db6bf5d01711b8006489518c3cb319\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 3.0, \"hospitalized\": 29.0, \"total\": 5798, \"totalTestResults\": 5798, \"posNeg\": 5798, \"fips\": 38, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 1.0, \"negativeIncrease\": 804.0, \"positiveIncrease\": 14.0, \"totalTestResultsIncrease\": 818.0, \"ratio\": 0.02983787512935495, \"sinceDay0\": 4}, {\"index\": 32, \"date\": \"2020-04-03T00:00:00\", \"state\": \"NE\", \"positive\": 279.0, \"negative\": 4487.0, \"pending\": 11.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4afd0964d77f63c02401a16e57510b1d974e875d\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 6.0, \"hospitalized\": null, \"total\": 4777, \"totalTestResults\": 4766, \"posNeg\": 4766, \"fips\": 31, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 509.0, \"positiveIncrease\": 33.0, \"totalTestResultsIncrease\": 542.0, \"ratio\": 0.058404856604563536, \"sinceDay0\": 5}, {\"index\": 33, \"date\": \"2020-04-03T00:00:00\", \"state\": \"NH\", \"positive\": 479.0, \"negative\": 6575.0, \"pending\": 114.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 73.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 101.0, \"hash\": \"d868c7b35e0058b0fc967b11ce603223586ff8a4\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 5.0, \"hospitalized\": 73.0, \"total\": 7168, \"totalTestResults\": 7054, \"posNeg\": 7054, \"fips\": 33, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 14.0, \"negativeIncrease\": 497.0, \"positiveIncrease\": 64.0, \"totalTestResultsIncrease\": 561.0, \"ratio\": 0.06682477678571429, \"sinceDay0\": 10}, {\"index\": 34, \"date\": \"2020-04-03T00:00:00\", \"state\": \"NJ\", \"positive\": 29895.0, \"negative\": 37608.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f3e8ae961e46883c951b2ac5ddd22f46055c6af3\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 646.0, \"hospitalized\": null, \"total\": 67503, \"totalTestResults\": 67503, \"posNeg\": 67503, \"fips\": 34, \"deathIncrease\": 109.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4088.0, \"positiveIncrease\": 4305.0, \"totalTestResultsIncrease\": 8393.0, \"ratio\": 0.442869205813075, \"sinceDay0\": 18}, {\"index\": 35, \"date\": \"2020-04-03T00:00:00\", \"state\": \"NM\", \"positive\": 403.0, \"negative\": 14375.0, \"pending\": null, \"hospitalizedCurrently\": 31.0, \"hospitalizedCumulative\": 31.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 26.0, \"hash\": \"041cca5c10a2fa3cc756d299a62df8e94fc60d2f\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 7.0, \"hospitalized\": 31.0, \"total\": 14778, \"totalTestResults\": 14778, \"posNeg\": 14778, \"fips\": 35, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 727.0, \"positiveIncrease\": 40.0, \"totalTestResultsIncrease\": 767.0, \"ratio\": 0.02727026661253214, \"sinceDay0\": 9}, {\"index\": 36, \"date\": \"2020-04-03T00:00:00\", \"state\": \"NV\", \"positive\": 1514.0, \"negative\": 13018.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b06428c9678bd268d2992c491635ac82ec96bf35\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 43.0, \"hospitalized\": null, \"total\": 14532, \"totalTestResults\": 14532, \"posNeg\": 14532, \"fips\": 32, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 430.0, \"positiveIncrease\": 56.0, \"totalTestResultsIncrease\": 486.0, \"ratio\": 0.10418387007982384, \"sinceDay0\": 14}, {\"index\": 37, \"date\": \"2020-04-03T00:00:00\", \"state\": \"NY\", \"positive\": 102863.0, \"negative\": 168139.0, \"pending\": null, \"hospitalizedCurrently\": 14810.0, \"hospitalizedCumulative\": 23696.0, \"inIcuCurrently\": 3731.0, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 8886.0, \"hash\": \"accc00cef8483cff65936c97844fa6aa44976324\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 2935.0, \"hospitalized\": 23696.0, \"total\": 271002, \"totalTestResults\": 271002, \"posNeg\": 271002, \"fips\": 36, \"deathIncrease\": 562.0, \"hospitalizedIncrease\": 2879.0, \"negativeIncrease\": 21555.0, \"positiveIncrease\": 10482.0, \"totalTestResultsIncrease\": 32037.0, \"ratio\": 0.3795654644615169, \"sinceDay0\": 26}, {\"index\": 38, \"date\": \"2020-04-03T00:00:00\", \"state\": \"OH\", \"positive\": 3312.0, \"negative\": 35063.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 895.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 288.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4f9def22c6f51b8839104ffcb46d41122de71744\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 91.0, \"hospitalized\": 895.0, \"total\": 38375, \"totalTestResults\": 38375, \"posNeg\": 38375, \"fips\": 39, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 93.0, \"negativeIncrease\": 3047.0, \"positiveIncrease\": 410.0, \"totalTestResultsIncrease\": 3457.0, \"ratio\": 0.08630618892508143, \"sinceDay0\": 15}, {\"index\": 39, \"date\": \"2020-04-03T00:00:00\", \"state\": \"OK\", \"positive\": 988.0, \"negative\": 1315.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 289.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8702f6d3df27dc4ba14e053f1f3ea347acc7dbcf\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 38.0, \"hospitalized\": 289.0, \"total\": 2303, \"totalTestResults\": 2303, \"posNeg\": 2303, \"fips\": 40, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 32.0, \"negativeIncrease\": 50.0, \"positiveIncrease\": 109.0, \"totalTestResultsIncrease\": 159.0, \"ratio\": 0.4290056448111159, \"sinceDay0\": 10}, {\"index\": 40, \"date\": \"2020-04-03T00:00:00\", \"state\": \"OR\", \"positive\": 826.0, \"negative\": 15259.0, \"pending\": null, \"hospitalizedCurrently\": 188.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 38.0, \"onVentilatorCumulative\": 40.0, \"recovered\": null, \"hash\": \"b2e5b88bbad8239be3032b82f4afe354fc21fe96\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 21.0, \"hospitalized\": null, \"total\": 16085, \"totalTestResults\": 16085, \"posNeg\": 16085, \"fips\": 41, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1127.0, \"positiveIncrease\": 90.0, \"totalTestResultsIncrease\": 1217.0, \"ratio\": 0.0513521914827479, \"sinceDay0\": 14}, {\"index\": 41, \"date\": \"2020-04-03T00:00:00\", \"state\": \"PA\", \"positive\": 8420.0, \"negative\": 53695.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 852.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"aade9d40167b6e73754871c40386092b362363a2\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 102.0, \"hospitalized\": 852.0, \"total\": 62115, \"totalTestResults\": 62115, \"posNeg\": 62115, \"fips\": 42, \"deathIncrease\": 12.0, \"hospitalizedIncrease\": 122.0, \"negativeIncrease\": 5997.0, \"positiveIncrease\": 1404.0, \"totalTestResultsIncrease\": 7401.0, \"ratio\": 0.1355550189165258, \"sinceDay0\": 16}, {\"index\": 42, \"date\": \"2020-04-03T00:00:00\", \"state\": \"PR\", \"positive\": 378.0, \"negative\": 2049.0, \"pending\": 1055.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"31c1cb53249716895ec3490c18feb99b785a620a\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 15.0, \"hospitalized\": null, \"total\": 3482, \"totalTestResults\": 2427, \"posNeg\": 2427, \"fips\": 72, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 445.0, \"positiveIncrease\": 62.0, \"totalTestResultsIncrease\": 507.0, \"ratio\": 0.10855829982768524, \"sinceDay0\": 6}, {\"index\": 43, \"date\": \"2020-04-03T00:00:00\", \"state\": \"RI\", \"positive\": 711.0, \"negative\": 4412.0, \"pending\": null, \"hospitalizedCurrently\": 72.0, \"hospitalizedCumulative\": 72.0, \"inIcuCurrently\": 14.0, \"inIcuCumulative\": 14.0, \"onVentilatorCurrently\": 6.0, \"onVentilatorCumulative\": 6.0, \"recovered\": 35.0, \"hash\": \"724f26efb1056eab080d70de6d4ca0dfc034af1c\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 14.0, \"hospitalized\": 72.0, \"total\": 5123, \"totalTestResults\": 5123, \"posNeg\": 5123, \"fips\": 44, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 72.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 54.0, \"totalTestResultsIncrease\": 54.0, \"ratio\": 0.1387858676556705, \"sinceDay0\": 11}, {\"index\": 44, \"date\": \"2020-04-03T00:00:00\", \"state\": \"SC\", \"positive\": 1554.0, \"negative\": 5441.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 241.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"83a9526f05767b32166dffbd1c0668fe1e12c1b5\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 31.0, \"hospitalized\": 241.0, \"total\": 6995, \"totalTestResults\": 6995, \"posNeg\": 6995, \"fips\": 45, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": -655.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.22215868477483916, \"sinceDay0\": 13}, {\"index\": 45, \"date\": \"2020-04-03T00:00:00\", \"state\": \"SD\", \"positive\": 187.0, \"negative\": 4593.0, \"pending\": 3.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 17.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 69.0, \"hash\": \"aa416c771bd2c9e919678126e5564dbe952c2e46\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 2.0, \"hospitalized\": 17.0, \"total\": 4783, \"totalTestResults\": 4780, \"posNeg\": 4780, \"fips\": 46, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 376.0, \"positiveIncrease\": 22.0, \"totalTestResultsIncrease\": 398.0, \"ratio\": 0.039096801170813295, \"sinceDay0\": 4}, {\"index\": 46, \"date\": \"2020-04-03T00:00:00\", \"state\": \"TN\", \"positive\": 3067.0, \"negative\": 34772.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 293.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 248.0, \"hash\": \"019351b10edda80786a653adea2799cab1992e8a\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 37.0, \"hospitalized\": 293.0, \"total\": 37839, \"totalTestResults\": 37839, \"posNeg\": 37839, \"fips\": 47, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 30.0, \"negativeIncrease\": 3006.0, \"positiveIncrease\": 222.0, \"totalTestResultsIncrease\": 3228.0, \"ratio\": 0.0810539390575861, \"sinceDay0\": 15}, {\"index\": 47, \"date\": \"2020-04-03T00:00:00\", \"state\": \"TX\", \"positive\": 5330.0, \"negative\": 50434.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 196.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 38.0, \"hash\": \"18a3dcd9d77854accccca1eb809c495d24501fbf\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 90.0, \"hospitalized\": 196.0, \"total\": 55764, \"totalTestResults\": 55764, \"posNeg\": 55764, \"fips\": 48, \"deathIncrease\": 20.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4424.0, \"positiveIncrease\": 661.0, \"totalTestResultsIncrease\": 5085.0, \"ratio\": 0.09558137866724051, \"sinceDay0\": 15}, {\"index\": 48, \"date\": \"2020-04-03T00:00:00\", \"state\": \"UT\", \"positive\": 1246.0, \"negative\": 23002.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 106.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"be88433eea3c0ab307191b78f63c45fe05615642\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 7.0, \"hospitalized\": 106.0, \"total\": 24248, \"totalTestResults\": 24248, \"posNeg\": 24248, \"fips\": 49, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 6.0, \"negativeIncrease\": 3011.0, \"positiveIncrease\": 172.0, \"totalTestResultsIncrease\": 3183.0, \"ratio\": 0.05138568129330254, \"sinceDay0\": 14}, {\"index\": 49, \"date\": \"2020-04-03T00:00:00\", \"state\": \"VA\", \"positive\": 2012.0, \"negative\": 16993.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 312.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 145.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 108.0, \"recovered\": null, \"hash\": \"cb349d06a8404e8ea589d4d05f5ae53dfdbd1692\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 46.0, \"hospitalized\": 312.0, \"total\": 19005, \"totalTestResults\": 19005, \"posNeg\": 19005, \"fips\": 51, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 7.0, \"negativeIncrease\": 1110.0, \"positiveIncrease\": 306.0, \"totalTestResultsIncrease\": 1416.0, \"ratio\": 0.10586687713759536, \"sinceDay0\": 14}, {\"index\": 51, \"date\": \"2020-04-03T00:00:00\", \"state\": \"VT\", \"positive\": 389.0, \"negative\": 4839.0, \"pending\": null, \"hospitalizedCurrently\": 29.0, \"hospitalizedCumulative\": 45.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 15.0, \"hash\": \"fd502b9dcb8608ca17ea5eecf37d01466c5f5389\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 17.0, \"hospitalized\": 45.0, \"total\": 5228, \"totalTestResults\": 5228, \"posNeg\": 5228, \"fips\": 50, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 128.0, \"positiveIncrease\": 51.0, \"totalTestResultsIncrease\": 179.0, \"ratio\": 0.074407039020658, \"sinceDay0\": 9}, {\"index\": 52, \"date\": \"2020-04-03T00:00:00\", \"state\": \"WA\", \"positive\": 6585.0, \"negative\": 72833.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 254.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"959e56f464378567061d69a9f5fe856b61563bc4\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 262.0, \"hospitalized\": 254.0, \"total\": 79418, \"totalTestResults\": 79418, \"posNeg\": 79418, \"fips\": 53, \"deathIncrease\": 15.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4019.0, \"positiveIncrease\": 601.0, \"totalTestResultsIncrease\": 4620.0, \"ratio\": 0.08291571180336951, \"sinceDay0\": 27}, {\"index\": 53, \"date\": \"2020-04-03T00:00:00\", \"state\": \"WI\", \"positive\": 1912.0, \"negative\": 22377.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 487.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ac2e774ab91aaf87bd106a4d19ddc35d0a14d163\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 37.0, \"hospitalized\": 487.0, \"total\": 24289, \"totalTestResults\": 24289, \"posNeg\": 24289, \"fips\": 55, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 26.0, \"negativeIncrease\": 2060.0, \"positiveIncrease\": 182.0, \"totalTestResultsIncrease\": 2242.0, \"ratio\": 0.07871876157931575, \"sinceDay0\": 16}, {\"index\": 54, \"date\": \"2020-04-03T00:00:00\", \"state\": \"WV\", \"positive\": 237.0, \"negative\": 6130.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0d5735f82295c4874f145fbc22684001af9837e6\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 2.0, \"hospitalized\": 1.0, \"total\": 6367, \"totalTestResults\": 6367, \"posNeg\": 6367, \"fips\": 54, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 854.0, \"positiveIncrease\": 20.0, \"totalTestResultsIncrease\": 874.0, \"ratio\": 0.03722318203235433, \"sinceDay0\": 5}, {\"index\": 55, \"date\": \"2020-04-03T00:00:00\", \"state\": \"WY\", \"positive\": 162.0, \"negative\": 2704.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 21.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 37.0, \"hash\": \"3fa4d519d76a3a9a53f819f66887a8a4f7587958\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 0.0, \"hospitalized\": 21.0, \"total\": 2866, \"totalTestResults\": 2866, \"posNeg\": 2866, \"fips\": 56, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 2.0, \"negativeIncrease\": 265.0, \"positiveIncrease\": 12.0, \"totalTestResultsIncrease\": 277.0, \"ratio\": 0.056524773203070484, \"sinceDay0\": 3}], \"data-0a08c6105da7e065c75198fff0e29db2\": [{\"labelX\": 9, \"labelY\": 30000, \"labelText\": \"doubles every day\"}, {\"labelX\": 28, \"labelY\": 31000, \"labelText\": \"doubles every 3 days\"}, {\"labelX\": 32, \"labelY\": 1000, \"labelText\": \"doubles every week\"}]}}, {\"mode\": \"vega-lite\"});\n",
       "</script>"
      ],
      "text/plain": [
       "alt.LayerChart(...)"
      ]
     "metadata": {},
     "output_type": "display_data"
      "text/html": [
       "\n",
       "<p style=\"font-size: smaller\">Data Sources: \n",
       "  <a href=\"https://covidtracking.com\">The COVID Tracking Project</a>\n",
       "<br>\n",
       "Analysis and Visualization:\n",
       "  <a href=\"https://renkulab.io/projects/covid-19/covid-19-public-data\">Covid-19 Public Data Collaboration Project</a>\n",
       "</p>"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     "metadata": {},
     "output_type": "display_data"
    "# make dataframe for text labels on chart - hand edit these label locations\n",
    "textLabels_df = pd.DataFrame(\n",
    "    [[9,30000,'doubles every day'],\n",
    "     [28,31000,'doubles every 3 days'],\n",
    "     [32,1000, 'doubles every week']],\n",
    "    columns =['labelX', 'labelY','labelText']\n",
    ")\n",
    "\n",
    "# make dataframe with only points >=100 positives\n",
    "positive100_df = data_df.loc[data_df['positive']>=100]\n",
    "\n",
    "## add US to that dataframe\n",
    "nationpos100_df = nation_df.loc[nation_df['positive']>=100]\n",
    "positive100_df= pd.concat ([positive100_df,nationpos100_df])\n",
    "\n",
    "# group positive100 dataframe by state and then increasing order of date\n",
    "positive100_df = positive100_df.sort_values(by=['state','date'])\n",
    "positive100_df = positive100_df.reset_index()\n",
    "\n",
    "# make a list of the states with 10 or more deaths (don't really need this)\n",
    "# state_list = list(set(positive100_df['state']))\n",
    "\n",
    "# add a column for the number of days since the 100th case for each state\n",
    "for state, df in positive100_df.groupby('state'):\n",
    "    positive100_df.loc[df.index,'sinceDay0'] = range(0, len(df))\n",
    "positive100_df = positive100_df.astype({'sinceDay0': 'int32'})\n",
    "\n",
    "    \n",
    "# Now create plotlines for each state since 10 deaths\n",
    "lineChart = alt.Chart(positive100_df, title=\"US States: total cases since 100th case\").mark_line(interpolate='basis').encode(\n",
    "    alt.X('sinceDay0:Q', axis=alt.Axis(title='Days since 100th case')),\n",
    "    alt.Y('positive:Q',\n",
    "          axis = alt.Axis(title='Cumulative positive cases'),\n",
    "          scale=alt.Scale(type='log')),\n",
    "    tooltip=['state', 'sinceDay0', 'death', 'positive'],\n",
    "    color = 'state'\n",
    ").properties(width=800,height=500)\n",
    "## Create a layer with the lines for doubling every day and doubling every week\n",
    "# make dataframe with lines to indicate doubling every day, 3 days, week \n",
    "\n",
    "days = {'day':[1,2,3,4,5,10,15,20, max(positive100_df.sinceDay0)+5]}\n",
    "startCase = 100\n",
    "logRuleDay_df = pd.DataFrame (days, columns=['day'])\n",
    "logRuleDay_df['case']= startCase * pow(2,logRuleDay_df['day'])\n",
    "logRuleDay_df['doubling period']='every day'\n",
    "\n",
    "logRule3Days_df = pd.DataFrame (days, columns=['day'])\n",
    "logRule3Days_df['case']= startCase * pow(2,(logRule3Days_df['day'])/3)\n",
    "logRule3Days_df['doubling period']='three days'\n",
    "\n",
    "logRuleWeek_df = pd.DataFrame (days, columns=['day'])\n",
    "logRuleWeek_df['case']= startCase * pow(2,(logRuleWeek_df['day'])/7)\n",
    "logRuleWeek_df['doubling period']='every week'\n",
    "\n",
    "logRules_df = pd.concat([logRuleDay_df, logRule3Days_df, logRuleWeek_df])\n",
    "logRules_df = logRules_df.reset_index()\n",
    "\n",
    "ruleChart = alt.Chart(logRules_df).mark_line(opacity=0.2,clip=True).encode(\n",
    "    alt.X('day:Q',\n",
    "            scale=alt.Scale(domain=[1, max(positive100_df.sinceDay0)+5])),\n",
    "    alt.Y('case', scale=alt.Scale(domain=[100,200000], type='log'),\n",
    "         ),\n",
    "    color = 'doubling period')\n",
    "\n",
    "# create a layer for the state labels\n",
    "# 1) make dataframe with each state's max days\n",
    "# 2) make a chart layer with text of state name to right of each state's rightmost point\n",
    "stateLabels_df = positive100_df[positive100_df['sinceDay0'] == positive100_df.groupby(['state'])['sinceDay0'].transform(max)]\n",
    "labelChart = alt.Chart(stateLabels_df).mark_text(align='left', baseline='middle', dx=10).encode(\n",
    "    x='sinceDay0',\n",
    "    y='positive',\n",
    "    text='state',\n",
    "    color='state')\n",
    "\n",
    "#now put the text labels layer on top of state labels Chart\n",
    "labelChart = labelChart + alt.Chart(textLabels_df).mark_text(align='right', baseline='bottom', dx=0, size=18,opacity=0.5).encode(\n",
    "    x='labelX',\n",
    "    y='labelY',\n",
    "    text='labelText')\n",
    "\n",
    "#Create some tooltip behavior\n",
    "# Step 1: Selection that chooses nearest point based on value on x-axis\n",
    "nearest = alt.selection(type='single', nearest=True, on='mouseover',\n",
    "                            fields=['sinceDay0'])\n",
    "\n",
    "# Step 2: Transparent selectors across the chart. This is what tells us\n",
    "# the x-value of the cursor\n",
    "selectors = alt.Chart().mark_point().encode(\n",
    "    x=\"sinceDay0:Q\",\n",
    "    opacity=alt.value(0),\n",
    ").add_selection(\n",
    "    nearest\n",
    ")\n",
    "\n",
    "# Step 3: Add text, show values in Sex column when it's the nearest point to \n",
    "# mouseover, else show blank\n",
    "text = lineChart.mark_text(align='center', dx=3, dy=-20).encode(\n",
    "    text=alt.condition(nearest, 'positive', alt.value(' '))\n",
    ")\n",
    "\n",
    "\n",
    "#Finally, lets show the chart!\n",
    "\n",
    "chart = alt.layer(lineChart, ruleChart, labelChart, selectors, text, data=death10_df)\n",
    "#chart = alt.layer(lineChart, ruleChart, labelChart)\n",
    "chart.properties (width=500,height=800)\n",
    "display(chart)\n",
    "display(html_credits)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### Daily Cumulative Totals\n",
    "\n",
    "Cumulative reported totals of positive cases and deaths. "
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 13,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "\n",
       "<div id=\"altair-viz-ad3e248cf6e2474a8939d01e13414b6b\"></div>\n",
       "<script type=\"text/javascript\">\n",
       "  (function(spec, embedOpt){\n",
       "    const outputDiv = document.getElementById(\"altair-viz-ad3e248cf6e2474a8939d01e13414b6b\");\n",
       "    const paths = {\n",
       "      \"vega\": \"https://cdn.jsdelivr.net/npm//vega@5?noext\",\n",
       "      \"vega-lib\": \"https://cdn.jsdelivr.net/npm//vega-lib?noext\",\n",
       "      \"vega-lite\": \"https://cdn.jsdelivr.net/npm//vega-lite@4.0.2?noext\",\n",
       "      \"vega-embed\": \"https://cdn.jsdelivr.net/npm//vega-embed@6?noext\",\n",
       "    };\n",
       "\n",
       "    function loadScript(lib) {\n",
       "      return new Promise(function(resolve, reject) {\n",
       "        var s = document.createElement('script');\n",
       "        s.src = paths[lib];\n",
       "        s.async = true;\n",
       "        s.onload = () => resolve(paths[lib]);\n",
       "        s.onerror = () => reject(`Error loading script: ${paths[lib]}`);\n",
       "        document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
       "      });\n",
       "    }\n",
       "\n",
       "    function showError(err) {\n",
       "      outputDiv.innerHTML = `<div class=\"error\" style=\"color:red;\">${err}</div>`;\n",
       "      throw err;\n",
       "    }\n",
       "\n",
       "    function displayChart(vegaEmbed) {\n",
       "      vegaEmbed(outputDiv, spec, embedOpt)\n",
       "        .catch(err => showError(`Javascript Error: ${err.message}<br>This usually means there's a typo in your chart specification. See the javascript console for the full traceback.`));\n",
       "    }\n",
       "\n",
       "    if(typeof define === \"function\" && define.amd) {\n",
       "      requirejs.config({paths});\n",
       "      require([\"vega-embed\"], displayChart, err => showError(`Error loading script: ${err.message}`));\n",
       "    } else if (typeof vegaEmbed === \"function\") {\n",
       "      displayChart(vegaEmbed);\n",
       "    } else {\n",
       "      loadScript(\"vega\")\n",
       "        .then(() => loadScript(\"vega-lite\"))\n",
       "        .then(() => loadScript(\"vega-embed\"))\n",
       "        .catch(showError)\n",
       "        .then(() => displayChart(vegaEmbed));\n",
       "    }\n",
       "  })({\"config\": {\"view\": {\"continuousWidth\": 400, \"continuousHeight\": 300}, \"title\": {\"anchor\": \"middle\"}}, \"vconcat\": [{\"hconcat\": [{\"mark\": {\"type\": \"bar\", \"size\": 10}, \"encoding\": {\"x\": {\"type\": \"temporal\", \"axis\": {\"title\": \"\"}, \"field\": \"date\"}, \"y\": {\"type\": \"quantitative\", \"field\": \"positive\", \"title\": \"Cumulative cases\"}}}, {\"mark\": {\"type\": \"bar\", \"size\": 10}, \"encoding\": {\"x\": {\"type\": \"temporal\", \"axis\": {\"title\": \"\"}, \"field\": \"date\"}, \"y\": {\"type\": \"quantitative\", \"field\": \"positive_diff\", \"title\": \"Daily cases\"}}}]}, {\"hconcat\": [{\"mark\": {\"type\": \"bar\", \"size\": 10}, \"encoding\": {\"x\": {\"type\": \"temporal\", \"axis\": {\"title\": \"\"}, \"field\": \"date\"}, \"y\": {\"type\": \"quantitative\", \"field\": \"death\", \"title\": \"Cumulative deaths\"}}}, {\"mark\": {\"type\": \"bar\", \"size\": 10}, \"encoding\": {\"x\": {\"type\": \"temporal\", \"axis\": {\"title\": \"\"}, \"field\": \"date\"}, \"y\": {\"type\": \"quantitative\", \"field\": \"death_diff\", \"title\": \"Daily deaths\"}}}]}], \"data\": {\"name\": \"data-1eed52a28cb09302bdbb993dc3282e63\"}, \"title\": \"Cumulative Covid-19 cases and deaths in the U.S.\", \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.0.2.json\", \"datasets\": {\"data-1eed52a28cb09302bdbb993dc3282e63\": [{\"date\": \"2020-03-04T00:00:00\", \"positive\": 118.0, \"negative\": 748.0, \"pending\": 103.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"death\": 10.0, \"hospitalized\": 0.0, \"total\": 969, \"totalTestResults\": 866, \"posNeg\": 866, \"fips\": 425, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 5.515809423282292, \"positive_diff\": 0.0, \"negative_diff\": 0.0, \"death_diff\": 0.0, \"positive_diff_100k\": 0.0, \"death_diff_100k\": 0.0, \"total_10\": 96.9}, {\"date\": \"2020-03-05T00:00:00\", \"positive\": 176.0, \"negative\": 953.0, \"pending\": 197.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"death\": 11.0, \"hospitalized\": 0.0, \"total\": 1326, \"totalTestResults\": 1129, \"posNeg\": 1129, \"fips\": 728, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 99.0, \"positiveIncrease\": 55.0, \"totalTestResultsIncrease\": 154.0, \"ratio\": 7.691963187672735, \"positive_diff\": 55.0, \"negative_diff\": 99.0, \"death_diff\": 1.0, \"positive_diff_100k\": 0.5298275537038083, \"death_diff_100k\": 0.013132160885254724, \"total_10\": 132.59999999999997}, {\"date\": \"2020-03-06T00:00:00\", \"positive\": 223.0, \"negative\": 1571.0, \"pending\": 458.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"death\": 14.0, \"hospitalized\": 0.0, \"total\": 2252, \"totalTestResults\": 1794, \"posNeg\": 1794, \"fips\": 1031, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 507.0, \"positiveIncrease\": 44.0, \"totalTestResultsIncrease\": 551.0, \"ratio\": 8.84189813481705, \"positive_diff\": 44.0, \"negative_diff\": 137.0, \"death_diff\": 3.0, \"positive_diff_100k\": 0.4002079423948694, \"death_diff_100k\": 0.03939648265576417, \"total_10\": 225.2}, {\"date\": \"2020-03-07T00:00:00\", \"positive\": 341.0, \"negative\": 1809.0, \"pending\": 602.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"death\": 16.0, \"hospitalized\": 0.0, \"total\": 2752, \"totalTestResults\": 2150, \"posNeg\": 2150, \"fips\": 1477, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 194.0, \"positiveIncrease\": 113.0, \"totalTestResultsIncrease\": 307.0, \"ratio\": 13.209662158531827, \"positive_diff\": 113.0, \"negative_diff\": 194.0, \"death_diff\": 2.0, \"positive_diff_100k\": 1.0879306092476013, \"death_diff_100k\": 0.026264321770509448, \"total_10\": 275.2}, {\"date\": \"2020-03-08T00:00:00\", \"positive\": 417.0, \"negative\": 2335.0, \"pending\": 347.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"death\": 18.0, \"hospitalized\": 0.0, \"total\": 3099, \"totalTestResults\": 2752, \"posNeg\": 2752, \"fips\": 1477, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 526.0, \"positiveIncrease\": 76.0, \"totalTestResultsIncrease\": 602.0, \"ratio\": 12.32417291309689, \"positive_diff\": 76.0, \"negative_diff\": 423.0, \"death_diff\": 2.0, \"positive_diff_100k\": 1.114311671083663, \"death_diff_100k\": 0.026264321770509448, \"total_10\": 309.9}, {\"date\": \"2020-03-09T00:00:00\", \"positive\": 584.0, \"negative\": 3367.0, \"pending\": 313.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"death\": 22.0, \"hospitalized\": 0.0, \"total\": 4264, \"totalTestResults\": 3951, \"posNeg\": 3951, \"fips\": 1477, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1032.0, \"positiveIncrease\": 167.0, \"totalTestResultsIncrease\": 1199.0, \"ratio\": 12.85071660526928, \"positive_diff\": 167.0, \"negative_diff\": 1032.0, \"death_diff\": 4.0, \"positive_diff_100k\": 1.8189942831236092, \"death_diff_100k\": 0.052528643541018896, \"total_10\": 426.3999999999999}, {\"date\": \"2020-03-10T00:00:00\", \"positive\": 778.0, \"negative\": 3807.0, \"pending\": 469.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"death\": 24.0, \"hospitalized\": 0.0, \"total\": 5054, \"totalTestResults\": 4585, \"posNeg\": 4585, \"fips\": 1477, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 440.0, \"positiveIncrease\": 195.0, \"totalTestResultsIncrease\": 634.0, \"ratio\": 12.154127882707202, \"positive_diff\": 194.0, \"negative_diff\": 410.0, \"death_diff\": 2.0, \"positive_diff_100k\": 2.7039844813891034, \"death_diff_100k\": 0.026264321770509448, \"total_10\": 505.4}, {\"date\": \"2020-03-11T00:00:00\", \"positive\": 1054.0, \"negative\": 6070.0, \"pending\": 563.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"death\": 27.0, \"hospitalized\": 0.0, \"total\": 7687, \"totalTestResults\": 7124, \"posNeg\": 7124, \"fips\": 1477, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2263.0, \"positiveIncrease\": 276.0, \"totalTestResultsIncrease\": 2539.0, \"ratio\": 10.931231454132302, \"positive_diff\": 276.0, \"negative_diff\": 2105.0, \"death_diff\": 0.0, \"positive_diff_100k\": 4.161028178652214, \"death_diff_100k\": 0.0, \"total_10\": 768.6999999999999}, {\"date\": \"2020-03-12T00:00:00\", \"positive\": 1315.0, \"negative\": 8041.0, \"pending\": 673.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"death\": 36.0, \"hospitalized\": 0.0, \"total\": 10029, \"totalTestResults\": 9356, \"posNeg\": 9356, \"fips\": 1477, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1971.0, \"positiveIncrease\": 261.0, \"totalTestResultsIncrease\": 2232.0, \"ratio\": 9.756655510469434, \"positive_diff\": 261.0, \"negative_diff\": 1716.0, \"death_diff\": 5.0, \"positive_diff_100k\": 5.48261236267998, \"death_diff_100k\": 0.06566080442627362, \"total_10\": 1002.9}, {\"date\": \"2020-03-13T00:00:00\", \"positive\": 1922.0, \"negative\": 13613.0, \"pending\": 1130.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"death\": 39.0, \"hospitalized\": 0.0, \"total\": 16665, \"totalTestResults\": 15535, \"posNeg\": 15535, \"fips\": 1477, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5572.0, \"positiveIncrease\": 607.0, \"totalTestResultsIncrease\": 6179.0, \"ratio\": 9.175450650028257, \"positive_diff\": 607.0, \"negative_diff\": 5480.0, \"death_diff\": 2.0, \"positive_diff_100k\": 8.020087301519814, \"death_diff_100k\": 0.026264321770509448, \"total_10\": 1666.5000000000005}, {\"date\": \"2020-03-14T00:00:00\", \"positive\": 2450.0, \"negative\": 17102.0, \"pending\": 1236.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"death\": 49.0, \"hospitalized\": 0.0, \"total\": 20788, \"totalTestResults\": 19552, \"posNeg\": 19552, \"fips\": 1477, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3489.0, \"positiveIncrease\": 528.0, \"totalTestResultsIncrease\": 4017.0, \"ratio\": 8.811971922038886, \"positive_diff\": 528.0, \"negative_diff\": 3489.0, \"death_diff\": 8.0, \"positive_diff_100k\": 7.522230821043739, \"death_diff_100k\": 0.08597981173139377, \"total_10\": 2078.8}, {\"date\": \"2020-03-15T00:00:00\", \"positive\": 3173.0, \"negative\": 22551.0, \"pending\": 2242.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"death\": 60.0, \"hospitalized\": 0.0, \"total\": 27966, \"totalTestResults\": 25724, \"posNeg\": 25724, \"fips\": 1477, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5449.0, \"positiveIncrease\": 723.0, \"totalTestResultsIncrease\": 6172.0, \"ratio\": 9.136386708221607, \"positive_diff\": 723.0, \"negative_diff\": 5449.0, \"death_diff\": 5.0, \"positive_diff_100k\": 9.736170827916586, \"death_diff_100k\": 0.05531095133927636, \"total_10\": 2796.6}, {\"date\": \"2020-03-16T00:00:00\", \"positive\": 4019.0, \"negative\": 36104.0, \"pending\": 1691.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"death\": 71.0, \"hospitalized\": 0.0, \"total\": 41814, \"totalTestResults\": 40123, \"posNeg\": 40123, \"fips\": 1822, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 13521.0, \"positiveIncrease\": 837.0, \"totalTestResultsIncrease\": 14358.0, \"ratio\": 10.964166847366664, \"positive_diff\": 837.0, \"negative_diff\": 13521.0, \"death_diff\": 8.0, \"positive_diff_100k\": 12.105280688881605, \"death_diff_100k\": 0.06421091573267143, \"total_10\": 4181.400000000001}, {\"date\": \"2020-03-17T00:00:00\", \"positive\": 5722.0, \"negative\": 47604.0, \"pending\": 1687.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"death\": 90.0, \"hospitalized\": 0.0, \"total\": 55013, \"totalTestResults\": 53326, \"posNeg\": 53326, \"fips\": 1822, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 11500.0, \"positiveIncrease\": 1703.0, \"totalTestResultsIncrease\": 13203.0, \"ratio\": 9.7393915788136, \"positive_diff\": 1703.0, \"negative_diff\": 10201.0, \"death_diff\": 17.0, \"positive_diff_100k\": 20.71813667910837, \"death_diff_100k\": 0.16989358409385108, \"total_10\": 5501.299999999999}, {\"date\": \"2020-03-18T00:00:00\", \"positive\": 7730.0, \"negative\": 66225.0, \"pending\": 2526.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"death\": 112.0, \"hospitalized\": 0.0, \"total\": 76481, \"totalTestResults\": 73955, \"posNeg\": 73955, \"fips\": 1822, \"deathIncrease\": 22.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 18621.0, \"positiveIncrease\": 2008.0, \"totalTestResultsIncrease\": 20629.0, \"ratio\": 8.61934483439022, \"positive_diff\": 2008.0, \"negative_diff\": 17217.0, \"death_diff\": 18.0, \"positive_diff_100k\": 27.530078336913014, \"death_diff_100k\": 0.1743011549896832, \"total_10\": 7648.099999999999}, {\"date\": \"2020-03-19T00:00:00\", \"positive\": 11719.0, \"negative\": 89153.0, \"pending\": 3016.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"death\": 160.0, \"hospitalized\": 0.0, \"total\": 103888, \"totalTestResults\": 100872, \"posNeg\": 100872, \"fips\": 1822, \"deathIncrease\": 48.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 22928.0, \"positiveIncrease\": 3989.0, \"totalTestResultsIncrease\": 26917.0, \"ratio\": 8.465643999059226, \"positive_diff\": 3989.0, \"negative_diff\": 22928.0, \"death_diff\": 41.0, \"positive_diff_100k\": 41.032245654529625, \"death_diff_100k\": 0.4291152914332691, \"total_10\": 10388.8}, {\"date\": \"2020-03-20T00:00:00\", \"positive\": 17033.0, \"negative\": 118147.0, \"pending\": 3327.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 0.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"death\": 219.0, \"hospitalized\": 0.0, \"total\": 138507, \"totalTestResults\": 135180, \"posNeg\": 135180, \"fips\": 1822, \"deathIncrease\": 59.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 28994.0, \"positiveIncrease\": 5314.0, \"totalTestResultsIncrease\": 34308.0, \"ratio\": 8.874521266385061, \"positive_diff\": 5314.0, \"negative_diff\": 28994.0, \"death_diff\": 51.0, \"positive_diff_100k\": 59.0118447572064, \"death_diff_100k\": 0.6044213757021897, \"total_10\": 13850.7}, {\"date\": \"2020-03-21T00:00:00\", \"positive\": 23197.0, \"negative\": 155909.0, \"pending\": 3468.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 1964.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"death\": 272.0, \"hospitalized\": 1964.0, \"total\": 182574, \"totalTestResults\": 179106, \"posNeg\": 179106, \"fips\": 1822, \"deathIncrease\": 53.0, \"hospitalizedIncrease\": 1964.0, \"negativeIncrease\": 37762.0, \"positiveIncrease\": 6164.0, \"totalTestResultsIncrease\": 43926.0, \"ratio\": 8.871489705886916, \"positive_diff\": 6164.0, \"negative_diff\": 37762.0, \"death_diff\": 52.0, \"positive_diff_100k\": 60.67771884300287, \"death_diff_100k\": 0.6328191310140254, \"total_10\": 18257.4}, {\"date\": \"2020-03-22T00:00:00\", \"positive\": 31879.0, \"negative\": 193463.0, \"pending\": 2842.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 2554.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"death\": 398.0, \"hospitalized\": 2554.0, \"total\": 228184, \"totalTestResults\": 225342, \"posNeg\": 225342, \"fips\": 1822, \"deathIncrease\": 126.0, \"hospitalizedIncrease\": 590.0, \"negativeIncrease\": 37554.0, \"positiveIncrease\": 8682.0, \"totalTestResultsIncrease\": 46236.0, \"ratio\": 8.681476521413002, \"positive_diff\": 8682.0, \"negative_diff\": 37554.0, \"death_diff\": 125.0, \"positive_diff_100k\": 90.81234272352934, \"death_diff_100k\": 1.1021669130972207, \"total_10\": 22818.399999999994}, {\"date\": \"2020-03-23T00:00:00\", \"positive\": 42152.0, \"negative\": 237321.0, \"pending\": 14571.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 3325.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"death\": 471.0, \"hospitalized\": 3325.0, \"total\": 294044, \"totalTestResults\": 279473, \"posNeg\": 279473, \"fips\": 1822, \"deathIncrease\": 73.0, \"hospitalizedIncrease\": 771.0, \"negativeIncrease\": 43858.0, \"positiveIncrease\": 10273.0, \"totalTestResultsIncrease\": 54131.0, \"ratio\": 9.165322326000412, \"positive_diff\": 10273.0, \"negative_diff\": 43858.0, \"death_diff\": 69.0, \"positive_diff_100k\": 104.19599820021804, \"death_diff_100k\": 1.6099082141188321, \"total_10\": 29404.40000000001}, {\"date\": \"2020-03-24T00:00:00\", \"positive\": 51954.0, \"negative\": 292778.0, \"pending\": 14433.0, \"hospitalizedCurrently\": 0.0, \"hospitalizedCumulative\": 4468.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 0.0, \"onVentilatorCurrently\": 0.0, \"onVentilatorCumulative\": 0.0, \"recovered\": 0.0, \"death\": 675.0, \"hospitalized\": 4468.0, \"total\": 359165, \"totalTestResults\": 344732, \"posNeg\": 344732, \"fips\": 1822, \"deathIncrease\": 204.0, \"hospitalizedIncrease\": 1143.0, \"negativeIncrease\": 55457.0, \"positiveIncrease\": 9802.0, \"totalTestResultsIncrease\": 65259.0, \"ratio\": 8.655914557179413, \"positive_diff\": 9802.0, \"negative_diff\": 55457.0, \"death_diff\": 202.0, \"positive_diff_100k\": 104.756732138267, \"death_diff_100k\": 2.0762435813455027, \"total_10\": 35916.50000000001}, {\"date\": \"2020-03-25T00:00:00\", \"positive\": 63928.0, \"negative\": 357604.0, \"pending\": 51235.0, \"hospitalizedCurrently\": 96.0, \"hospitalizedCumulative\": 6136.0, \"inIcuCurrently\": 0.0, \"inIcuCumulative\": 74.0, \"onVentilatorCurrently\": 4.0, \"onVentilatorCumulative\": 167.0, \"recovered\": 147.0, \"death\": 900.0, \"hospitalized\": 6136.0, \"total\": 472767, \"totalTestResults\": 421532, \"posNeg\": 421532, \"fips\": 1822, \"deathIncrease\": 225.0, \"hospitalizedIncrease\": 1668.0, \"negativeIncrease\": 64826.0, \"positiveIncrease\": 11974.0, \"totalTestResultsIncrease\": 76800.0, \"ratio\": 7.660441721334681, \"positive_diff\": 11974.0, \"negative_diff\": 64771.0, \"death_diff\": 222.0, \"positive_diff_100k\": 139.8860795679674, \"death_diff_100k\": 2.562649982546122, \"total_10\": 47276.70000000001}, {\"date\": \"2020-03-26T00:00:00\", \"positive\": 80735.0, \"negative\": 438603.0, \"pending\": 60251.0, \"hospitalizedCurrently\": 5441.0, \"hospitalizedCumulative\": 10131.0, \"inIcuCurrently\": 1299.0, \"inIcuCumulative\": 1412.0, \"onVentilatorCurrently\": 19.0, \"onVentilatorCumulative\": 258.0, \"recovered\": 97.0, \"death\": 1163.0, \"hospitalized\": 10131.0, \"total\": 579589, \"totalTestResults\": 519338, \"posNeg\": 519338, \"fips\": 1822, \"deathIncrease\": 264.0, \"hospitalizedIncrease\": 3996.0, \"negativeIncrease\": 80999.0, \"positiveIncrease\": 16807.0, \"totalTestResultsIncrease\": 97806.0, \"ratio\": 7.815169609024223, \"positive_diff\": 16807.0, \"negative_diff\": 80999.0, \"death_diff\": 264.0, \"positive_diff_100k\": 188.31706349607987, \"death_diff_100k\": 3.0801997221433237, \"total_10\": 57958.90000000001}, {\"date\": \"2020-03-27T00:00:00\", \"positive\": 99413.0, \"negative\": 527220.0, \"pending\": 60091.0, \"hospitalizedCurrently\": 7532.0, \"hospitalizedCumulative\": 13407.0, \"inIcuCurrently\": 1792.0, \"inIcuCumulative\": 1916.0, \"onVentilatorCurrently\": 54.0, \"onVentilatorCumulative\": 324.0, \"recovered\": 2422.0, \"death\": 1530.0, \"hospitalized\": 13407.0, \"total\": 686724, \"totalTestResults\": 626633, \"posNeg\": 626633, \"fips\": 1822, \"deathIncrease\": 367.0, \"hospitalizedIncrease\": 3342.0, \"negativeIncrease\": 88617.0, \"positiveIncrease\": 18678.0, \"totalTestResultsIncrease\": 107295.0, \"ratio\": 7.692155032404294, \"positive_diff\": 18678.0, \"negative_diff\": 88617.0, \"death_diff\": 366.0, \"positive_diff_100k\": 208.27134355259534, \"death_diff_100k\": 4.193309576905448, \"total_10\": 68672.4}, {\"date\": \"2020-03-28T00:00:00\", \"positive\": 118234.0, \"negative\": 617470.0, \"pending\": 65709.0, \"hospitalizedCurrently\": 8725.0, \"hospitalizedCumulative\": 16363.0, \"inIcuCurrently\": 2174.0, \"inIcuCumulative\": 2314.0, \"onVentilatorCurrently\": 54.0, \"onVentilatorCumulative\": 390.0, \"recovered\": 3148.0, \"death\": 1965.0, \"hospitalized\": 16363.0, \"total\": 801413, \"totalTestResults\": 735704, \"posNeg\": 735704, \"fips\": 1822, \"deathIncrease\": 435.0, \"hospitalizedIncrease\": 2956.0, \"negativeIncrease\": 90250.0, \"positiveIncrease\": 18821.0, \"totalTestResultsIncrease\": 109071.0, \"ratio\": 7.276931165944226, \"positive_diff\": 18821.0, \"negative_diff\": 90250.0, \"death_diff\": 434.0, \"positive_diff_100k\": 209.7422032339328, \"death_diff_100k\": 4.784141950364868, \"total_10\": 80141.3}, {\"date\": \"2020-03-29T00:00:00\", \"positive\": 139061.0, \"negative\": 692290.0, \"pending\": 65545.0, \"hospitalizedCurrently\": 9922.0, \"hospitalizedCumulative\": 19401.0, \"inIcuCurrently\": 2456.0, \"inIcuCumulative\": 2642.0, \"onVentilatorCurrently\": 59.0, \"onVentilatorCumulative\": 440.0, \"recovered\": 4061.0, \"death\": 2428.0, \"hospitalized\": 19401.0, \"total\": 896896, \"totalTestResults\": 831351, \"posNeg\": 831351, \"fips\": 1822, \"deathIncrease\": 463.0, \"hospitalizedIncrease\": 3038.0, \"negativeIncrease\": 74820.0, \"positiveIncrease\": 20827.0, \"totalTestResultsIncrease\": 95647.0, \"ratio\": 7.531337832650078, \"positive_diff\": 20827.0, \"negative_diff\": 74820.0, \"death_diff\": 460.0, \"positive_diff_100k\": 239.8787596536451, \"death_diff_100k\": 4.580299181649012, \"total_10\": 89689.6}, {\"date\": \"2020-03-30T00:00:00\", \"positive\": 160530.0, \"negative\": 784324.0, \"pending\": 65369.0, \"hospitalizedCurrently\": 12147.0, \"hospitalizedCumulative\": 22303.0, \"inIcuCurrently\": 2982.0, \"inIcuCumulative\": 3177.0, \"onVentilatorCurrently\": 259.0, \"onVentilatorCumulative\": 644.0, \"recovered\": 4560.0, \"death\": 2939.0, \"hospitalized\": 22303.0, \"total\": 1010223, \"totalTestResults\": 944854, \"posNeg\": 944854, \"fips\": 1822, \"deathIncrease\": 511.0, \"hospitalizedIncrease\": 2902.0, \"negativeIncrease\": 92034.0, \"positiveIncrease\": 21469.0, \"totalTestResultsIncrease\": 113503.0, \"ratio\": 6.9434231331000325, \"positive_diff\": 21469.0, \"negative_diff\": 92034.0, \"death_diff\": 511.0, \"positive_diff_100k\": 262.1568835999203, \"death_diff_100k\": 5.991790190602926, \"total_10\": 101022.29999999997}, {\"date\": \"2020-03-31T00:00:00\", \"positive\": 184683.0, \"negative\": 864201.0, \"pending\": 59518.0, \"hospitalizedCurrently\": 14236.0, \"hospitalizedCumulative\": 26660.0, \"inIcuCurrently\": 3402.0, \"inIcuCumulative\": 3644.0, \"onVentilatorCurrently\": 69.0, \"onVentilatorCumulative\": 507.0, \"recovered\": 5666.0, \"death\": 3746.0, \"hospitalized\": 26660.0, \"total\": 1108402, \"totalTestResults\": 1048884, \"posNeg\": 1048884, \"fips\": 1822, \"deathIncrease\": 807.0, \"hospitalizedIncrease\": 4357.0, \"negativeIncrease\": 79877.0, \"positiveIncrease\": 24153.0, \"totalTestResultsIncrease\": 104030.0, \"ratio\": 7.174301931221445, \"positive_diff\": 24153.0, \"negative_diff\": 79874.0, \"death_diff\": 807.0, \"positive_diff_100k\": 281.3873043729686, \"death_diff_100k\": 9.42683834358785, \"total_10\": 110840.20000000001}, {\"date\": \"2020-04-01T00:00:00\", \"positive\": 210770.0, \"negative\": 939190.0, \"pending\": 59669.0, \"hospitalizedCurrently\": 16223.0, \"hospitalizedCumulative\": 31142.0, \"inIcuCurrently\": 3837.0, \"inIcuCumulative\": 4270.0, \"onVentilatorCurrently\": 71.0, \"onVentilatorCumulative\": 676.0, \"recovered\": 7084.0, \"death\": 4700.0, \"hospitalized\": 31142.0, \"total\": 1209629, \"totalTestResults\": 1149960, \"posNeg\": 1149960, \"fips\": 1822, \"deathIncrease\": 954.0, \"hospitalizedIncrease\": 4482.0, \"negativeIncrease\": 74989.0, \"positiveIncrease\": 26087.0, \"totalTestResultsIncrease\": 101076.0, \"ratio\": 7.521230717432975, \"positive_diff\": 26087.0, \"negative_diff\": 74989.0, \"death_diff\": 954.0, \"positive_diff_100k\": 326.9861742026608, \"death_diff_100k\": 10.9817923825186, \"total_10\": 120962.89999999997}, {\"date\": \"2020-04-02T00:00:00\", \"positive\": 239009.0, \"negative\": 1028649.0, \"pending\": 62101.0, \"hospitalizedCurrently\": 17157.0, \"hospitalizedCumulative\": 32649.0, \"inIcuCurrently\": 4264.0, \"inIcuCumulative\": 541.0, \"onVentilatorCurrently\": 67.0, \"onVentilatorCumulative\": 661.0, \"recovered\": 8586.0, \"death\": 5784.0, \"hospitalized\": 32649.0, \"total\": 1329759, \"totalTestResults\": 1267658, \"posNeg\": 1267658, \"fips\": 1822, \"deathIncrease\": 1084.0, \"hospitalizedIncrease\": 4335.0, \"negativeIncrease\": 89459.0, \"positiveIncrease\": 28239.0, \"totalTestResultsIncrease\": 117698.0, \"ratio\": 6.936735076319555, \"positive_diff\": 28239.0, \"negative_diff\": 89446.0, \"death_diff\": 1083.0, \"positive_diff_100k\": 346.1966673761843, \"death_diff_100k\": 11.149336716362015, \"total_10\": 132975.9}, {\"date\": \"2020-04-03T00:00:00\", \"positive\": 271915.0, \"negative\": 1135356.0, \"pending\": 61980.0, \"hospitalizedCurrently\": 19926.0, \"hospitalizedCumulative\": 35991.0, \"inIcuCurrently\": 4686.0, \"inIcuCumulative\": 593.0, \"onVentilatorCurrently\": 70.0, \"onVentilatorCumulative\": 728.0, \"recovered\": 10422.0, \"death\": 6962.0, \"hospitalized\": 35991.0, \"total\": 1469251, \"totalTestResults\": 1407271, \"posNeg\": 1407271, \"fips\": 1822, \"deathIncrease\": 1178.0, \"hospitalizedIncrease\": 3509.0, \"negativeIncrease\": 106707.0, \"positiveIncrease\": 32906.0, \"totalTestResultsIncrease\": 139613.0, \"ratio\": 7.221055349592441, \"positive_diff\": 32906.0, \"negative_diff\": 106707.0, \"death_diff\": 1178.0, \"positive_diff_100k\": 390.1669232242885, \"death_diff_100k\": 11.694453377683372, \"total_10\": 146925.09999999998}]}}, {\"mode\": \"vega-lite\"});\n",
       "</script>"
      ],
      "text/plain": [
       "alt.VConcatChart(...)"
      ]
     "metadata": {},
     "output_type": "display_data"
      "text/html": [
       "\n",
       "<p style=\"font-size: smaller\">Data Sources: \n",
       "  <a href=\"https://covidtracking.com\">The COVID Tracking Project</a>\n",
       "<br>\n",
       "Analysis and Visualization:\n",
       "  <a href=\"https://renkulab.io/projects/covid-19/covid-19-public-data\">Covid-19 Public Data Collaboration Project</a>\n",
       "</p>"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "base = alt.Chart(\n",
    "    daily_totals\n",
    ").mark_bar(size=10).encode(\n",
    "    alt.X('date', axis=alt.Axis(title='')\n",
    "    )\n",
    ")\n",
    "\n",
    "cumulative = base.encode(alt.Y('positive', title = 'Cumulative cases'))\n",
    "cumulative_deaths = base.encode(alt.Y('death', title = 'Cumulative deaths'))\n",
    "rates = base.encode(alt.Y('positive_diff', title='Daily cases'))\n",
    "rates_deaths = base.encode(alt.Y('death_diff', title='Daily deaths'))\n",
    "chart = alt.vconcat(\n",
    "    cumulative | rates, cumulative_deaths | rates_deaths,\n",
    "    title='Cumulative Covid-19 cases and deaths in the U.S.'\n",
    ").configure_title(\n",
    "    anchor='middle'\n",
    ")\n",
    "display(chart)\n",
    "display(html_credits)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### Total tests and positives per 100k population"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 8,
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Most recent test date 2020-04-03 00:00:00\n",
      "56 states/territories have data on this date.\n"
     ]
    }
   ],
   "source": [
    "most_recent_test_date = data_df['date'].max()\n",
    "most_recent_df = data_df[data_df['date'] == most_recent_test_date].set_index('state')\n",
    "print(\"Most recent test date\", most_recent_test_date)\n",
    "print(len(most_recent_df), \"states/territories have data on this date.\")\n",
    "\n",
    "most_recent_df['total/100k'] = (most_recent_df['total'] / pop_df['Population']) * 100000\n",
    "most_recent_df['positive/100k'] = (most_recent_df['positive'] / pop_df['Population']) * 100000\n",
    "most_recent_df = most_recent_df.reset_index()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 9,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "\n",
       "<div id=\"altair-viz-6da52f4852b64eabafaadfb0d29e42aa\"></div>\n",
       "<script type=\"text/javascript\">\n",
       "  (function(spec, embedOpt){\n",
       "    const outputDiv = document.getElementById(\"altair-viz-6da52f4852b64eabafaadfb0d29e42aa\");\n",
       "    const paths = {\n",
       "      \"vega\": \"https://cdn.jsdelivr.net/npm//vega@5?noext\",\n",
       "      \"vega-lib\": \"https://cdn.jsdelivr.net/npm//vega-lib?noext\",\n",
       "      \"vega-lite\": \"https://cdn.jsdelivr.net/npm//vega-lite@4.0.2?noext\",\n",
       "      \"vega-embed\": \"https://cdn.jsdelivr.net/npm//vega-embed@6?noext\",\n",
       "    };\n",
       "\n",
       "    function loadScript(lib) {\n",
       "      return new Promise(function(resolve, reject) {\n",
       "        var s = document.createElement('script');\n",
       "        s.src = paths[lib];\n",
       "        s.async = true;\n",
       "        s.onload = () => resolve(paths[lib]);\n",
       "        s.onerror = () => reject(`Error loading script: ${paths[lib]}`);\n",
       "        document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
       "      });\n",
       "    }\n",
       "\n",
       "    function showError(err) {\n",
       "      outputDiv.innerHTML = `<div class=\"error\" style=\"color:red;\">${err}</div>`;\n",
       "      throw err;\n",
       "    }\n",
       "\n",
       "    function displayChart(vegaEmbed) {\n",
       "      vegaEmbed(outputDiv, spec, embedOpt)\n",
       "        .catch(err => showError(`Javascript Error: ${err.message}<br>This usually means there's a typo in your chart specification. See the javascript console for the full traceback.`));\n",
       "    }\n",
       "\n",
       "    if(typeof define === \"function\" && define.amd) {\n",
       "      requirejs.config({paths});\n",
       "      require([\"vega-embed\"], displayChart, err => showError(`Error loading script: ${err.message}`));\n",
       "    } else if (typeof vegaEmbed === \"function\") {\n",
       "      displayChart(vegaEmbed);\n",
       "    } else {\n",
       "      loadScript(\"vega\")\n",
       "        .then(() => loadScript(\"vega-lite\"))\n",
       "        .then(() => loadScript(\"vega-embed\"))\n",
       "        .catch(showError)\n",
       "        .then(() => displayChart(vegaEmbed));\n",
       "    }\n",
       "  })({\"config\": {\"view\": {\"continuousWidth\": 400, \"continuousHeight\": 300}}, \"layer\": [{\"mark\": \"bar\", \"encoding\": {\"x\": {\"type\": \"nominal\", \"field\": \"state\", \"sort\": null}, \"y\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"COVID-19 Tests/100k, Positive Cases/100k\"}, \"field\": \"total/100k\"}}, \"title\": \"Cases (orange points) and tests(blue bars) per 100k\"}, {\"mark\": {\"type\": \"point\", \"color\": \"orange\", \"filled\": true, \"opacity\": 1, \"size\": 100}, \"encoding\": {\"x\": {\"type\": \"nominal\", \"field\": \"state\", \"sort\": null}, \"y\": {\"type\": \"quantitative\", \"field\": \"positive/100k\"}}, \"title\": \"Cases (orange points) and tests(blue bars) per 100k\"}], \"data\": {\"name\": \"data-ca13641860198b5bb0f37657f92bb581\"}, \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.0.2.json\", \"datasets\": {\"data-ca13641860198b5bb0f37657f92bb581\": [{\"state\": \"NY\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 102863.0, \"negative\": 168139.0, \"pending\": null, \"hospitalizedCurrently\": 14810.0, \"hospitalizedCumulative\": 23696.0, \"inIcuCurrently\": 3731.0, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 8886.0, \"hash\": \"accc00cef8483cff65936c97844fa6aa44976324\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 2935.0, \"hospitalized\": 23696.0, \"total\": 271002, \"totalTestResults\": 271002, \"posNeg\": 271002, \"fips\": 36, \"deathIncrease\": 562.0, \"hospitalizedIncrease\": 2879.0, \"negativeIncrease\": 21555.0, \"positiveIncrease\": 10482.0, \"totalTestResultsIncrease\": 32037.0, \"ratio\": 0.3795654644615169, \"total/100k\": 1393.0714278994988, \"positive/100k\": 528.7618035587418}, {\"state\": \"LA\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 10297.0, \"negative\": 43348.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1707.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 535.0, \"recovered\": null, \"hash\": \"0694f8cf6531a993f01c11a566a18087757b24d2\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 370.0, \"hospitalized\": 1707.0, \"total\": 53645, \"totalTestResults\": 53645, \"posNeg\": 53645, \"fips\": 22, \"deathIncrease\": 60.0, \"hospitalizedIncrease\": 68.0, \"negativeIncrease\": 1412.0, \"positiveIncrease\": 1147.0, \"totalTestResultsIncrease\": 2559.0, \"ratio\": 0.19194705937179607, \"total/100k\": 1153.9551978427094, \"positive/100k\": 221.4983068727072}, {\"state\": \"WA\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 6585.0, \"negative\": 72833.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 254.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"959e56f464378567061d69a9f5fe856b61563bc4\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 262.0, \"hospitalized\": 254.0, \"total\": 79418, \"totalTestResults\": 79418, \"posNeg\": 79418, \"fips\": 53, \"deathIncrease\": 15.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4019.0, \"positiveIncrease\": 601.0, \"totalTestResultsIncrease\": 4620.0, \"ratio\": 0.08291571180336951, \"total/100k\": 1042.9299531851598, \"positive/100k\": 86.47527942940235}, {\"state\": \"MA\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 10402.0, \"negative\": 52560.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 966.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b7bee14b9475ba25ad0b28497d483cec03221230\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 192.0, \"hospitalized\": 966.0, \"total\": 62962, \"totalTestResults\": 62962, \"posNeg\": 62962, \"fips\": 25, \"deathIncrease\": 38.0, \"hospitalizedIncrease\": 153.0, \"negativeIncrease\": 4918.0, \"positiveIncrease\": 1436.0, \"totalTestResultsIncrease\": 6354.0, \"ratio\": 0.16521076204694896, \"total/100k\": 905.9928458193341, \"positive/100k\": 149.67976846689612}, {\"state\": \"VT\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 389.0, \"negative\": 4839.0, \"pending\": null, \"hospitalizedCurrently\": 29.0, \"hospitalizedCumulative\": 45.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 15.0, \"hash\": \"fd502b9dcb8608ca17ea5eecf37d01466c5f5389\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 17.0, \"hospitalized\": 45.0, \"total\": 5228, \"totalTestResults\": 5228, \"posNeg\": 5228, \"fips\": 50, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 128.0, \"positiveIncrease\": 51.0, \"totalTestResultsIncrease\": 179.0, \"ratio\": 0.074407039020658, \"total/100k\": 837.8352823527337, \"positive/100k\": 62.340842546903865}, {\"state\": \"AK\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 157.0, \"negative\": 5859.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 15.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"192f851a8f9b68576ed308814322d1333b538699\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 3.0, \"hospitalized\": 15.0, \"total\": 6016, \"totalTestResults\": 6016, \"posNeg\": 6016, \"fips\": 2, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 6.0, \"negativeIncrease\": 980.0, \"positiveIncrease\": 14.0, \"totalTestResultsIncrease\": 994.0, \"ratio\": 0.026097074468085107, \"total/100k\": 822.3690955443616, \"positive/100k\": 21.461427526673}, {\"state\": \"DC\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 757.0, \"negative\": 4827.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 206.0, \"hash\": \"fbf3f83530b301cee1d7dc47fd0719b435edc428\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 15.0, \"hospitalized\": null, \"total\": 5584, \"totalTestResults\": 5584, \"posNeg\": 5584, \"fips\": 11, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 410.0, \"positiveIncrease\": 104.0, \"totalTestResultsIncrease\": 514.0, \"ratio\": 0.13556590257879655, \"total/100k\": 791.2161405825584, \"positive/100k\": 107.2619302329865}, {\"state\": \"ND\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 173.0, \"negative\": 5625.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 29.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 55.0, \"hash\": \"84ef01d179db6bf5d01711b8006489518c3cb319\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 3.0, \"hospitalized\": 29.0, \"total\": 5798, \"totalTestResults\": 5798, \"posNeg\": 5798, \"fips\": 38, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 1.0, \"negativeIncrease\": 804.0, \"positiveIncrease\": 14.0, \"totalTestResultsIncrease\": 818.0, \"ratio\": 0.02983787512935495, \"total/100k\": 760.8304836089452, \"positive/100k\": 22.701564964530444}, {\"state\": \"NJ\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 29895.0, \"negative\": 37608.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f3e8ae961e46883c951b2ac5ddd22f46055c6af3\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 646.0, \"hospitalized\": null, \"total\": 67503, \"totalTestResults\": 67503, \"posNeg\": 67503, \"fips\": 34, \"deathIncrease\": 109.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4088.0, \"positiveIncrease\": 4305.0, \"totalTestResultsIncrease\": 8393.0, \"ratio\": 0.442869205813075, \"total/100k\": 759.9814910511935, \"positive/100k\": 336.5723993744786}, {\"state\": \"UT\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 1246.0, \"negative\": 23002.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 106.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"be88433eea3c0ab307191b78f63c45fe05615642\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 7.0, \"hospitalized\": 106.0, \"total\": 24248, \"totalTestResults\": 24248, \"posNeg\": 24248, \"fips\": 49, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 6.0, \"negativeIncrease\": 3011.0, \"positiveIncrease\": 172.0, \"totalTestResultsIncrease\": 3183.0, \"ratio\": 0.05138568129330254, \"total/100k\": 756.3417861369363, \"positive/100k\": 38.8651379712398}, {\"state\": \"HI\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 285.0, \"negative\": 10206.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 15.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 6.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 72.0, \"hash\": \"1c81c643bccf41f562ee8a0b1565f639a71e5cb7\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 2.0, \"hospitalized\": 15.0, \"total\": 10491, \"totalTestResults\": 10491, \"posNeg\": 10491, \"fips\": 15, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 27.0, \"totalTestResultsIncrease\": 27.0, \"ratio\": 0.027166142407778097, \"total/100k\": 740.9568096551101, \"positive/100k\": 20.128938209103648}, {\"state\": \"NM\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 403.0, \"negative\": 14375.0, \"pending\": null, \"hospitalizedCurrently\": 31.0, \"hospitalizedCumulative\": 31.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 26.0, \"hash\": \"041cca5c10a2fa3cc756d299a62df8e94fc60d2f\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 7.0, \"hospitalized\": 31.0, \"total\": 14778, \"totalTestResults\": 14778, \"posNeg\": 14778, \"fips\": 35, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 727.0, \"positiveIncrease\": 40.0, \"totalTestResultsIncrease\": 767.0, \"ratio\": 0.02727026661253214, \"total/100k\": 704.778501251175, \"positive/100k\": 19.21949763190036}, {\"state\": \"CT\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 4914.0, \"negative\": 15101.0, \"pending\": null, \"hospitalizedCurrently\": 909.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1951d0ca03e6ab2d9bffc4856b060402c69ea7e6\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 131.0, \"hospitalized\": null, \"total\": 20015, \"totalTestResults\": 20015, \"posNeg\": 20015, \"fips\": 9, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 625.0, \"positiveIncrease\": 1090.0, \"totalTestResultsIncrease\": 1715.0, \"ratio\": 0.24551586310267298, \"total/100k\": 561.3853807561635, \"positive/100k\": 137.8290162895722}, {\"state\": \"DE\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 450.0, \"negative\": 4995.0, \"pending\": null, \"hospitalizedCurrently\": 63.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 71.0, \"hash\": \"b840b5921e6e7a1adc67cdefd1c22f4e046d277a\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 14.0, \"hospitalized\": null, \"total\": 5445, \"totalTestResults\": 5445, \"posNeg\": 5445, \"fips\": 10, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 429.0, \"positiveIncrease\": 57.0, \"totalTestResultsIncrease\": 486.0, \"ratio\": 0.08264462809917356, \"total/100k\": 559.1703944692964, \"positive/100k\": 46.212429294983174}, {\"state\": \"TN\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 3067.0, \"negative\": 34772.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 293.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 248.0, \"hash\": \"019351b10edda80786a653adea2799cab1992e8a\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 37.0, \"hospitalized\": 293.0, \"total\": 37839, \"totalTestResults\": 37839, \"posNeg\": 37839, \"fips\": 47, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 30.0, \"negativeIncrease\": 3006.0, \"positiveIncrease\": 222.0, \"totalTestResultsIncrease\": 3228.0, \"ratio\": 0.0810539390575861, \"total/100k\": 553.7543753459228, \"positive/100k\": 44.88397339216007}, {\"state\": \"SD\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 187.0, \"negative\": 4593.0, \"pending\": 3.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 17.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 69.0, \"hash\": \"aa416c771bd2c9e919678126e5564dbe952c2e46\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 2.0, \"hospitalized\": 17.0, \"total\": 4783, \"totalTestResults\": 4780, \"posNeg\": 4780, \"fips\": 46, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 376.0, \"positiveIncrease\": 22.0, \"totalTestResultsIncrease\": 398.0, \"ratio\": 0.039096801170813295, \"total/100k\": 540.660299618271, \"positive/100k\": 21.138088235127885}, {\"state\": \"NH\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 479.0, \"negative\": 6575.0, \"pending\": 114.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 73.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 101.0, \"hash\": \"d868c7b35e0058b0fc967b11ce603223586ff8a4\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 5.0, \"hospitalized\": 73.0, \"total\": 7168, \"totalTestResults\": 7054, \"posNeg\": 7054, \"fips\": 33, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 14.0, \"negativeIncrease\": 497.0, \"positiveIncrease\": 64.0, \"totalTestResultsIncrease\": 561.0, \"ratio\": 0.06682477678571429, \"total/100k\": 527.1708473344704, \"positive/100k\": 35.228074201061844}, {\"state\": \"MT\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 243.0, \"negative\": 5333.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 24.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"58d29fc14826e53d165af859f9d3b6aa2a562cd4\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 5.0, \"hospitalized\": 24.0, \"total\": 5576, \"totalTestResults\": 5576, \"posNeg\": 5576, \"fips\": 30, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 4.0, \"negativeIncrease\": 240.0, \"positiveIncrease\": 16.0, \"totalTestResultsIncrease\": 256.0, \"ratio\": 0.043579626972740315, \"total/100k\": 521.7173257683074, \"positive/100k\": 22.73624644219847}, {\"state\": \"WY\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 162.0, \"negative\": 2704.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 21.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 37.0, \"hash\": \"3fa4d519d76a3a9a53f819f66887a8a4f7587958\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 0.0, \"hospitalized\": 21.0, \"total\": 2866, \"totalTestResults\": 2866, \"posNeg\": 2866, \"fips\": 56, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 2.0, \"negativeIncrease\": 265.0, \"positiveIncrease\": 12.0, \"totalTestResultsIncrease\": 277.0, \"ratio\": 0.056524773203070484, \"total/100k\": 495.1974828901149, \"positive/100k\": 27.99092541109512}, {\"state\": \"PA\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 8420.0, \"negative\": 53695.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 852.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"aade9d40167b6e73754871c40386092b362363a2\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 102.0, \"hospitalized\": 852.0, \"total\": 62115, \"totalTestResults\": 62115, \"posNeg\": 62115, \"fips\": 42, \"deathIncrease\": 12.0, \"hospitalizedIncrease\": 122.0, \"negativeIncrease\": 5997.0, \"positiveIncrease\": 1404.0, \"totalTestResultsIncrease\": 7401.0, \"ratio\": 0.1355550189165258, \"total/100k\": 485.1980422729624, \"positive/100k\": 65.77102979857271}, {\"state\": \"ME\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 432.0, \"negative\": 6088.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 75.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 113.0, \"hash\": \"4b5209b1b8259d319beb467d9b74d759206853f8\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 9.0, \"hospitalized\": 75.0, \"total\": 6520, \"totalTestResults\": 6520, \"posNeg\": 6520, \"fips\": 23, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 7.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 56.0, \"totalTestResultsIncrease\": 56.0, \"ratio\": 0.06625766871165645, \"total/100k\": 485.0425379330046, \"positive/100k\": 32.13778778942607}, {\"state\": \"RI\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 711.0, \"negative\": 4412.0, \"pending\": null, \"hospitalizedCurrently\": 72.0, \"hospitalizedCumulative\": 72.0, \"inIcuCurrently\": 14.0, \"inIcuCumulative\": 14.0, \"onVentilatorCurrently\": 6.0, \"onVentilatorCumulative\": 6.0, \"recovered\": 35.0, \"hash\": \"724f26efb1056eab080d70de6d4ca0dfc034af1c\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 14.0, \"hospitalized\": 72.0, \"total\": 5123, \"totalTestResults\": 5123, \"posNeg\": 5123, \"fips\": 44, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 72.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 54.0, \"totalTestResultsIncrease\": 54.0, \"ratio\": 0.1387858676556705, \"total/100k\": 483.59341149995134, \"positive/100k\": 67.11593120758646}, {\"state\": \"NV\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 1514.0, \"negative\": 13018.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b06428c9678bd268d2992c491635ac82ec96bf35\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 43.0, \"hospitalized\": null, \"total\": 14532, \"totalTestResults\": 14532, \"posNeg\": 14532, \"fips\": 32, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 430.0, \"positiveIncrease\": 56.0, \"totalTestResultsIncrease\": 486.0, \"ratio\": 0.10418387007982384, \"total/100k\": 471.79428574396877, \"positive/100k\": 49.15335457035293}, {\"state\": \"ID\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 891.0, \"negative\": 7054.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 56.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 7.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a3f3c21c0ca004354535ce3e1e5108d313bd5a30\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 9.0, \"hospitalized\": 56.0, \"total\": 7945, \"totalTestResults\": 7945, \"posNeg\": 7945, \"fips\": 16, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 7.0, \"negativeIncrease\": 441.0, \"positiveIncrease\": 222.0, \"totalTestResultsIncrease\": 663.0, \"ratio\": 0.11214600377595972, \"total/100k\": 443.34329390954014, \"positive/100k\": 49.7191787128257}, {\"state\": \"FL\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 9585.0, \"negative\": 82137.0, \"pending\": 1225.0, \"hospitalizedCurrently\": 1215.0, \"hospitalizedCumulative\": 1287.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"fd0c37309c79ae95c06c48e43ce956652814c5e5\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 163.0, \"hospitalized\": 1287.0, \"total\": 92947, \"totalTestResults\": 91722, \"posNeg\": 91722, \"fips\": 12, \"deathIncrease\": 35.0, \"hospitalizedIncrease\": 164.0, \"negativeIncrease\": 12851.0, \"positiveIncrease\": 1575.0, \"totalTestResultsIncrease\": 14426.0, \"ratio\": 0.10312328531313544, \"total/100k\": 432.7597455914467, \"positive/100k\": 44.62760671666666}, {\"state\": \"MN\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 789.0, \"negative\": 23438.0, \"pending\": null, \"hospitalizedCurrently\": 86.0, \"hospitalizedCumulative\": 156.0, \"inIcuCurrently\": 40.0, \"inIcuCumulative\": 40.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"6c45e5c1cc14d97b2d8c49fc1e64ae7a7ebb3861\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 22.0, \"hospitalized\": 156.0, \"total\": 24227, \"totalTestResults\": 24227, \"posNeg\": 24227, \"fips\": 27, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 18.0, \"negativeIncrease\": 1786.0, \"positiveIncrease\": 47.0, \"totalTestResultsIncrease\": 1833.0, \"ratio\": 0.03256697073513023, \"total/100k\": 429.5847672330393, \"positive/100k\": 13.99027454273612}, {\"state\": \"WI\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 1912.0, \"negative\": 22377.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 487.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ac2e774ab91aaf87bd106a4d19ddc35d0a14d163\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 37.0, \"hospitalized\": 487.0, \"total\": 24289, \"totalTestResults\": 24289, \"posNeg\": 24289, \"fips\": 55, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 26.0, \"negativeIncrease\": 2060.0, \"positiveIncrease\": 182.0, \"totalTestResultsIncrease\": 2242.0, \"ratio\": 0.07871876157931575, \"total/100k\": 417.16230703516777, \"positive/100k\": 32.838500187378685}, {\"state\": \"MD\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 2758.0, \"negative\": 20932.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 664.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 159.0, \"hash\": \"748f7091af15d9ca085a92ba09b7390f763b6eb5\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 42.0, \"hospitalized\": 664.0, \"total\": 23690, \"totalTestResults\": 23690, \"posNeg\": 23690, \"fips\": 24, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 82.0, \"negativeIncrease\": 2042.0, \"positiveIncrease\": 427.0, \"totalTestResultsIncrease\": 2469.0, \"ratio\": 0.11642043056141832, \"total/100k\": 391.85004829895064, \"positive/100k\": 45.6193513384764}, {\"state\": \"OR\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 826.0, \"negative\": 15259.0, \"pending\": null, \"hospitalizedCurrently\": 188.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 38.0, \"onVentilatorCumulative\": 40.0, \"recovered\": null, \"hash\": \"b2e5b88bbad8239be3032b82f4afe354fc21fe96\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 21.0, \"hospitalized\": null, \"total\": 16085, \"totalTestResults\": 16085, \"posNeg\": 16085, \"fips\": 41, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1127.0, \"positiveIncrease\": 90.0, \"totalTestResultsIncrease\": 1217.0, \"ratio\": 0.0513521914827479, \"total/100k\": 381.36564702825234, \"positive/100k\": 19.583961731136863}, {\"state\": \"IL\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 8904.0, \"negative\": 39144.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5393eb554824524a4a63bbec9c795869c7869414\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 210.0, \"hospitalized\": null, \"total\": 48048, \"totalTestResults\": 48048, \"posNeg\": 48048, \"fips\": 17, \"deathIncrease\": 53.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3183.0, \"positiveIncrease\": 1209.0, \"totalTestResultsIncrease\": 4392.0, \"ratio\": 0.1853146853146853, \"total/100k\": 379.1720227108637, \"positive/100k\": 70.26614406879642}, {\"state\": \"WV\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 237.0, \"negative\": 6130.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0d5735f82295c4874f145fbc22684001af9837e6\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 2.0, \"hospitalized\": 1.0, \"total\": 6367, \"totalTestResults\": 6367, \"posNeg\": 6367, \"fips\": 54, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 854.0, \"positiveIncrease\": 20.0, \"totalTestResultsIncrease\": 874.0, \"ratio\": 0.03722318203235433, \"total/100k\": 356.2661605340803, \"positive/100k\": 13.26136014552804}, {\"state\": \"CO\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 3728.0, \"negative\": 16683.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 710.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"34cd672827b7383da28377a0761440041fae9232\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 97.0, \"hospitalized\": 710.0, \"total\": 20411, \"totalTestResults\": 20411, \"posNeg\": 20411, \"fips\": 8, \"deathIncrease\": 17.0, \"hospitalizedIncrease\": 90.0, \"negativeIncrease\": 1380.0, \"positiveIncrease\": 386.0, \"totalTestResultsIncrease\": 1766.0, \"ratio\": 0.18264661212091518, \"total/100k\": 354.43541777223334, \"positive/100k\": 64.73642827175964}, {\"state\": \"MO\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 2113.0, \"negative\": 19357.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4b8f07be28b3788c1fbf8838dfb55730f628b262\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 19.0, \"hospitalized\": null, \"total\": 21470, \"totalTestResults\": 21470, \"posNeg\": 21470, \"fips\": 29, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1508.0, \"positiveIncrease\": 279.0, \"totalTestResultsIncrease\": 1787.0, \"ratio\": 0.0984163949697252, \"total/100k\": 349.8208044151394, \"positive/100k\": 34.42810245594734}, {\"state\": \"AZ\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 1769.0, \"negative\": 22904.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 249.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 91.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"86d38836c9910dcfeb9ec4779c20c399d8da103d\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 41.0, \"hospitalized\": 249.0, \"total\": 24673, \"totalTestResults\": 24673, \"posNeg\": 24673, \"fips\": 4, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 21.0, \"negativeIncrease\": 1793.0, \"positiveIncrease\": 171.0, \"totalTestResultsIncrease\": 1964.0, \"ratio\": 0.07169780731974223, \"total/100k\": 338.9745747773955, \"positive/100k\": 24.303733748681257}, {\"state\": \"OH\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 3312.0, \"negative\": 35063.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 895.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 288.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4f9def22c6f51b8839104ffcb46d41122de71744\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 91.0, \"hospitalized\": 895.0, \"total\": 38375, \"totalTestResults\": 38375, \"posNeg\": 38375, \"fips\": 39, \"deathIncrease\": 10.0, \"hospitalizedIncrease\": 93.0, \"negativeIncrease\": 3047.0, \"positiveIncrease\": 410.0, \"totalTestResultsIncrease\": 3457.0, \"ratio\": 0.08630618892508143, \"total/100k\": 328.29730261525697, \"positive/100k\": 28.334089023106998}, {\"state\": \"AR\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 704.0, \"negative\": 8995.0, \"pending\": null, \"hospitalizedCurrently\": 71.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": 26.0, \"onVentilatorCumulative\": 39.0, \"recovered\": 60.0, \"hash\": \"1668b119de8dbd14c4334330a55a40591b632995\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 9699, \"totalTestResults\": 9699, \"posNeg\": 9699, \"fips\": 5, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1115.0, \"positiveIncrease\": 61.0, \"totalTestResultsIncrease\": 1176.0, \"ratio\": 0.07258480255696463, \"total/100k\": 321.39040534159534, \"positive/100k\": 23.32805911542253}, {\"state\": \"NC\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 2093.0, \"negative\": 29505.0, \"pending\": null, \"hospitalizedCurrently\": 184.0, \"hospitalizedCumulative\": 259.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"853296f9cd640052947f0851f15fca08782be536\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 19.0, \"hospitalized\": 259.0, \"total\": 31598, \"totalTestResults\": 31598, \"posNeg\": 31598, \"fips\": 37, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 55.0, \"negativeIncrease\": 2683.0, \"positiveIncrease\": 236.0, \"totalTestResultsIncrease\": 2919.0, \"ratio\": 0.06623836951705804, \"total/100k\": 301.27523768879047, \"positive/100k\": 19.955980520369593}, {\"state\": \"IA\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 699.0, \"negative\": 8754.0, \"pending\": null, \"hospitalizedCurrently\": 80.0, \"hospitalizedCumulative\": 138.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 188.0, \"hash\": \"feb894b5b255cf3a6496c9856b448a6307f9b022\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 11.0, \"hospitalized\": 138.0, \"total\": 9453, \"totalTestResults\": 9453, \"posNeg\": 9453, \"fips\": 19, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 18.0, \"negativeIncrease\": 700.0, \"positiveIncrease\": 85.0, \"totalTestResultsIncrease\": 785.0, \"ratio\": 0.07394477943509997, \"total/100k\": 299.61300383192764, \"positive/100k\": 22.15481748423965}, {\"state\": \"KY\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 770.0, \"negative\": 12034.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b7ec08543b9b2324d60694f6721979dc00c54543\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 31.0, \"hospitalized\": null, \"total\": 12804, \"totalTestResults\": 12804, \"posNeg\": 12804, \"fips\": 21, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4814.0, \"positiveIncrease\": 90.0, \"totalTestResultsIncrease\": 4904.0, \"ratio\": 0.06013745704467354, \"total/100k\": 286.5921476347978, \"positive/100k\": 17.23492296772839}, {\"state\": \"IN\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 3437.0, \"negative\": 14398.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b6a582ed478dfba401e4a56efe6e9e4a1b532d04\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 102.0, \"hospitalized\": null, \"total\": 17835, \"totalTestResults\": 17835, \"posNeg\": 17835, \"fips\": 18, \"deathIncrease\": 24.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1152.0, \"positiveIncrease\": 398.0, \"totalTestResultsIncrease\": 1550.0, \"ratio\": 0.19271096159237455, \"total/100k\": 264.92008058561373, \"positive/100k\": 51.053003474782976}, {\"state\": \"NE\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 279.0, \"negative\": 4487.0, \"pending\": 11.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4afd0964d77f63c02401a16e57510b1d974e875d\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 6.0, \"hospitalized\": null, \"total\": 4777, \"totalTestResults\": 4766, \"posNeg\": 4766, \"fips\": 31, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 509.0, \"positiveIncrease\": 33.0, \"totalTestResultsIncrease\": 542.0, \"ratio\": 0.058404856604563536, \"total/100k\": 246.9489373493079, \"positive/100k\": 14.423017274535672}, {\"state\": \"MI\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 12744.0, \"negative\": 11893.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"301039b85ad63d7b9da1b36f9694f4c768754044\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 479.0, \"hospitalized\": null, \"total\": 24637, \"totalTestResults\": 24637, \"posNeg\": 24637, \"fips\": 26, \"deathIncrease\": 62.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 1953.0, \"totalTestResultsIncrease\": 1953.0, \"ratio\": 0.5172707716036855, \"total/100k\": 246.69423022678706, \"positive/100k\": 127.60771481958737}, {\"state\": \"KS\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 620.0, \"negative\": 6454.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 151.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"423f188ae5bf45319e336f75b49a3708bdbc8494\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 17.0, \"hospitalized\": 151.0, \"total\": 7074, \"totalTestResults\": 7074, \"posNeg\": 7074, \"fips\": 20, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 13.0, \"negativeIncrease\": 395.0, \"positiveIncrease\": 68.0, \"totalTestResultsIncrease\": 463.0, \"ratio\": 0.08764489680520215, \"total/100k\": 242.81625667538754, \"positive/100k\": 21.28160575893982}, {\"state\": \"CA\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 10701.0, \"negative\": 24599.0, \"pending\": 59500.0, \"hospitalizedCurrently\": 2188.0, \"hospitalizedCumulative\": null, \"inIcuCurrently\": 901.0, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"67f105bfa3690e07b85e362a0c6c43aa796aba45\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 237.0, \"hospitalized\": null, \"total\": 94800, \"totalTestResults\": 35300, \"posNeg\": 35300, \"fips\": 6, \"deathIncrease\": 34.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 790.0, \"positiveIncrease\": 1510.0, \"totalTestResultsIncrease\": 2300.0, \"ratio\": 0.11287974683544304, \"total/100k\": 239.9257566449754, \"positive/100k\": 27.08275866938694}, {\"state\": \"GA\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 5831.0, \"negative\": 19434.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1158.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c82f88637af7d0c85b2360390bb2386b0da43065\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 184.0, \"hospitalized\": 1158.0, \"total\": 25265, \"totalTestResults\": 25265, \"posNeg\": 25265, \"fips\": 13, \"deathIncrease\": 21.0, \"hospitalizedIncrease\": 102.0, \"negativeIncrease\": 1825.0, \"positiveIncrease\": 483.0, \"totalTestResultsIncrease\": 2308.0, \"ratio\": 0.23079358796754404, \"total/100k\": 237.9579300928295, \"positive/100k\": 54.91916447145414}, {\"state\": \"VA\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 2012.0, \"negative\": 16993.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 312.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 145.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 108.0, \"recovered\": null, \"hash\": \"cb349d06a8404e8ea589d4d05f5ae53dfdbd1692\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 46.0, \"hospitalized\": 312.0, \"total\": 19005, \"totalTestResults\": 19005, \"posNeg\": 19005, \"fips\": 51, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 7.0, \"negativeIncrease\": 1110.0, \"positiveIncrease\": 306.0, \"totalTestResultsIncrease\": 1416.0, \"ratio\": 0.10586687713759536, \"total/100k\": 222.65781377793195, \"positive/100k\": 23.572087414953913}, {\"state\": \"MS\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 1358.0, \"negative\": 4753.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 420.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8fa26347da7a40d2568c9ec1881dcb83d4ba139c\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 29.0, \"hospitalized\": 420.0, \"total\": 6111, \"totalTestResults\": 6111, \"posNeg\": 6111, \"fips\": 28, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 60.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 181.0, \"totalTestResultsIncrease\": 181.0, \"ratio\": 0.2222222222222222, \"total/100k\": 205.33246151318366, \"positive/100k\": 45.62943589181859}, {\"state\": \"AL\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 1432.0, \"negative\": 8187.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"2321b8fce440dd33ac0feef0e923113ffffbf603\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 35.0, \"hospitalized\": null, \"total\": 9619, \"totalTestResults\": 9619, \"posNeg\": 9619, \"fips\": 1, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 684.0, \"positiveIncrease\": 199.0, \"totalTestResultsIncrease\": 883.0, \"ratio\": 0.14887202411893127, \"total/100k\": 196.17860635484894, \"positive/100k\": 29.205506216877396}, {\"state\": \"TX\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 5330.0, \"negative\": 50434.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 196.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 38.0, \"hash\": \"18a3dcd9d77854accccca1eb809c495d24501fbf\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 90.0, \"hospitalized\": 196.0, \"total\": 55764, \"totalTestResults\": 55764, \"posNeg\": 55764, \"fips\": 48, \"deathIncrease\": 20.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4424.0, \"positiveIncrease\": 661.0, \"totalTestResultsIncrease\": 5085.0, \"ratio\": 0.09558137866724051, \"total/100k\": 192.31697081388907, \"positive/100k\": 18.38192121149897}, {\"state\": \"SC\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 1554.0, \"negative\": 5441.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 241.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"83a9526f05767b32166dffbd1c0668fe1e12c1b5\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 31.0, \"hospitalized\": 241.0, \"total\": 6995, \"totalTestResults\": 6995, \"posNeg\": 6995, \"fips\": 45, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": -655.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.22215868477483916, \"total/100k\": 135.8591679398001, \"positive/100k\": 30.18229406410999}, {\"state\": \"OK\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 988.0, \"negative\": 1315.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 289.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"8702f6d3df27dc4ba14e053f1f3ea347acc7dbcf\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 38.0, \"hospitalized\": 289.0, \"total\": 2303, \"totalTestResults\": 2303, \"posNeg\": 2303, \"fips\": 40, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 32.0, \"negativeIncrease\": 50.0, \"positiveIncrease\": 109.0, \"totalTestResultsIncrease\": 159.0, \"ratio\": 0.4290056448111159, \"total/100k\": 58.20108360662739, \"positive/100k\": 24.968593401366853}, {\"state\": \"AS\", \"date\": \"2020-04-03T00:00:00\", \"positive\": null, \"negative\": 20.0, \"pending\": 6.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"3933c4281d22f25174ba2730269589d9da9bc026\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 0.0, \"hospitalized\": null, \"total\": 26, \"totalTestResults\": 20, \"posNeg\": 20, \"fips\": 60, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": null, \"total/100k\": null, \"positive/100k\": null}, {\"state\": \"GU\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 84.0, \"negative\": 459.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 31.0, \"inIcuCurrently\": null, \"inIcuCumulative\": 2.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 14.0, \"hash\": \"99ceceee3dd48e2b913ddfdcacb4024fd4192dde\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 4.0, \"hospitalized\": 31.0, \"total\": 543, \"totalTestResults\": 543, \"posNeg\": 543, \"fips\": 66, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 12.0, \"negativeIncrease\": 17.0, \"positiveIncrease\": 2.0, \"totalTestResultsIncrease\": 19.0, \"ratio\": 0.15469613259668508, \"total/100k\": null, \"positive/100k\": null}, {\"state\": \"MP\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 8.0, \"negative\": 13.0, \"pending\": 10.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"6642918d88a155cb1d4ec9916bd848942a950a82\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 1.0, \"hospitalized\": null, \"total\": 31, \"totalTestResults\": 21, \"posNeg\": 21, \"fips\": 69, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.25806451612903225, \"total/100k\": null, \"positive/100k\": null}, {\"state\": \"PR\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 378.0, \"negative\": 2049.0, \"pending\": 1055.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"31c1cb53249716895ec3490c18feb99b785a620a\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 15.0, \"hospitalized\": null, \"total\": 3482, \"totalTestResults\": 2427, \"posNeg\": 2427, \"fips\": 72, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 445.0, \"positiveIncrease\": 62.0, \"totalTestResultsIncrease\": 507.0, \"ratio\": 0.10855829982768524, \"total/100k\": null, \"positive/100k\": null}, {\"state\": \"VI\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 38.0, \"negative\": 154.0, \"pending\": 56.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 29.0, \"hash\": \"17ad51e2c11f205d7826f212c444c6191de61144\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 248, \"totalTestResults\": 192, \"posNeg\": 192, \"fips\": 78, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5.0, \"positiveIncrease\": 5.0, \"totalTestResultsIncrease\": 10.0, \"ratio\": 0.1532258064516129, \"total/100k\": null, \"positive/100k\": null}]}}, {\"mode\": \"vega-lite\"});\n",
       "</script>"
      ],
      "text/plain": [
       "alt.LayerChart(...)"
      ]
     "metadata": {},
     "output_type": "display_data"
      "text/html": [
       "\n",
       "<p style=\"font-size: smaller\">Data Sources: \n",
       "  <a href=\"https://covidtracking.com\">The COVID Tracking Project</a>\n",
       "<br>\n",
       "Analysis and Visualization:\n",
       "  <a href=\"https://renkulab.io/projects/covid-19/covid-19-public-data\">Covid-19 Public Data Collaboration Project</a>\n",
       "</p>"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     "metadata": {},
     "output_type": "display_data"
    "viz_df = most_recent_df.sort_values('total/100k', ascending=False)\n",
    "chart = alt.Chart(viz_df, title=\"Cases (orange points) and tests(blue bars) per 100k\").encode(alt.X('state', sort=None))\n",
    "tests = chart.mark_bar().encode(alt.Y('total/100k', axis=alt.Axis(title='COVID-19 Tests/100k, Positive Cases/100k')))\n",
    "positives = chart.mark_point(color='orange', filled=True, size=100, opacity=1).encode(alt.Y('positive/100k'))\n",
    "display(alt.layer(tests, positives))\n",
    "display(html_credits)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Counts and rates by state\n",
    "\n",
    "Taking a look at the three states with the highest per-capita incidence of covid-19. The red and yellow curves represent the total tests and total positive tests respectively. "
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 10,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "\n",
       "<div id=\"altair-viz-2643217a9c144431bbc66f4322a57000\"></div>\n",
       "<script type=\"text/javascript\">\n",
       "  (function(spec, embedOpt){\n",
       "    const outputDiv = document.getElementById(\"altair-viz-2643217a9c144431bbc66f4322a57000\");\n",
       "    const paths = {\n",
       "      \"vega\": \"https://cdn.jsdelivr.net/npm//vega@5?noext\",\n",
       "      \"vega-lib\": \"https://cdn.jsdelivr.net/npm//vega-lib?noext\",\n",
       "      \"vega-lite\": \"https://cdn.jsdelivr.net/npm//vega-lite@4.0.2?noext\",\n",
       "      \"vega-embed\": \"https://cdn.jsdelivr.net/npm//vega-embed@6?noext\",\n",
       "    };\n",
       "\n",
       "    function loadScript(lib) {\n",
       "      return new Promise(function(resolve, reject) {\n",
       "        var s = document.createElement('script');\n",
       "        s.src = paths[lib];\n",
       "        s.async = true;\n",
       "        s.onload = () => resolve(paths[lib]);\n",
       "        s.onerror = () => reject(`Error loading script: ${paths[lib]}`);\n",
       "        document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
       "      });\n",
       "    }\n",
       "\n",
       "    function showError(err) {\n",
       "      outputDiv.innerHTML = `<div class=\"error\" style=\"color:red;\">${err}</div>`;\n",
       "      throw err;\n",
       "    }\n",
       "\n",
       "    function displayChart(vegaEmbed) {\n",
       "      vegaEmbed(outputDiv, spec, embedOpt)\n",
       "        .catch(err => showError(`Javascript Error: ${err.message}<br>This usually means there's a typo in your chart specification. See the javascript console for the full traceback.`));\n",
       "    }\n",
       "\n",
       "    if(typeof define === \"function\" && define.amd) {\n",
       "      requirejs.config({paths});\n",
       "      require([\"vega-embed\"], displayChart, err => showError(`Error loading script: ${err.message}`));\n",
       "    } else if (typeof vegaEmbed === \"function\") {\n",
       "      displayChart(vegaEmbed);\n",
       "    } else {\n",
       "      loadScript(\"vega\")\n",
       "        .then(() => loadScript(\"vega-lite\"))\n",
       "        .then(() => loadScript(\"vega-embed\"))\n",
       "        .catch(showError)\n",
       "        .then(() => displayChart(vegaEmbed));\n",
       "    }\n",
       "  })({\"config\": {\"view\": {\"continuousWidth\": 400, \"continuousHeight\": 300}}, \"hconcat\": [{\"layer\": [{\"mark\": {\"type\": \"bar\", \"size\": 6}, \"encoding\": {\"x\": {\"type\": \"temporal\", \"axis\": {\"title\": \"Date\"}, \"field\": \"date\"}, \"y\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"Daily positive\"}, \"field\": \"positive_diff\"}}, \"height\": 150, \"title\": \"NY\", \"width\": 250}, {\"layer\": [{\"mark\": {\"type\": \"line\", \"color\": \"red\"}, \"encoding\": {\"x\": {\"type\": \"temporal\", \"axis\": {\"title\": \"Date\"}, \"field\": \"date\"}, \"y\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"Total/10\"}, \"field\": \"total_10\"}}, \"height\": 150, \"title\": \"NY\", \"width\": 250}, {\"mark\": {\"type\": \"line\", \"color\": \"orange\"}, \"encoding\": {\"x\": {\"type\": \"temporal\", \"axis\": {\"title\": \"Date\"}, \"field\": \"date\"}, \"y\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"Positive\"}, \"field\": \"positive\"}}, \"height\": 150, \"title\": \"NY\", \"width\": 250}]}], \"data\": {\"name\": \"data-b1514d4b60d6344ec0e1135913626471\"}, \"resolve\": {\"scale\": {\"y\": \"independent\"}}}, {\"layer\": [{\"mark\": {\"type\": \"bar\", \"size\": 6}, \"encoding\": {\"x\": {\"type\": \"temporal\", \"axis\": {\"title\": \"Date\"}, \"field\": \"date\"}, \"y\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"Daily positive\"}, \"field\": \"positive_diff\"}}, \"height\": 150, \"title\": \"LA\", \"width\": 250}, {\"layer\": [{\"mark\": {\"type\": \"line\", \"color\": \"red\"}, \"encoding\": {\"x\": {\"type\": \"temporal\", \"axis\": {\"title\": \"Date\"}, \"field\": \"date\"}, \"y\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"Total/10\"}, \"field\": \"total_10\"}}, \"height\": 150, \"title\": \"LA\", \"width\": 250}, {\"mark\": {\"type\": \"line\", \"color\": \"orange\"}, \"encoding\": {\"x\": {\"type\": \"temporal\", \"axis\": {\"title\": \"Date\"}, \"field\": \"date\"}, \"y\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"Positive\"}, \"field\": \"positive\"}}, \"height\": 150, \"title\": \"LA\", \"width\": 250}]}], \"data\": {\"name\": \"data-23428c29e4ae3d9e05b0e757754e5ef6\"}, \"resolve\": {\"scale\": {\"y\": \"independent\"}}}, {\"layer\": [{\"mark\": {\"type\": \"bar\", \"size\": 6}, \"encoding\": {\"x\": {\"type\": \"temporal\", \"axis\": {\"title\": \"Date\"}, \"field\": \"date\"}, \"y\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"Daily positive\"}, \"field\": \"positive_diff\"}}, \"height\": 150, \"title\": \"WA\", \"width\": 250}, {\"layer\": [{\"mark\": {\"type\": \"line\", \"color\": \"red\"}, \"encoding\": {\"x\": {\"type\": \"temporal\", \"axis\": {\"title\": \"Date\"}, \"field\": \"date\"}, \"y\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"Total/10\"}, \"field\": \"total_10\"}}, \"height\": 150, \"title\": \"WA\", \"width\": 250}, {\"mark\": {\"type\": \"line\", \"color\": \"orange\"}, \"encoding\": {\"x\": {\"type\": \"temporal\", \"axis\": {\"title\": \"Date\"}, \"field\": \"date\"}, \"y\": {\"type\": \"quantitative\", \"axis\": {\"title\": \"Positive\"}, \"field\": \"positive\"}}, \"height\": 150, \"title\": \"WA\", \"width\": 250}]}], \"data\": {\"name\": \"data-573aac7425449c27f6bd14cdf56e3d52\"}, \"resolve\": {\"scale\": {\"y\": \"independent\"}}}], \"$schema\": \"https://vega.github.io/schema/vega-lite/v4.0.2.json\", \"datasets\": {\"data-b1514d4b60d6344ec0e1135913626471\": [{\"state\": \"NY\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 102863.0, \"negative\": 168139.0, \"pending\": null, \"hospitalizedCurrently\": 14810.0, \"hospitalizedCumulative\": 23696.0, \"inIcuCurrently\": 3731.0, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 8886.0, \"hash\": \"accc00cef8483cff65936c97844fa6aa44976324\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 2935.0, \"hospitalized\": 23696.0, \"total\": 271002, \"totalTestResults\": 271002, \"posNeg\": 271002, \"fips\": 36, \"deathIncrease\": 562.0, \"hospitalizedIncrease\": 2879.0, \"negativeIncrease\": 21555.0, \"positiveIncrease\": 10482.0, \"totalTestResultsIncrease\": 32037.0, \"ratio\": 0.3795654644615169, \"positive_diff\": 10482.0, \"negative_diff\": 21555.0, \"death_diff\": 562.0, \"positive_diff_100k\": 53.88216584099949, \"death_diff_100k\": 2.8889312347492573, \"total_10\": 27100.2}, {\"state\": \"NY\", \"date\": \"2020-04-02T00:00:00\", \"positive\": 92381.0, \"negative\": 146584.0, \"pending\": null, \"hospitalizedCurrently\": 13383.0, \"hospitalizedCumulative\": 20817.0, \"inIcuCurrently\": 3396.0, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 7434.0, \"hash\": \"764d0566c27be04c416c502640d5fffbcb8cad26\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 2373.0, \"hospitalized\": 20817.0, \"total\": 238965, \"totalTestResults\": 238965, \"posNeg\": 238965, \"fips\": 36, \"deathIncrease\": 432.0, \"hospitalizedIncrease\": 2449.0, \"negativeIncrease\": 9416.0, \"positiveIncrease\": 8669.0, \"totalTestResultsIncrease\": 18085.0, \"ratio\": 0.3865879940577072, \"positive_diff\": 8669.0, \"negative_diff\": 9416.0, \"death_diff\": 432.0, \"positive_diff_100k\": 44.562535363062835, \"death_diff_100k\": 2.2206731199496073, \"total_10\": 23896.5}, {\"state\": \"NY\", \"date\": \"2020-04-01T00:00:00\", \"positive\": 83712.0, \"negative\": 137168.0, \"pending\": null, \"hospitalizedCurrently\": 12226.0, \"hospitalizedCumulative\": 18368.0, \"inIcuCurrently\": 3022.0, \"inIcuCumulative\": 3022.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 6142.0, \"hash\": \"bc022c8f01dbc1a4d1f046ebce21c18a7b42cfa6\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 1941.0, \"hospitalized\": 18368.0, \"total\": 220880, \"totalTestResults\": 220880, \"posNeg\": 220880, \"fips\": 36, \"deathIncrease\": 391.0, \"hospitalizedIncrease\": 2464.0, \"negativeIncrease\": 7777.0, \"positiveIncrease\": 7917.0, \"totalTestResultsIncrease\": 15694.0, \"ratio\": 0.3789931184353495, \"positive_diff\": 7917.0, \"negative_diff\": 7777.0, \"death_diff\": 391.0, \"positive_diff_100k\": 40.696919191298704, \"death_diff_100k\": 2.0099147914358713, \"total_10\": 22088.0}, {\"state\": \"NY\", \"date\": \"2020-03-31T00:00:00\", \"positive\": 75795.0, \"negative\": 129391.0, \"pending\": null, \"hospitalizedCurrently\": 10929.0, \"hospitalizedCumulative\": 15904.0, \"inIcuCurrently\": 2710.0, \"inIcuCumulative\": 2710.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 4975.0, \"hash\": \"a3afdea93fae4daf8073978749d736d46e9134c6\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 1550.0, \"hospitalized\": 15904.0, \"total\": 205186, \"totalTestResults\": 205186, \"posNeg\": 205186, \"fips\": 36, \"deathIncrease\": 332.0, \"hospitalizedIncrease\": 2183.0, \"negativeIncrease\": 9420.0, \"positiveIncrease\": 9298.0, \"totalTestResultsIncrease\": 18718.0, \"ratio\": 0.3693965475227355, \"positive_diff\": 9298.0, \"negative_diff\": 9420.0, \"death_diff\": 332.0, \"positive_diff_100k\": 47.79587654928576, \"death_diff_100k\": 1.7066284162575684, \"total_10\": 20518.6}, {\"state\": \"NY\", \"date\": \"2020-03-30T00:00:00\", \"positive\": 66497.0, \"negative\": 119971.0, \"pending\": null, \"hospitalizedCurrently\": 9517.0, \"hospitalizedCumulative\": 13721.0, \"inIcuCurrently\": 2352.0, \"inIcuCumulative\": 2352.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 4204.0, \"hash\": \"a749060bc47c2573b505c13198673b348ed3cc2b\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 1218.0, \"hospitalized\": 13721.0, \"total\": 186468, \"totalTestResults\": 186468, \"posNeg\": 186468, \"fips\": 36, \"deathIncrease\": 253.0, \"hospitalizedIncrease\": 1646.0, \"negativeIncrease\": 7124.0, \"positiveIncrease\": 6984.0, \"totalTestResultsIncrease\": 14108.0, \"ratio\": 0.35661346719008086, \"positive_diff\": 6984.0, \"negative_diff\": 7124.0, \"death_diff\": 253.0, \"positive_diff_100k\": 35.90088210585198, \"death_diff_100k\": 1.300533100340858, \"total_10\": 18646.8}, {\"state\": \"NY\", \"date\": \"2020-03-29T00:00:00\", \"positive\": 59513.0, \"negative\": 112847.0, \"pending\": null, \"hospitalizedCurrently\": 8503.0, \"hospitalizedCumulative\": 12075.0, \"inIcuCurrently\": 2037.0, \"inIcuCumulative\": 2037.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 3572.0, \"hash\": \"b5656122e28105ae4788a0d68eabb1ef68a06287\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 965.0, \"hospitalized\": 12075.0, \"total\": 172360, \"totalTestResults\": 172360, \"posNeg\": 172360, \"fips\": 36, \"deathIncrease\": 237.0, \"hospitalizedIncrease\": 2021.0, \"negativeIncrease\": 9231.0, \"positiveIncrease\": 7195.0, \"totalTestResultsIncrease\": 16426.0, \"ratio\": 0.34528312833604086, \"positive_diff\": 7195.0, \"negative_diff\": 9231.0, \"death_diff\": 237.0, \"positive_diff_100k\": 36.985516430642186, \"death_diff_100k\": 1.2182859477501315, \"total_10\": 17236.0}, {\"state\": \"NY\", \"date\": \"2020-03-28T00:00:00\", \"positive\": 52318.0, \"negative\": 103616.0, \"pending\": null, \"hospitalizedCurrently\": 7328.0, \"hospitalizedCumulative\": 10054.0, \"inIcuCurrently\": 1755.0, \"inIcuCumulative\": 1755.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 2726.0, \"hash\": \"7592db95575a5d4ef226ff6014283d8d85a0db52\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 728.0, \"hospitalized\": 10054.0, \"total\": 155934, \"totalTestResults\": 155934, \"posNeg\": 155934, \"fips\": 36, \"deathIncrease\": 209.0, \"hospitalizedIncrease\": 1528.0, \"negativeIncrease\": 2498.0, \"positiveIncrease\": 7683.0, \"totalTestResultsIncrease\": 10181.0, \"ratio\": 0.33551374299383074, \"positive_diff\": 7683.0, \"negative_diff\": 2498.0, \"death_diff\": 209.0, \"positive_diff_100k\": 39.49405458465933, \"death_diff_100k\": 1.074353430716361, \"total_10\": 15593.4}, {\"state\": \"NY\", \"date\": \"2020-03-27T00:00:00\", \"positive\": 44635.0, \"negative\": 101118.0, \"pending\": null, \"hospitalizedCurrently\": 6481.0, \"hospitalizedCumulative\": 8526.0, \"inIcuCurrently\": 1583.0, \"inIcuCumulative\": 1583.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": 2045.0, \"hash\": \"d7f2dd3fcfbabebfdaeaa0a19e5db38d94fb112a\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 519.0, \"hospitalized\": 8526.0, \"total\": 145753, \"totalTestResults\": 145753, \"posNeg\": 145753, \"fips\": 36, \"deathIncrease\": 134.0, \"hospitalizedIncrease\": 1682.0, \"negativeIncrease\": 16272.0, \"positiveIncrease\": 7377.0, \"totalTestResultsIncrease\": 23649.0, \"ratio\": 0.3062372644130824, \"positive_diff\": 7377.0, \"negative_diff\": 16272.0, \"death_diff\": 134.0, \"positive_diff_100k\": 37.92107779136169, \"death_diff_100k\": 0.6888199029473319, \"total_10\": 14575.3}, {\"state\": \"NY\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 37258.0, \"negative\": 84846.0, \"pending\": null, \"hospitalizedCurrently\": 5327.0, \"hospitalizedCumulative\": 6844.0, \"inIcuCurrently\": 1290.0, \"inIcuCumulative\": 1290.0, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c9e5180c39aab68a5662116651d17a05f4e4b966\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 385.0, \"hospitalized\": 6844.0, \"total\": 122104, \"totalTestResults\": 122104, \"posNeg\": 122104, \"fips\": 36, \"deathIncrease\": 100.0, \"hospitalizedIncrease\": 3039.0, \"negativeIncrease\": 12178.0, \"positiveIncrease\": 6447.0, \"totalTestResultsIncrease\": 18625.0, \"ratio\": 0.3051333289654721, \"positive_diff\": 6447.0, \"negative_diff\": 12178.0, \"death_diff\": 100.0, \"positive_diff_100k\": 33.140462047025736, \"death_diff_100k\": 0.5140447036920387, \"total_10\": 12210.4}, {\"state\": \"NY\", \"date\": \"2020-03-25T00:00:00\", \"positive\": 30811.0, \"negative\": 72668.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 3805.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"332b18596170cd3e35617cfba48a5723aa2ec8f3\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 285.0, \"hospitalized\": 3805.0, \"total\": 103479, \"totalTestResults\": 103479, \"posNeg\": 103479, \"fips\": 36, \"deathIncrease\": 75.0, \"hospitalizedIncrease\": 571.0, \"negativeIncrease\": 7063.0, \"positiveIncrease\": 5146.0, \"totalTestResultsIncrease\": 12209.0, \"ratio\": 0.2977512345500053, \"positive_diff\": 5146.0, \"negative_diff\": 7063.0, \"death_diff\": 75.0, \"positive_diff_100k\": 26.452740451992312, \"death_diff_100k\": 0.38553352776902905, \"total_10\": 10347.9}, {\"state\": \"NY\", \"date\": \"2020-03-24T00:00:00\", \"positive\": 25665.0, \"negative\": 65605.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 3234.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ea3323c8187b8ff5574d3576f83791e01dd1521f\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 210.0, \"hospitalized\": 3234.0, \"total\": 91270, \"totalTestResults\": 91270, \"posNeg\": 91270, \"fips\": 36, \"deathIncrease\": 96.0, \"hospitalizedIncrease\": 599.0, \"negativeIncrease\": 8191.0, \"positiveIncrease\": 4790.0, \"totalTestResultsIncrease\": 12981.0, \"ratio\": 0.2811986413936671, \"positive_diff\": 4790.0, \"negative_diff\": 8191.0, \"death_diff\": 96.0, \"positive_diff_100k\": 24.622741306848656, \"death_diff_100k\": 0.49348291554435714, \"total_10\": 9127.0}, {\"state\": \"NY\", \"date\": \"2020-03-23T00:00:00\", \"positive\": 20875.0, \"negative\": 57414.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 2635.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"40440cdc2bc6ecd1d88040f01ebbdcb130a33257\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 114.0, \"hospitalized\": 2635.0, \"total\": 78289, \"totalTestResults\": 78289, \"posNeg\": 78289, \"fips\": 36, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 661.0, \"negativeIncrease\": 11181.0, \"positiveIncrease\": 5707.0, \"totalTestResultsIncrease\": 16888.0, \"ratio\": 0.2666402687478445, \"positive_diff\": 5707.0, \"negative_diff\": 11181.0, \"death_diff\": 0.0, \"positive_diff_100k\": 29.336531239704644, \"death_diff_100k\": 0.0, \"total_10\": 7828.9}, {\"state\": \"NY\", \"date\": \"2020-03-22T00:00:00\", \"positive\": 15168.0, \"negative\": 46233.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1974.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0df3f76e6407f511b0c5bf4f5647cce8f407250e\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 114.0, \"hospitalized\": 1974.0, \"total\": 61401, \"totalTestResults\": 61401, \"posNeg\": 61401, \"fips\": 36, \"deathIncrease\": 70.0, \"hospitalizedIncrease\": 371.0, \"negativeIncrease\": 11152.0, \"positiveIncrease\": 4812.0, \"totalTestResultsIncrease\": 15964.0, \"ratio\": 0.24703180729955537, \"positive_diff\": 4812.0, \"negative_diff\": 11152.0, \"death_diff\": 70.0, \"positive_diff_100k\": 24.735831141660903, \"death_diff_100k\": 0.3598312925844271, \"total_10\": 6140.1}, {\"state\": \"NY\", \"date\": \"2020-03-21T00:00:00\", \"positive\": 10356.0, \"negative\": 35081.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1603.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"eb983c3fb4fc2d7f3c2c1250578379f502787c29\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 44.0, \"hospitalized\": 1603.0, \"total\": 45437, \"totalTestResults\": 45437, \"posNeg\": 45437, \"fips\": 36, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 1603.0, \"negativeIncrease\": 9756.0, \"positiveIncrease\": 3254.0, \"totalTestResultsIncrease\": 13010.0, \"ratio\": 0.2279199771111649, \"positive_diff\": 3254.0, \"negative_diff\": 9756.0, \"death_diff\": 9.0, \"positive_diff_100k\": 16.72701465813894, \"death_diff_100k\": 0.04626402333228348, \"total_10\": 4543.7}, {\"state\": \"NY\", \"date\": \"2020-03-20T00:00:00\", \"positive\": 7102.0, \"negative\": 25325.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5293b5c5920709d4f3cf66b901621a61a47d0d23\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 35.0, \"hospitalized\": null, \"total\": 32427, \"totalTestResults\": 32427, \"posNeg\": 32427, \"fips\": 36, \"deathIncrease\": 23.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 7193.0, \"positiveIncrease\": 2950.0, \"totalTestResultsIncrease\": 10143.0, \"ratio\": 0.21901501834890677, \"positive_diff\": 2950.0, \"negative_diff\": 7193.0, \"death_diff\": 23.0, \"positive_diff_100k\": 15.16431875891514, \"death_diff_100k\": 0.11823028184916891, \"total_10\": 3242.7}, {\"state\": \"NY\", \"date\": \"2020-03-19T00:00:00\", \"positive\": 4152.0, \"negative\": 18132.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"2eabc9b73139066e3613021b1e9c9deaf8af733c\", \"dateChecked\": \"2020-03-19T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 22284, \"totalTestResults\": 22284, \"posNeg\": 22284, \"fips\": 36, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5917.0, \"positiveIncrease\": 1770.0, \"totalTestResultsIncrease\": 7687.0, \"ratio\": 0.18632202477113624, \"positive_diff\": 1770.0, \"negative_diff\": 5917.0, \"death_diff\": 0.0, \"positive_diff_100k\": 9.098591255349085, \"death_diff_100k\": 0.0, \"total_10\": 2228.4}, {\"state\": \"NY\", \"date\": \"2020-03-18T00:00:00\", \"positive\": 2382.0, \"negative\": 12215.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"65a08e6a0f81bd2c4bbc9988a17f0892d2ec4d35\", \"dateChecked\": \"2020-03-18T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 14597, \"totalTestResults\": 14597, \"posNeg\": 14597, \"fips\": 36, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 6709.0, \"positiveIncrease\": 682.0, \"totalTestResultsIncrease\": 7391.0, \"ratio\": 0.1631842159347811, \"positive_diff\": 682.0, \"negative_diff\": 6709.0, \"death_diff\": 5.0, \"positive_diff_100k\": 3.505784879179704, \"death_diff_100k\": 0.02570223518460193, \"total_10\": 1459.7}, {\"state\": \"NY\", \"date\": \"2020-03-17T00:00:00\", \"positive\": 1700.0, \"negative\": 5506.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a2d96e7a962926fa3165aef038360c097b6be4ce\", \"dateChecked\": \"2020-03-17T20:00:00Z\", \"death\": 7.0, \"hospitalized\": null, \"total\": 7206, \"totalTestResults\": 7206, \"posNeg\": 7206, \"fips\": 36, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 963.0, \"positiveIncrease\": 750.0, \"totalTestResultsIncrease\": 1713.0, \"ratio\": 0.23591451568137664, \"positive_diff\": 750.0, \"negative_diff\": 963.0, \"death_diff\": 0.0, \"positive_diff_100k\": 3.85533527769029, \"death_diff_100k\": 0.0, \"total_10\": 720.6}, {\"state\": \"NY\", \"date\": \"2020-03-16T00:00:00\", \"positive\": 950.0, \"negative\": 4543.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"994a65ba75be3681f76ff4612eb8fde85cff81cd\", \"dateChecked\": \"2020-03-16T20:00:00Z\", \"death\": 7.0, \"hospitalized\": null, \"total\": 5493, \"totalTestResults\": 5493, \"posNeg\": 5493, \"fips\": 36, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 221.0, \"totalTestResultsIncrease\": 221.0, \"ratio\": 0.17294738758419806, \"positive_diff\": 221.0, \"negative_diff\": 0.0, \"death_diff\": 4.0, \"positive_diff_100k\": 1.1360387951594055, \"death_diff_100k\": 0.020561788147681545, \"total_10\": 549.3}, {\"state\": \"NY\", \"date\": \"2020-03-15T00:00:00\", \"positive\": 729.0, \"negative\": 4543.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"963f632b5d1577cd5cf9b6c332a912c2fdebea16\", \"dateChecked\": \"2020-03-15T20:00:00Z\", \"death\": 3.0, \"hospitalized\": null, \"total\": 5272, \"totalTestResults\": 5272, \"posNeg\": 5272, \"fips\": 36, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1764.0, \"positiveIncrease\": 205.0, \"totalTestResultsIncrease\": 1969.0, \"ratio\": 0.13827769347496208, \"positive_diff\": 205.0, \"negative_diff\": 1764.0, \"death_diff\": null, \"positive_diff_100k\": 1.0537916425686793, \"death_diff_100k\": null, \"total_10\": 527.2}, {\"state\": \"NY\", \"date\": \"2020-03-14T00:00:00\", \"positive\": 524.0, \"negative\": 2779.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f28c39ca671c26d022ff2556494ad8767765eb93\", \"dateChecked\": \"2020-03-14T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 3303, \"totalTestResults\": 3303, \"posNeg\": 3303, \"fips\": 36, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 103.0, \"totalTestResultsIncrease\": 103.0, \"ratio\": 0.15864365728125945, \"positive_diff\": 103.0, \"negative_diff\": 0.0, \"death_diff\": null, \"positive_diff_100k\": 0.5294660448027999, \"death_diff_100k\": null, \"total_10\": 330.3}, {\"state\": \"NY\", \"date\": \"2020-03-13T00:00:00\", \"positive\": 421.0, \"negative\": 2779.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a0a0e2997c411014ef2cd98b9502387730f585c7\", \"dateChecked\": \"2020-03-13T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 3200, \"totalTestResults\": 3200, \"posNeg\": 3200, \"fips\": 36, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2687.0, \"positiveIncrease\": 205.0, \"totalTestResultsIncrease\": 2892.0, \"ratio\": 0.1315625, \"positive_diff\": 205.0, \"negative_diff\": 2687.0, \"death_diff\": null, \"positive_diff_100k\": 1.0537916425686793, \"death_diff_100k\": null, \"total_10\": 320.0}, {\"state\": \"NY\", \"date\": \"2020-03-12T00:00:00\", \"positive\": 216.0, \"negative\": 92.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"78ea2217b81c0eba25ec04b1196199ad81793ead\", \"dateChecked\": \"2020-03-12T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 308, \"totalTestResults\": 308, \"posNeg\": 308, \"fips\": 36, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.7012987012987013, \"positive_diff\": 0.0, \"negative_diff\": 0.0, \"death_diff\": null, \"positive_diff_100k\": 0.0, \"death_diff_100k\": null, \"total_10\": 30.8}, {\"state\": \"NY\", \"date\": \"2020-03-11T00:00:00\", \"positive\": 216.0, \"negative\": 92.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"6fbded3854324c39522ab7fdb01d2087f60e2d2b\", \"dateChecked\": \"2020-03-11T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 308, \"totalTestResults\": 308, \"posNeg\": 308, \"fips\": 36, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 43.0, \"totalTestResultsIncrease\": 43.0, \"ratio\": 0.7012987012987013, \"positive_diff\": 43.0, \"negative_diff\": 0.0, \"death_diff\": null, \"positive_diff_100k\": 0.22103922258757666, \"death_diff_100k\": null, \"total_10\": 30.8}, {\"state\": \"NY\", \"date\": \"2020-03-10T00:00:00\", \"positive\": 173.0, \"negative\": 92.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"193f85893cecb99d063a03060bc4802d2d6458f1\", \"dateChecked\": \"2020-03-10T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 265, \"totalTestResults\": 265, \"posNeg\": 265, \"fips\": 36, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 31.0, \"totalTestResultsIncrease\": 31.0, \"ratio\": 0.6528301886792452, \"positive_diff\": 31.0, \"negative_diff\": 0.0, \"death_diff\": null, \"positive_diff_100k\": 0.15935385814453198, \"death_diff_100k\": null, \"total_10\": 26.5}, {\"state\": \"NY\", \"date\": \"2020-03-09T00:00:00\", \"positive\": 142.0, \"negative\": 92.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"260a070d28ed40a35e8b31aca5f4ab3352dc9ba8\", \"dateChecked\": \"2020-03-09T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 234, \"totalTestResults\": 234, \"posNeg\": 234, \"fips\": 36, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 37.0, \"totalTestResultsIncrease\": 37.0, \"ratio\": 0.6068376068376068, \"positive_diff\": 37.0, \"negative_diff\": 0.0, \"death_diff\": null, \"positive_diff_100k\": 0.19019654036605432, \"death_diff_100k\": null, \"total_10\": 23.4}, {\"state\": \"NY\", \"date\": \"2020-03-08T00:00:00\", \"positive\": 105.0, \"negative\": 92.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f6d3b78f41cadeaf08e72f35692a9619d70aad07\", \"dateChecked\": \"2020-03-08T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 197, \"totalTestResults\": 197, \"posNeg\": 197, \"fips\": 36, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 29.0, \"totalTestResultsIncrease\": 29.0, \"ratio\": 0.5329949238578681, \"positive_diff\": 29.0, \"negative_diff\": 0.0, \"death_diff\": null, \"positive_diff_100k\": 0.14907296407069123, \"death_diff_100k\": null, \"total_10\": 19.7}, {\"state\": \"NY\", \"date\": \"2020-03-07T00:00:00\", \"positive\": 76.0, \"negative\": 92.0, \"pending\": 236.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"53a82f90b4d4a28a5b06248b1e4c78e9229312dd\", \"dateChecked\": \"2020-03-07T21:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 404, \"totalTestResults\": 168, \"posNeg\": 168, \"fips\": 36, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 43.0, \"totalTestResultsIncrease\": 43.0, \"ratio\": 0.18811881188118812, \"positive_diff\": 43.0, \"negative_diff\": 0.0, \"death_diff\": null, \"positive_diff_100k\": 0.22103922258757666, \"death_diff_100k\": null, \"total_10\": 40.4}, {\"state\": \"NY\", \"date\": \"2020-03-06T00:00:00\", \"positive\": 33.0, \"negative\": 92.0, \"pending\": 236.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"18e7306085561597629e7ffac110572b1aa9f9e5\", \"dateChecked\": \"2020-03-06T21:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 361, \"totalTestResults\": 125, \"posNeg\": 125, \"fips\": 36, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 16.0, \"positiveIncrease\": 11.0, \"totalTestResultsIncrease\": 27.0, \"ratio\": 0.09141274238227147, \"positive_diff\": 11.0, \"negative_diff\": 16.0, \"death_diff\": null, \"positive_diff_100k\": 0.05654491740612426, \"death_diff_100k\": null, \"total_10\": 36.1}, {\"state\": \"NY\", \"date\": \"2020-03-05T00:00:00\", \"positive\": 22.0, \"negative\": 76.0, \"pending\": 24.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a5eb1a3c895ee3acd8c87b19363bab6d581b3933\", \"dateChecked\": \"2020-03-05T21:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 122, \"totalTestResults\": 98, \"posNeg\": 98, \"fips\": 36, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 28.0, \"positiveIncrease\": 16.0, \"totalTestResultsIncrease\": 44.0, \"ratio\": 0.18032786885245902, \"positive_diff\": 16.0, \"negative_diff\": 28.0, \"death_diff\": null, \"positive_diff_100k\": 0.08224715259072618, \"death_diff_100k\": null, \"total_10\": 12.2}, {\"state\": \"NY\", \"date\": \"2020-03-04T00:00:00\", \"positive\": 6.0, \"negative\": 48.0, \"pending\": 24.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0e095e2b3db515b00d892276e6cac6912b1e0111\", \"dateChecked\": \"2020-03-04T21:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 78, \"totalTestResults\": 54, \"posNeg\": 54, \"fips\": 36, \"deathIncrease\": null, \"hospitalizedIncrease\": null, \"negativeIncrease\": null, \"positiveIncrease\": null, \"totalTestResultsIncrease\": null, \"ratio\": 0.07692307692307693, \"positive_diff\": null, \"negative_diff\": null, \"death_diff\": null, \"positive_diff_100k\": null, \"death_diff_100k\": null, \"total_10\": 7.8}], \"data-23428c29e4ae3d9e05b0e757754e5ef6\": [{\"state\": \"LA\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 10297.0, \"negative\": 43348.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1707.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 535.0, \"recovered\": null, \"hash\": \"0694f8cf6531a993f01c11a566a18087757b24d2\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 370.0, \"hospitalized\": 1707.0, \"total\": 53645, \"totalTestResults\": 53645, \"posNeg\": 53645, \"fips\": 22, \"deathIncrease\": 60.0, \"hospitalizedIncrease\": 68.0, \"negativeIncrease\": 1412.0, \"positiveIncrease\": 1147.0, \"totalTestResultsIncrease\": 2559.0, \"ratio\": 0.19194705937179607, \"positive_diff\": 1147.0, \"negative_diff\": 1412.0, \"death_diff\": 60.0, \"positive_diff_100k\": 24.673065745653606, \"death_diff_100k\": 1.2906573188659252, \"total_10\": 5364.5}, {\"state\": \"LA\", \"date\": \"2020-04-02T00:00:00\", \"positive\": 9150.0, \"negative\": 41936.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1639.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 507.0, \"recovered\": null, \"hash\": \"00bc323a6acfed050d7eb6527cbc2edd1bea6eb7\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 310.0, \"hospitalized\": 1639.0, \"total\": 51086, \"totalTestResults\": 51086, \"posNeg\": 51086, \"fips\": 22, \"deathIncrease\": 37.0, \"hospitalizedIncrease\": 141.0, \"negativeIncrease\": 2584.0, \"positiveIncrease\": 2726.0, \"totalTestResultsIncrease\": 5310.0, \"ratio\": 0.17910973652272638, \"positive_diff\": 2726.0, \"negative_diff\": 2584.0, \"death_diff\": 37.0, \"positive_diff_100k\": 58.63886418714187, \"death_diff_100k\": 0.7959053466339873, \"total_10\": 5108.6}, {\"state\": \"LA\", \"date\": \"2020-04-01T00:00:00\", \"positive\": 6424.0, \"negative\": 39352.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1498.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 490.0, \"recovered\": null, \"hash\": \"3e4974bc6afa3064f7b37913b0497195237d9651\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 273.0, \"hospitalized\": 1498.0, \"total\": 45776, \"totalTestResults\": 45776, \"posNeg\": 45776, \"fips\": 22, \"deathIncrease\": 34.0, \"hospitalizedIncrease\": 143.0, \"negativeIncrease\": 5622.0, \"positiveIncrease\": 1187.0, \"totalTestResultsIncrease\": 6809.0, \"ratio\": 0.14033554701153442, \"positive_diff\": 1187.0, \"negative_diff\": 5622.0, \"death_diff\": 34.0, \"positive_diff_100k\": 25.533503958230888, \"death_diff_100k\": 0.7313724806906909, \"total_10\": 4577.6}, {\"state\": \"LA\", \"date\": \"2020-03-31T00:00:00\", \"positive\": 5237.0, \"negative\": 33730.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1355.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 438.0, \"recovered\": null, \"hash\": \"9afe3b0050bd01d1928766a6d12d65c23f10d0b9\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 239.0, \"hospitalized\": 1355.0, \"total\": 38967, \"totalTestResults\": 38967, \"posNeg\": 38967, \"fips\": 22, \"deathIncrease\": 54.0, \"hospitalizedIncrease\": 170.0, \"negativeIncrease\": 3722.0, \"positiveIncrease\": 1212.0, \"totalTestResultsIncrease\": 4934.0, \"ratio\": 0.13439577078040393, \"positive_diff\": 1212.0, \"negative_diff\": 3722.0, \"death_diff\": 54.0, \"positive_diff_100k\": 26.071277841091693, \"death_diff_100k\": 1.1615915869793327, \"total_10\": 3896.7}, {\"state\": \"LA\", \"date\": \"2020-03-30T00:00:00\", \"positive\": 4025.0, \"negative\": 30008.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1185.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 385.0, \"recovered\": null, \"hash\": \"83cdef3008fd6d32b51fc602cee4e1df98d1e7e0\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 185.0, \"hospitalized\": 1185.0, \"total\": 34033, \"totalTestResults\": 34033, \"posNeg\": 34033, \"fips\": 22, \"deathIncrease\": 34.0, \"hospitalizedIncrease\": 58.0, \"negativeIncrease\": 5677.0, \"positiveIncrease\": 485.0, \"totalTestResultsIncrease\": 6162.0, \"ratio\": 0.11826756383510123, \"positive_diff\": 485.0, \"negative_diff\": 5677.0, \"death_diff\": 34.0, \"positive_diff_100k\": 10.432813327499563, \"death_diff_100k\": 0.7313724806906909, \"total_10\": 3403.3}, {\"state\": \"LA\", \"date\": \"2020-03-29T00:00:00\", \"positive\": 3540.0, \"negative\": 24331.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 1127.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 380.0, \"recovered\": null, \"hash\": \"c7306243e89fb0a9690d4531ca9ba00b354540bd\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 151.0, \"hospitalized\": 1127.0, \"total\": 27871, \"totalTestResults\": 27871, \"posNeg\": 27871, \"fips\": 22, \"deathIncrease\": 14.0, \"hospitalizedIncrease\": 200.0, \"negativeIncrease\": 2485.0, \"positiveIncrease\": 225.0, \"totalTestResultsIncrease\": 2710.0, \"ratio\": 0.12701374188224318, \"positive_diff\": 225.0, \"negative_diff\": 2485.0, \"death_diff\": 14.0, \"positive_diff_100k\": 4.83996494574722, \"death_diff_100k\": 0.3011533744020492, \"total_10\": 2787.1}, {\"state\": \"LA\", \"date\": \"2020-03-28T00:00:00\", \"positive\": 3315.0, \"negative\": 21846.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 927.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 336.0, \"recovered\": null, \"hash\": \"4a0d79bda0eb000ea91e7c858e929eb0342be5af\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 137.0, \"hospitalized\": 927.0, \"total\": 25161, \"totalTestResults\": 25161, \"posNeg\": 25161, \"fips\": 22, \"deathIncrease\": 18.0, \"hospitalizedIncrease\": 154.0, \"negativeIncrease\": 3233.0, \"positiveIncrease\": 569.0, \"totalTestResultsIncrease\": 3802.0, \"ratio\": 0.13175152020984857, \"positive_diff\": 569.0, \"negative_diff\": 3233.0, \"death_diff\": 18.0, \"positive_diff_100k\": 12.239733573911858, \"death_diff_100k\": 0.38719719565977756, \"total_10\": 2516.1}, {\"state\": \"LA\", \"date\": \"2020-03-27T00:00:00\", \"positive\": 2746.0, \"negative\": 18613.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 773.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 270.0, \"recovered\": null, \"hash\": \"8403ec4e8479f56c60ee105634c0b15796c301c3\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 119.0, \"hospitalized\": 773.0, \"total\": 21359, \"totalTestResults\": 21359, \"posNeg\": 21359, \"fips\": 22, \"deathIncrease\": 36.0, \"hospitalizedIncrease\": 97.0, \"negativeIncrease\": 2889.0, \"positiveIncrease\": 441.0, \"totalTestResultsIncrease\": 3330.0, \"ratio\": 0.12856407135165504, \"positive_diff\": 441.0, \"negative_diff\": 2889.0, \"death_diff\": 36.0, \"positive_diff_100k\": 9.48633129366455, \"death_diff_100k\": 0.7743943913195551, \"total_10\": 2135.9}, {\"state\": \"LA\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 2305.0, \"negative\": 15724.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 676.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 239.0, \"recovered\": null, \"hash\": \"a3dd3f994877e467e4b0eede332659cfeca99714\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 83.0, \"hospitalized\": 676.0, \"total\": 18029, \"totalTestResults\": 18029, \"posNeg\": 18029, \"fips\": 22, \"deathIncrease\": 18.0, \"hospitalizedIncrease\": 185.0, \"negativeIncrease\": 6068.0, \"positiveIncrease\": 510.0, \"totalTestResultsIncrease\": 6578.0, \"ratio\": 0.12784957568362082, \"positive_diff\": 510.0, \"negative_diff\": 6068.0, \"death_diff\": 18.0, \"positive_diff_100k\": 10.970587210360364, \"death_diff_100k\": 0.38719719565977756, \"total_10\": 1802.9}, {\"state\": \"LA\", \"date\": \"2020-03-25T00:00:00\", \"positive\": 1795.0, \"negative\": 9656.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 491.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": 163.0, \"recovered\": null, \"hash\": \"b9c6d4f81c9f0b6777df7bd4190349d006d90222\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 65.0, \"hospitalized\": 491.0, \"total\": 11451, \"totalTestResults\": 11451, \"posNeg\": 11451, \"fips\": 22, \"deathIncrease\": 19.0, \"hospitalizedIncrease\": 220.0, \"negativeIncrease\": 2441.0, \"positiveIncrease\": 407.0, \"totalTestResultsIncrease\": 2848.0, \"ratio\": 0.15675486857043053, \"positive_diff\": 407.0, \"negative_diff\": 2441.0, \"death_diff\": 19.0, \"positive_diff_100k\": 8.75495881297386, \"death_diff_100k\": 0.40870815097420965, \"total_10\": 1145.1}, {\"state\": \"LA\", \"date\": \"2020-03-24T00:00:00\", \"positive\": 1388.0, \"negative\": 7215.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 271.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c443054e2ff12e070077b14d3071b89ea08d7346\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 46.0, \"hospitalized\": 271.0, \"total\": 8603, \"totalTestResults\": 8603, \"posNeg\": 8603, \"fips\": 22, \"deathIncrease\": 12.0, \"hospitalizedIncrease\": 271.0, \"negativeIncrease\": 2439.0, \"positiveIncrease\": 216.0, \"totalTestResultsIncrease\": 2655.0, \"ratio\": 0.161339067767058, \"positive_diff\": 216.0, \"negative_diff\": 2439.0, \"death_diff\": 12.0, \"positive_diff_100k\": 4.646366347917331, \"death_diff_100k\": 0.2581314637731851, \"total_10\": 860.3}, {\"state\": \"LA\", \"date\": \"2020-03-23T00:00:00\", \"positive\": 1172.0, \"negative\": 4776.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"fd499be556bb029c4bc349ac19373d9ba7b95fcd\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 34.0, \"hospitalized\": null, \"total\": 5948, \"totalTestResults\": 5948, \"posNeg\": 5948, \"fips\": 22, \"deathIncrease\": 14.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2115.0, \"positiveIncrease\": 335.0, \"totalTestResultsIncrease\": 2450.0, \"ratio\": 0.19704102219233355, \"positive_diff\": 335.0, \"negative_diff\": 2115.0, \"death_diff\": 14.0, \"positive_diff_100k\": 7.20617003033475, \"death_diff_100k\": 0.3011533744020492, \"total_10\": 594.8}, {\"state\": \"LA\", \"date\": \"2020-03-22T00:00:00\", \"positive\": 837.0, \"negative\": 2661.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c89220ae4e2b0931fb785ec35f44887bf5a5355b\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 20.0, \"hospitalized\": null, \"total\": 3498, \"totalTestResults\": 3498, \"posNeg\": 3498, \"fips\": 22, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 481.0, \"positiveIncrease\": 252.0, \"totalTestResultsIncrease\": 733.0, \"ratio\": 0.23927958833619212, \"positive_diff\": 252.0, \"negative_diff\": 481.0, \"death_diff\": 4.0, \"positive_diff_100k\": 5.420760739236886, \"death_diff_100k\": 0.08604382125772835, \"total_10\": 349.8}, {\"state\": \"LA\", \"date\": \"2020-03-21T00:00:00\", \"positive\": 585.0, \"negative\": 2180.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f7c6c177e7b1f643227b1bc755f63bbb75468835\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 16.0, \"hospitalized\": null, \"total\": 2765, \"totalTestResults\": 2765, \"posNeg\": 2765, \"fips\": 22, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1612.0, \"positiveIncrease\": 106.0, \"totalTestResultsIncrease\": 1718.0, \"ratio\": 0.2115732368896926, \"positive_diff\": 106.0, \"negative_diff\": 1612.0, \"death_diff\": 4.0, \"positive_diff_100k\": 2.280161263329801, \"death_diff_100k\": 0.08604382125772835, \"total_10\": 276.5}, {\"state\": \"LA\", \"date\": \"2020-03-20T00:00:00\", \"positive\": 479.0, \"negative\": 568.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e67536ea67b77d8ca65be412882b0f4d055238f5\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 12.0, \"hospitalized\": null, \"total\": 1047, \"totalTestResults\": 1047, \"posNeg\": 1047, \"fips\": 22, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 110.0, \"positiveIncrease\": 132.0, \"totalTestResultsIncrease\": 242.0, \"ratio\": 0.4574976122254059, \"positive_diff\": 132.0, \"negative_diff\": 110.0, \"death_diff\": 4.0, \"positive_diff_100k\": 2.8394461015050356, \"death_diff_100k\": 0.08604382125772835, \"total_10\": 104.7}, {\"state\": \"LA\", \"date\": \"2020-03-19T00:00:00\", \"positive\": 347.0, \"negative\": 458.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5027dafbbd45c690b0ccd4fab11851328b078d81\", \"dateChecked\": \"2020-03-19T20:00:00Z\", \"death\": 8.0, \"hospitalized\": null, \"total\": 805, \"totalTestResults\": 805, \"posNeg\": 805, \"fips\": 22, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 123.0, \"positiveIncrease\": 107.0, \"totalTestResultsIncrease\": 230.0, \"ratio\": 0.43105590062111804, \"positive_diff\": 107.0, \"negative_diff\": 123.0, \"death_diff\": 2.0, \"positive_diff_100k\": 2.3016722186442333, \"death_diff_100k\": 0.04302191062886417, \"total_10\": 80.5}, {\"state\": \"LA\", \"date\": \"2020-03-18T00:00:00\", \"positive\": 240.0, \"negative\": 335.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"dad1c0a1eff89b6afadb6c2403054966c897f0e2\", \"dateChecked\": \"2020-03-18T20:00:00Z\", \"death\": 6.0, \"hospitalized\": null, \"total\": 575, \"totalTestResults\": 575, \"posNeg\": 575, \"fips\": 22, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 49.0, \"positiveIncrease\": 69.0, \"totalTestResultsIncrease\": 118.0, \"ratio\": 0.41739130434782606, \"positive_diff\": 69.0, \"negative_diff\": 49.0, \"death_diff\": 2.0, \"positive_diff_100k\": 1.484255916695814, \"death_diff_100k\": 0.04302191062886417, \"total_10\": 57.5}, {\"state\": \"LA\", \"date\": \"2020-03-17T00:00:00\", \"positive\": 171.0, \"negative\": 286.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"50610ebbdeaa7907b12726f42106e71733e456f5\", \"dateChecked\": \"2020-03-17T20:00:00Z\", \"death\": 4.0, \"hospitalized\": null, \"total\": 457, \"totalTestResults\": 457, \"posNeg\": 457, \"fips\": 22, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 98.0, \"positiveIncrease\": 57.0, \"totalTestResultsIncrease\": 155.0, \"ratio\": 0.3741794310722101, \"positive_diff\": 57.0, \"negative_diff\": 98.0, \"death_diff\": 2.0, \"positive_diff_100k\": 1.226124452922629, \"death_diff_100k\": 0.04302191062886417, \"total_10\": 45.7}, {\"state\": \"LA\", \"date\": \"2020-03-16T00:00:00\", \"positive\": 114.0, \"negative\": 188.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"3f35dae7522ba88d8e79d20093816c3614734dcb\", \"dateChecked\": \"2020-03-16T20:00:00Z\", \"death\": 2.0, \"hospitalized\": null, \"total\": 302, \"totalTestResults\": 302, \"posNeg\": 302, \"fips\": 22, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 32.0, \"positiveIncrease\": 23.0, \"totalTestResultsIncrease\": 55.0, \"ratio\": 0.37748344370860926, \"positive_diff\": 23.0, \"negative_diff\": 32.0, \"death_diff\": 0.0, \"positive_diff_100k\": 0.49475197223193806, \"death_diff_100k\": 0.0, \"total_10\": 30.2}, {\"state\": \"LA\", \"date\": \"2020-03-15T00:00:00\", \"positive\": 91.0, \"negative\": 156.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e12d7af383c2482c7845ba7e6403df009076bfde\", \"dateChecked\": \"2020-03-15T20:00:00Z\", \"death\": 2.0, \"hospitalized\": null, \"total\": 247, \"totalTestResults\": 247, \"posNeg\": 247, \"fips\": 22, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 47.0, \"positiveIncrease\": 22.0, \"totalTestResultsIncrease\": 69.0, \"ratio\": 0.3684210526315789, \"positive_diff\": 22.0, \"negative_diff\": 47.0, \"death_diff\": null, \"positive_diff_100k\": 0.4732410169175059, \"death_diff_100k\": null, \"total_10\": 24.7}, {\"state\": \"LA\", \"date\": \"2020-03-14T00:00:00\", \"positive\": 69.0, \"negative\": 109.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c80c2be31c70d2b05d47fb0b55f9297f827690f7\", \"dateChecked\": \"2020-03-14T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 178, \"totalTestResults\": 178, \"posNeg\": 178, \"fips\": 22, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 72.0, \"positiveIncrease\": 33.0, \"totalTestResultsIncrease\": 105.0, \"ratio\": 0.38764044943820225, \"positive_diff\": 33.0, \"negative_diff\": 72.0, \"death_diff\": null, \"positive_diff_100k\": 0.7098615253762589, \"death_diff_100k\": null, \"total_10\": 17.8}, {\"state\": \"LA\", \"date\": \"2020-03-13T00:00:00\", \"positive\": 36.0, \"negative\": 37.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"78393fa814aa0caf1ae4f6056e80e21adf672bf2\", \"dateChecked\": \"2020-03-13T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 73, \"totalTestResults\": 73, \"posNeg\": 73, \"fips\": 22, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 22.0, \"totalTestResultsIncrease\": 22.0, \"ratio\": 0.4931506849315068, \"positive_diff\": 22.0, \"negative_diff\": 0.0, \"death_diff\": null, \"positive_diff_100k\": 0.4732410169175059, \"death_diff_100k\": null, \"total_10\": 7.3}, {\"state\": \"LA\", \"date\": \"2020-03-12T00:00:00\", \"positive\": 14.0, \"negative\": 37.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"90d5fc83d9f4c831c653f38b96e49251057d9cb7\", \"dateChecked\": \"2020-03-12T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 51, \"totalTestResults\": 51, \"posNeg\": 51, \"fips\": 22, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 8.0, \"totalTestResultsIncrease\": 8.0, \"ratio\": 0.27450980392156865, \"positive_diff\": 8.0, \"negative_diff\": 0.0, \"death_diff\": null, \"positive_diff_100k\": 0.1720876425154567, \"death_diff_100k\": null, \"total_10\": 5.1}, {\"state\": \"LA\", \"date\": \"2020-03-11T00:00:00\", \"positive\": 6.0, \"negative\": 37.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"4923914a2b53558e2c4f3c3e417339a9c725cee5\", \"dateChecked\": \"2020-03-11T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 43, \"totalTestResults\": 43, \"posNeg\": 43, \"fips\": 22, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 26.0, \"positiveIncrease\": 5.0, \"totalTestResultsIncrease\": 31.0, \"ratio\": 0.13953488372093023, \"positive_diff\": 5.0, \"negative_diff\": 26.0, \"death_diff\": null, \"positive_diff_100k\": 0.10755477657216043, \"death_diff_100k\": null, \"total_10\": 4.3}, {\"state\": \"LA\", \"date\": \"2020-03-10T00:00:00\", \"positive\": 1.0, \"negative\": 11.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"0cbd4af0d2d6d254ceee5f1d76f6f82e4a2c11d4\", \"dateChecked\": \"2020-03-10T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 12, \"totalTestResults\": 12, \"posNeg\": 12, \"fips\": 22, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 6.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 6.0, \"ratio\": 0.08333333333333333, \"positive_diff\": 0.0, \"negative_diff\": 6.0, \"death_diff\": null, \"positive_diff_100k\": 0.0, \"death_diff_100k\": null, \"total_10\": 1.2}, {\"state\": \"LA\", \"date\": \"2020-03-09T00:00:00\", \"positive\": 1.0, \"negative\": 5.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"34ed705a6d35331063fd0d6d7867baca1fefe36c\", \"dateChecked\": \"2020-03-09T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 6, \"totalTestResults\": 6, \"posNeg\": 6, \"fips\": 22, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 1.0, \"totalTestResultsIncrease\": 1.0, \"ratio\": 0.16666666666666666, \"positive_diff\": 1.0, \"negative_diff\": 0.0, \"death_diff\": null, \"positive_diff_100k\": 0.021510955314432086, \"death_diff_100k\": null, \"total_10\": 0.6}, {\"state\": \"LA\", \"date\": \"2020-03-08T00:00:00\", \"positive\": 0.0, \"negative\": 5.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f0cd89bf8cfc3f22372a64bbf45ae165e5845bb1\", \"dateChecked\": \"2020-03-08T20:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 5, \"totalTestResults\": 5, \"posNeg\": 5, \"fips\": 22, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 5.0, \"ratio\": 0.0, \"positive_diff\": 0.0, \"negative_diff\": null, \"death_diff\": null, \"positive_diff_100k\": 0.0, \"death_diff_100k\": null, \"total_10\": 0.5}, {\"state\": \"LA\", \"date\": \"2020-03-07T00:00:00\", \"positive\": 0.0, \"negative\": null, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b7526761c843e52a6bd2a5e89719a7ed71cc0b5e\", \"dateChecked\": \"2020-03-07T21:00:00Z\", \"death\": null, \"hospitalized\": null, \"total\": 0, \"totalTestResults\": 0, \"posNeg\": 0, \"fips\": 22, \"deathIncrease\": null, \"hospitalizedIncrease\": null, \"negativeIncrease\": null, \"positiveIncrease\": null, \"totalTestResultsIncrease\": null, \"ratio\": null, \"positive_diff\": null, \"negative_diff\": null, \"death_diff\": null, \"positive_diff_100k\": null, \"death_diff_100k\": null, \"total_10\": 0.0}], \"data-573aac7425449c27f6bd14cdf56e3d52\": [{\"state\": \"WA\", \"date\": \"2020-04-03T00:00:00\", \"positive\": 6585.0, \"negative\": 72833.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 254.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"959e56f464378567061d69a9f5fe856b61563bc4\", \"dateChecked\": \"2020-04-03T20:00:00Z\", \"death\": 262.0, \"hospitalized\": 254.0, \"total\": 79418, \"totalTestResults\": 79418, \"posNeg\": 79418, \"fips\": 53, \"deathIncrease\": 15.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 4019.0, \"positiveIncrease\": 601.0, \"totalTestResultsIncrease\": 4620.0, \"ratio\": 0.08291571180336951, \"positive_diff\": 601.0, \"negative_diff\": 4019.0, \"death_diff\": 15.0, \"positive_diff_100k\": 7.892428692038089, \"death_diff_100k\": 0.19698241327882088, \"total_10\": 7941.8}, {\"state\": \"WA\", \"date\": \"2020-04-02T00:00:00\", \"positive\": 5984.0, \"negative\": 68814.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 254.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"85955197769abfbadd9dcbe4a2678ab67b3e6822\", \"dateChecked\": \"2020-04-02T20:00:00Z\", \"death\": 247.0, \"hospitalized\": 254.0, \"total\": 74798, \"totalTestResults\": 74798, \"posNeg\": 74798, \"fips\": 53, \"deathIncrease\": 23.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 8248.0, \"positiveIncrease\": 350.0, \"totalTestResultsIncrease\": 8598.0, \"ratio\": 0.0800021390946282, \"positive_diff\": 350.0, \"negative_diff\": 8248.0, \"death_diff\": 23.0, \"positive_diff_100k\": 4.596256309839154, \"death_diff_100k\": 0.30203970036085864, \"total_10\": 7479.8}, {\"state\": \"WA\", \"date\": \"2020-04-01T00:00:00\", \"positive\": 5634.0, \"negative\": 60566.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 254.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d6cb23f0dc40421b2d167caba2408a74cfcaf9a1\", \"dateChecked\": \"2020-04-01T20:00:00Z\", \"death\": 224.0, \"hospitalized\": 254.0, \"total\": 66200, \"totalTestResults\": 66200, \"posNeg\": 66200, \"fips\": 53, \"deathIncrease\": 29.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 738.0, \"totalTestResultsIncrease\": 738.0, \"ratio\": 0.08510574018126889, \"positive_diff\": 738.0, \"negative_diff\": 0.0, \"death_diff\": 29.0, \"positive_diff_100k\": 9.691534733317987, \"death_diff_100k\": 0.380832665672387, \"total_10\": 6620.0}, {\"state\": \"WA\", \"date\": \"2020-03-31T00:00:00\", \"positive\": 4896.0, \"negative\": 60566.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 254.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"215fd829abdd735dea112aded7893ab62d5310ac\", \"dateChecked\": \"2020-03-31T20:00:00Z\", \"death\": 195.0, \"hospitalized\": 254.0, \"total\": 65462, \"totalTestResults\": 65462, \"posNeg\": 65462, \"fips\": 53, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 0.0, \"ratio\": 0.07479148208120742, \"positive_diff\": 0.0, \"negative_diff\": 0.0, \"death_diff\": 0.0, \"positive_diff_100k\": 0.0, \"death_diff_100k\": 0.0, \"total_10\": 6546.2}, {\"state\": \"WA\", \"date\": \"2020-03-30T00:00:00\", \"positive\": 4896.0, \"negative\": 60566.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 254.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c734382e8a516a0f55f370aacda4ac92b877649e\", \"dateChecked\": \"2020-03-30T20:00:00Z\", \"death\": 195.0, \"hospitalized\": 254.0, \"total\": 65462, \"totalTestResults\": 65462, \"posNeg\": 65462, \"fips\": 53, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5670.0, \"positiveIncrease\": 586.0, \"totalTestResultsIncrease\": 6256.0, \"ratio\": 0.07479148208120742, \"positive_diff\": 586.0, \"negative_diff\": 5670.0, \"death_diff\": 6.0, \"positive_diff_100k\": 7.695446278759268, \"death_diff_100k\": 0.07879296531152834, \"total_10\": 6546.2}, {\"state\": \"WA\", \"date\": \"2020-03-29T00:00:00\", \"positive\": 4310.0, \"negative\": 54896.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 254.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"79de2d56dfc5fe5931f0670e225388f974f163a9\", \"dateChecked\": \"2020-03-29T20:00:00Z\", \"death\": 189.0, \"hospitalized\": 254.0, \"total\": 59206, \"totalTestResults\": 59206, \"posNeg\": 59206, \"fips\": 53, \"deathIncrease\": 14.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 5881.0, \"positiveIncrease\": 587.0, \"totalTestResultsIncrease\": 6468.0, \"ratio\": 0.0727966760125663, \"positive_diff\": 587.0, \"negative_diff\": 5881.0, \"death_diff\": 14.0, \"positive_diff_100k\": 7.708578439644523, \"death_diff_100k\": 0.18385025239356614, \"total_10\": 5920.6}, {\"state\": \"WA\", \"date\": \"2020-03-28T00:00:00\", \"positive\": 3723.0, \"negative\": 49015.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": 254.0, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"aa547bbffd960fa3d6684722df352a64ab786e19\", \"dateChecked\": \"2020-03-28T20:00:00Z\", \"death\": 175.0, \"hospitalized\": 254.0, \"total\": 52738, \"totalTestResults\": 52738, \"posNeg\": 52738, \"fips\": 53, \"deathIncrease\": 28.0, \"hospitalizedIncrease\": 254.0, \"negativeIncrease\": 5842.0, \"positiveIncrease\": 516.0, \"totalTestResultsIncrease\": 6358.0, \"ratio\": 0.070594258409496, \"positive_diff\": 516.0, \"negative_diff\": 5842.0, \"death_diff\": 28.0, \"positive_diff_100k\": 6.776195016791438, \"death_diff_100k\": 0.3677005047871323, \"total_10\": 5273.8}, {\"state\": \"WA\", \"date\": \"2020-03-27T00:00:00\", \"positive\": 3207.0, \"negative\": 43173.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c6ef40387ed54825d111164344c738e39fc62ef5\", \"dateChecked\": \"2020-03-27T20:00:00Z\", \"death\": 147.0, \"hospitalized\": null, \"total\": 46380, \"totalTestResults\": 46380, \"posNeg\": 46380, \"fips\": 53, \"deathIncrease\": 15.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 11461.0, \"positiveIncrease\": 627.0, \"totalTestResultsIncrease\": 12088.0, \"ratio\": 0.06914618369987063, \"positive_diff\": 627.0, \"negative_diff\": 11461.0, \"death_diff\": 15.0, \"positive_diff_100k\": 8.233864875054712, \"death_diff_100k\": 0.19698241327882088, \"total_10\": 4638.0}, {\"state\": \"WA\", \"date\": \"2020-03-26T00:00:00\", \"positive\": 2580.0, \"negative\": 31712.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e178057fc2a88562fb8b27dcb5cb7ce3bb9da334\", \"dateChecked\": \"2020-03-26T20:00:00Z\", \"death\": 132.0, \"hospitalized\": null, \"total\": 34292, \"totalTestResults\": 34292, \"posNeg\": 34292, \"fips\": 53, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 111.0, \"totalTestResultsIncrease\": 111.0, \"ratio\": 0.07523620669543916, \"positive_diff\": 111.0, \"negative_diff\": 0.0, \"death_diff\": 9.0, \"positive_diff_100k\": 1.4576698582632743, \"death_diff_100k\": 0.11818944796729251, \"total_10\": 3429.2}, {\"state\": \"WA\", \"date\": \"2020-03-25T00:00:00\", \"positive\": 2469.0, \"negative\": 31712.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"44b3cb99139fc5b8f131fa7216e447a156a958b4\", \"dateChecked\": \"2020-03-25T20:00:00Z\", \"death\": 123.0, \"hospitalized\": null, \"total\": 34181, \"totalTestResults\": 34181, \"posNeg\": 34181, \"fips\": 53, \"deathIncrease\": 13.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 248.0, \"totalTestResultsIncrease\": 248.0, \"ratio\": 0.07223311196278634, \"positive_diff\": 248.0, \"negative_diff\": 0.0, \"death_diff\": 13.0, \"positive_diff_100k\": 3.2567758995431713, \"death_diff_100k\": 0.1707180915083114, \"total_10\": 3418.1}, {\"state\": \"WA\", \"date\": \"2020-03-24T00:00:00\", \"positive\": 2221.0, \"negative\": 31712.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"9da4d0ab70b396d48bb42e53afa63e5d21c41aef\", \"dateChecked\": \"2020-03-24T20:00:00Z\", \"death\": 110.0, \"hospitalized\": null, \"total\": 33933, \"totalTestResults\": 33933, \"posNeg\": 33933, \"fips\": 53, \"deathIncrease\": 15.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2833.0, \"positiveIncrease\": 225.0, \"totalTestResultsIncrease\": 3058.0, \"ratio\": 0.06545250935667345, \"positive_diff\": 225.0, \"negative_diff\": 2833.0, \"death_diff\": 15.0, \"positive_diff_100k\": 2.954736199182313, \"death_diff_100k\": 0.19698241327882088, \"total_10\": 3393.3}, {\"state\": \"WA\", \"date\": \"2020-03-23T00:00:00\", \"positive\": 1996.0, \"negative\": 28879.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a3330315ca0c6d8393cbffc5d4da83ba0e7a116b\", \"dateChecked\": \"2020-03-23T20:00:00Z\", \"death\": 95.0, \"hospitalized\": null, \"total\": 30875, \"totalTestResults\": 30875, \"posNeg\": 30875, \"fips\": 53, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3551.0, \"positiveIncrease\": 203.0, \"totalTestResultsIncrease\": 3754.0, \"ratio\": 0.06464777327935223, \"positive_diff\": 203.0, \"negative_diff\": 3551.0, \"death_diff\": 1.0, \"positive_diff_100k\": 2.665828659706709, \"death_diff_100k\": 0.013132160885254724, \"total_10\": 3087.5}, {\"state\": \"WA\", \"date\": \"2020-03-22T00:00:00\", \"positive\": 1793.0, \"negative\": 25328.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"072f5a891339bd1334dfd2ef0458210d55271483\", \"dateChecked\": \"2020-03-22T20:00:00Z\", \"death\": 94.0, \"hospitalized\": null, \"total\": 27121, \"totalTestResults\": 27121, \"posNeg\": 27121, \"fips\": 53, \"deathIncrease\": 11.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3609.0, \"positiveIncrease\": 269.0, \"totalTestResultsIncrease\": 3878.0, \"ratio\": 0.06611113159544264, \"positive_diff\": 269.0, \"negative_diff\": 3609.0, \"death_diff\": 11.0, \"positive_diff_100k\": 3.532551278133521, \"death_diff_100k\": 0.14445376973780194, \"total_10\": 2712.1}, {\"state\": \"WA\", \"date\": \"2020-03-21T00:00:00\", \"positive\": 1524.0, \"negative\": 21719.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e89ca534af406d512dad526cfc1b5a1e64f75f0c\", \"dateChecked\": \"2020-03-21T20:00:00Z\", \"death\": 83.0, \"hospitalized\": null, \"total\": 23243, \"totalTestResults\": 23243, \"posNeg\": 23243, \"fips\": 53, \"deathIncrease\": 9.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2383.0, \"positiveIncrease\": 148.0, \"totalTestResultsIncrease\": 2531.0, \"ratio\": 0.06556812803854924, \"positive_diff\": 148.0, \"negative_diff\": 2383.0, \"death_diff\": 9.0, \"positive_diff_100k\": 1.9435598110176993, \"death_diff_100k\": 0.11818944796729251, \"total_10\": 2324.3}, {\"state\": \"WA\", \"date\": \"2020-03-20T00:00:00\", \"positive\": 1376.0, \"negative\": 19336.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c45d0ccbda5510b5e0067fa6d12226f9debfec0e\", \"dateChecked\": \"2020-03-20T20:00:00Z\", \"death\": 74.0, \"hospitalized\": null, \"total\": 20712, \"totalTestResults\": 20712, \"posNeg\": 20712, \"fips\": 53, \"deathIncrease\": 8.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 3418.0, \"positiveIncrease\": 189.0, \"totalTestResultsIncrease\": 3607.0, \"ratio\": 0.0664349169563538, \"positive_diff\": 189.0, \"negative_diff\": 3418.0, \"death_diff\": 8.0, \"positive_diff_100k\": 2.4819784073131426, \"death_diff_100k\": 0.10505728708203779, \"total_10\": 2071.2}, {\"state\": \"WA\", \"date\": \"2020-03-19T00:00:00\", \"positive\": 1187.0, \"negative\": 15918.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"535a5769677827d78d2939c5f8f9e44eef508975\", \"dateChecked\": \"2020-03-19T20:00:00Z\", \"death\": 66.0, \"hospitalized\": null, \"total\": 17105, \"totalTestResults\": 17105, \"posNeg\": 17105, \"fips\": 53, \"deathIncrease\": 14.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2801.0, \"positiveIncrease\": 175.0, \"totalTestResultsIncrease\": 2976.0, \"ratio\": 0.06939491376790412, \"positive_diff\": 175.0, \"negative_diff\": 2801.0, \"death_diff\": 14.0, \"positive_diff_100k\": 2.298128154919577, \"death_diff_100k\": 0.18385025239356614, \"total_10\": 1710.5}, {\"state\": \"WA\", \"date\": \"2020-03-18T00:00:00\", \"positive\": 1012.0, \"negative\": 13117.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"eb230fa9aea0b5fd1026102c5bd5775579092452\", \"dateChecked\": \"2020-03-18T20:00:00Z\", \"death\": 52.0, \"hospitalized\": null, \"total\": 14129, \"totalTestResults\": 14129, \"posNeg\": 14129, \"fips\": 53, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1535.0, \"positiveIncrease\": 108.0, \"totalTestResultsIncrease\": 1643.0, \"ratio\": 0.07162573430532947, \"positive_diff\": 108.0, \"negative_diff\": 1535.0, \"death_diff\": 4.0, \"positive_diff_100k\": 1.41827337560751, \"death_diff_100k\": 0.052528643541018896, \"total_10\": 1412.9}, {\"state\": \"WA\", \"date\": \"2020-03-17T00:00:00\", \"positive\": 904.0, \"negative\": 11582.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"a36581696a7488a065d62717a6bcb90bcb0e0893\", \"dateChecked\": \"2020-03-17T20:00:00Z\", \"death\": 48.0, \"hospitalized\": null, \"total\": 12486, \"totalTestResults\": 12486, \"posNeg\": 12486, \"fips\": 53, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2131.0, \"positiveIncrease\": 135.0, \"totalTestResultsIncrease\": 2266.0, \"ratio\": 0.07240108921992632, \"positive_diff\": 135.0, \"negative_diff\": 2131.0, \"death_diff\": 6.0, \"positive_diff_100k\": 1.7728417195093877, \"death_diff_100k\": 0.07879296531152834, \"total_10\": 1248.6}, {\"state\": \"WA\", \"date\": \"2020-03-16T00:00:00\", \"positive\": 769.0, \"negative\": 9451.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"5de3ba2bf662278c0b9e9a023e91181398269132\", \"dateChecked\": \"2020-03-16T20:00:00Z\", \"death\": 42.0, \"hospitalized\": null, \"total\": 10220, \"totalTestResults\": 10220, \"posNeg\": 10220, \"fips\": 53, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 2329.0, \"positiveIncrease\": 127.0, \"totalTestResultsIncrease\": 2456.0, \"ratio\": 0.07524461839530333, \"positive_diff\": 127.0, \"negative_diff\": 2329.0, \"death_diff\": 2.0, \"positive_diff_100k\": 1.6677844324273499, \"death_diff_100k\": 0.026264321770509448, \"total_10\": 1022.0}, {\"state\": \"WA\", \"date\": \"2020-03-15T00:00:00\", \"positive\": 642.0, \"negative\": 7122.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"1c7e7a0baa721892bbf89e899b597d921e807fce\", \"dateChecked\": \"2020-03-15T20:00:00Z\", \"death\": 40.0, \"hospitalized\": null, \"total\": 7764, \"totalTestResults\": 7764, \"posNeg\": 7764, \"fips\": 53, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1121.0, \"positiveIncrease\": 74.0, \"totalTestResultsIncrease\": 1195.0, \"ratio\": 0.08268933539412673, \"positive_diff\": 74.0, \"negative_diff\": 1121.0, \"death_diff\": 3.0, \"positive_diff_100k\": 0.9717799055088496, \"death_diff_100k\": 0.03939648265576417, \"total_10\": 776.4}, {\"state\": \"WA\", \"date\": \"2020-03-14T00:00:00\", \"positive\": 568.0, \"negative\": 6001.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d0c542a7903d9d53eee47064cd36f4618727252d\", \"dateChecked\": \"2020-03-14T20:00:00Z\", \"death\": 37.0, \"hospitalized\": null, \"total\": 6569, \"totalTestResults\": 6569, \"posNeg\": 6569, \"fips\": 53, \"deathIncrease\": 6.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1651.0, \"positiveIncrease\": 111.0, \"totalTestResultsIncrease\": 1762.0, \"ratio\": 0.08646673770741362, \"positive_diff\": 111.0, \"negative_diff\": 1651.0, \"death_diff\": 6.0, \"positive_diff_100k\": 1.4576698582632743, \"death_diff_100k\": 0.07879296531152834, \"total_10\": 656.9}, {\"state\": \"WA\", \"date\": \"2020-03-13T00:00:00\", \"positive\": 457.0, \"negative\": 4350.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"c99bf19d3a7a6a5973c1b9b48d8cf526bc91647e\", \"dateChecked\": \"2020-03-13T20:00:00Z\", \"death\": 31.0, \"hospitalized\": null, \"total\": 4807, \"totalTestResults\": 4807, \"posNeg\": 4807, \"fips\": 53, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1313.0, \"positiveIncrease\": 120.0, \"totalTestResultsIncrease\": 1433.0, \"ratio\": 0.0950696900353651, \"positive_diff\": 120.0, \"negative_diff\": 1313.0, \"death_diff\": 2.0, \"positive_diff_100k\": 1.575859306230567, \"death_diff_100k\": 0.026264321770509448, \"total_10\": 480.7}, {\"state\": \"WA\", \"date\": \"2020-03-12T00:00:00\", \"positive\": 337.0, \"negative\": 3037.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"b346d7b6e661fa57b707151beb7062178a311a51\", \"dateChecked\": \"2020-03-12T20:00:00Z\", \"death\": 29.0, \"hospitalized\": null, \"total\": 3374, \"totalTestResults\": 3374, \"posNeg\": 3374, \"fips\": 53, \"deathIncrease\": 5.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 862.0, \"positiveIncrease\": 70.0, \"totalTestResultsIncrease\": 932.0, \"ratio\": 0.0998814463544754, \"positive_diff\": 70.0, \"negative_diff\": 862.0, \"death_diff\": 5.0, \"positive_diff_100k\": 0.9192512619678306, \"death_diff_100k\": 0.06566080442627362, \"total_10\": 337.4}, {\"state\": \"WA\", \"date\": \"2020-03-11T00:00:00\", \"positive\": 267.0, \"negative\": 2175.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"f3865367145deea2d1be9a82dd6bd3d055ac2c85\", \"dateChecked\": \"2020-03-11T20:00:00Z\", \"death\": 24.0, \"hospitalized\": null, \"total\": 2442, \"totalTestResults\": 2442, \"posNeg\": 2442, \"fips\": 53, \"deathIncrease\": 0.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 1065.0, \"positiveIncrease\": 105.0, \"totalTestResultsIncrease\": 1170.0, \"ratio\": 0.10933660933660934, \"positive_diff\": 105.0, \"negative_diff\": 1065.0, \"death_diff\": 0.0, \"positive_diff_100k\": 1.3788768929517459, \"death_diff_100k\": 0.0, \"total_10\": 244.2}, {\"state\": \"WA\", \"date\": \"2020-03-10T00:00:00\", \"positive\": 162.0, \"negative\": 1110.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"06768336fc25d73cd5c617780d60df98257b9efc\", \"dateChecked\": \"2020-03-10T20:00:00Z\", \"death\": 24.0, \"hospitalized\": null, \"total\": 1272, \"totalTestResults\": 1272, \"posNeg\": 1272, \"fips\": 53, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 26.0, \"totalTestResultsIncrease\": 26.0, \"ratio\": 0.12735849056603774, \"positive_diff\": 26.0, \"negative_diff\": 0.0, \"death_diff\": 2.0, \"positive_diff_100k\": 0.3414361830166228, \"death_diff_100k\": 0.026264321770509448, \"total_10\": 127.2}, {\"state\": \"WA\", \"date\": \"2020-03-09T00:00:00\", \"positive\": 136.0, \"negative\": 1110.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"d72514f02a70119a149f4bc9d6ec6cb789a7e255\", \"dateChecked\": \"2020-03-09T20:00:00Z\", \"death\": 22.0, \"hospitalized\": null, \"total\": 1246, \"totalTestResults\": 1246, \"posNeg\": 1246, \"fips\": 53, \"deathIncrease\": 4.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 470.0, \"positiveIncrease\": 34.0, \"totalTestResultsIncrease\": 504.0, \"ratio\": 0.10914927768860354, \"positive_diff\": 34.0, \"negative_diff\": 470.0, \"death_diff\": 4.0, \"positive_diff_100k\": 0.44649347009866064, \"death_diff_100k\": 0.052528643541018896, \"total_10\": 124.6}, {\"state\": \"WA\", \"date\": \"2020-03-08T00:00:00\", \"positive\": 102.0, \"negative\": 640.0, \"pending\": 60.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"ff203f889be06e02d7abbc241bb3327974f62c59\", \"dateChecked\": \"2020-03-08T20:00:00Z\", \"death\": 18.0, \"hospitalized\": null, \"total\": 802, \"totalTestResults\": 742, \"posNeg\": 742, \"fips\": 53, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 270.0, \"positiveIncrease\": 0.0, \"totalTestResultsIncrease\": 270.0, \"ratio\": 0.12718204488778054, \"positive_diff\": 0.0, \"negative_diff\": 270.0, \"death_diff\": 2.0, \"positive_diff_100k\": 0.0, \"death_diff_100k\": 0.026264321770509448, \"total_10\": 80.2}, {\"state\": \"WA\", \"date\": \"2020-03-07T00:00:00\", \"positive\": 102.0, \"negative\": 370.0, \"pending\": 66.0, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"bba4f8c850e820bd03b106bdf1e40f53bca745cd\", \"dateChecked\": \"2020-03-07T21:00:00Z\", \"death\": 16.0, \"hospitalized\": null, \"total\": 538, \"totalTestResults\": 472, \"posNeg\": 472, \"fips\": 53, \"deathIncrease\": 2.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 23.0, \"totalTestResultsIncrease\": 23.0, \"ratio\": 0.1895910780669145, \"positive_diff\": 23.0, \"negative_diff\": 0.0, \"death_diff\": 2.0, \"positive_diff_100k\": 0.30203970036085864, \"death_diff_100k\": 0.026264321770509448, \"total_10\": 53.8}, {\"state\": \"WA\", \"date\": \"2020-03-06T00:00:00\", \"positive\": 79.0, \"negative\": 370.0, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"acf1e359af09f765bfb51daff2037013e6dcb7ef\", \"dateChecked\": \"2020-03-06T21:00:00Z\", \"death\": 14.0, \"hospitalized\": null, \"total\": 449, \"totalTestResults\": 449, \"posNeg\": 449, \"fips\": 53, \"deathIncrease\": 3.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 370.0, \"positiveIncrease\": 9.0, \"totalTestResultsIncrease\": 379.0, \"ratio\": 0.1759465478841871, \"positive_diff\": 9.0, \"negative_diff\": null, \"death_diff\": 3.0, \"positive_diff_100k\": 0.11818944796729251, \"death_diff_100k\": 0.03939648265576417, \"total_10\": 44.9}, {\"state\": \"WA\", \"date\": \"2020-03-05T00:00:00\", \"positive\": 70.0, \"negative\": null, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"dfe5b036415333cb6e796cd8bde4805a159d6676\", \"dateChecked\": \"2020-03-05T21:00:00Z\", \"death\": 11.0, \"hospitalized\": null, \"total\": 70, \"totalTestResults\": 70, \"posNeg\": 70, \"fips\": 53, \"deathIncrease\": 1.0, \"hospitalizedIncrease\": 0.0, \"negativeIncrease\": 0.0, \"positiveIncrease\": 31.0, \"totalTestResultsIncrease\": 31.0, \"ratio\": 1.0, \"positive_diff\": 31.0, \"negative_diff\": null, \"death_diff\": 1.0, \"positive_diff_100k\": 0.4070969874428964, \"death_diff_100k\": 0.013132160885254724, \"total_10\": 7.0}, {\"state\": \"WA\", \"date\": \"2020-03-04T00:00:00\", \"positive\": 39.0, \"negative\": null, \"pending\": null, \"hospitalizedCurrently\": null, \"hospitalizedCumulative\": null, \"inIcuCurrently\": null, \"inIcuCumulative\": null, \"onVentilatorCurrently\": null, \"onVentilatorCumulative\": null, \"recovered\": null, \"hash\": \"e07bd12171fed21351784c462b0dab23d8cfabbd\", \"dateChecked\": \"2020-03-04T21:00:00Z\", \"death\": 10.0, \"hospitalized\": null, \"total\": 39, \"totalTestResults\": 39, \"posNeg\": 39, \"fips\": 53, \"deathIncrease\": null, \"hospitalizedIncrease\": null, \"negativeIncrease\": null, \"positiveIncrease\": null, \"totalTestResultsIncrease\": null, \"ratio\": 1.0, \"positive_diff\": null, \"negative_diff\": null, \"death_diff\": null, \"positive_diff_100k\": null, \"death_diff_100k\": null, \"total_10\": 3.9}]}}, {\"mode\": \"vega-lite\"});\n",
       "</script>"
      ],
      "text/plain": [
       "alt.HConcatChart(...)"
      ]
     "metadata": {},
     "output_type": "display_data"
      "text/html": [
       "\n",
       "<p style=\"font-size: smaller\">Data Sources: \n",
       "  <a href=\"https://covidtracking.com\">The COVID Tracking Project</a>\n",
       "<br>\n",
       "Analysis and Visualization:\n",
       "  <a href=\"https://renkulab.io/projects/covid-19/covid-19-public-data\">Covid-19 Public Data Collaboration Project</a>\n",
       "</p>"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "# produce the charts for a few states\n",
    "\n",
    "charts=[]\n",
    "for state in most_recent_df.sort_values('total/100k', ascending=False)['state'].to_list()[:3]: \n",
    "    state_df = tdf_diff[tdf_diff['state'] == state].copy()\n",
    "\n",
    "    base = alt.Chart(state_df, title=state).encode(alt.X('date', axis=alt.Axis(title='Date'))).properties(width=250, height=150)\n",
    "    dailies = base.mark_bar(size=6).encode(alt.Y('positive_diff', axis=alt.Axis(title='Daily positive')))\n",
    "\n",
    "    totals = base.mark_line(color='red').encode(alt.Y('total_10', axis=alt.Axis(title='Total/10'))) \n",
    "    positives = totals.mark_line(color='orange').encode(alt.Y('positive', axis=alt.Axis(title='Positive')))\n",
    "    cumulative = totals + positives\n",
    "\n",
    "    ratio = base.mark_line(color='red').encode(alt.Y('ratio', axis=alt.Axis(title='Positive/Total'), scale=alt.Scale(domain=(0,1))))\n",
    "    \n",
    "    charts.append(alt.layer(dailies, cumulative).resolve_scale(y='independent'))\n",
    "\n",
    "display(alt.hconcat(*charts))\n",
    "display(html_credits)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": []
  }
 ],
 "metadata": {
  "hide_input": true,
  "kernelspec": {
   "display_name": "Python 3",
   "name": "python3"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.7.3"