Skip to content

Instantly share code, notes, and snippets.

@djsegal
Last active May 9, 2020 08:06
Show Gist options
  • Save djsegal/576e90b4573169e7cb4afc0430b3c96b to your computer and use it in GitHub Desktop.
Save djsegal/576e90b4573169e7cb4afc0430b3c96b to your computer and use it in GitHub Desktop.
A Live SEIR Model for Covid-19 with Error Bars in Julia
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## A Live [SEIR](https://en.wikipedia.org/wiki/Compartmental_models_in_epidemiology#The_SEIR_model) Model for Covid-19 with Error Bars in Julia\n",
"\n",
"#### Author: Dan Segal (@[djsegal](https://github.com/djsegal/))\n",
"\n",
"as requested by Prof. Alan Edelman, MIT\n",
"\n",
"----\n"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"using Measurements\n",
"\n",
"param_error = 0.05\n",
"\n",
"α = 0.2 ± param_error\n",
"γ = 0.5 ± param_error\n",
"\n",
"# β = f(social distancing, masks, etc.)\n",
"\n",
"E₀ = 1e-4\n",
"u₀ = [ 1 - E₀ ; E₀ ; 0 ; 0 ]\n",
"\n",
"tspan = (0.0, 200.0); # 200 days\n"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
"using DifferentialEquations\n",
"\n",
"function seir!(du,u,p,t)\n",
" S,E,I,_ = u\n",
" α,β,γ = p\n",
"\n",
" dS = ( -β*I*S )\n",
" dE = ( +β*I*S ) - α*E\n",
" dI = ( -γ*I ) + α*E\n",
" dR = ( +γ*I )\n",
"\n",
" du .= (dS, dE, dI, dR)\n",
"end\n",
"\n",
"labels = [\n",
" \"Susceptible\", \"Exposed\", \n",
" \"Infected\", \"Recovered\"\n",
"];\n"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"scrolled": false
},
"outputs": [
{
"data": {
"text/html": [
" <script type=\"text/javascript\" class=\"js-plotly-script\">\n",
" globalComms = {};\n",
" demoData = {};\n",
"\n",
" $(\".js-plotly-script\").parent().css('padding', 0);\n",
"\n",
" function customPlotlyReact(curPlot, curData, curLayout, curConfig) {\n",
" for (var i = 0; i < curData.length; i++) {\n",
" curData[i][\"visible\"] = true;\n",
" for (var j = 0; j < curPlot.data.length; j++) {\n",
" if ( curData[i].name !== curPlot.data[j].name ) { continue; }\n",
" if ( curPlot.data[j].visible !== \"legendonly\" ) { continue; }\n",
"\n",
" curData[i][\"visible\"] = \"legendonly\";\n",
" }\n",
" }\n",
"\n",
" Plotly.react(curPlot, curData, curLayout, curConfig);\n",
" }\n",
"\n",
" function customPlotLoader(curCallback) {\n",
" if ( $(\".js-nouislider-css\").length == 0 ) {\n",
" $(\"head\").append(\n",
" '<link class=\"js-nouislider-css\" href=\"https://cdn.jsdelivr.net/gh/djsegal/SimplePlots.jl/dist/nouislider.min.css\" rel=\"stylesheet\">'\n",
" );\n",
" }\n",
"\n",
" if ( $(\".js-custom-css\").length == 0 ) {\n",
" $(\"head\").append(\n",
" '<link class=\"js-custom-css\" href=\"https://cdn.jsdelivr.net/gh/djsegal/SimplePlots.jl/dist/custom.min.css\" rel=\"stylesheet\">'\n",
" );\n",
" }\n",
"\n",
" if ( typeof Plotly !== \"undefined\" ) {\n",
" if ( typeof curCallback !== \"undefined\" ) {\n",
" curCallback();\n",
" }\n",
" return;\n",
" }\n",
"\n",
" var plotlyScripts = document.getElementsByClassName(\"js-plotly-script\");\n",
"\n",
" for (var i = 0; i < plotlyScripts.length; i++) {\n",
" var scriptParent = plotlyScripts[i].parentElement;\n",
" scriptParent.style.margin = \"0\";\n",
" scriptParent.style.padding = \"0\";\n",
" }\n",
"\n",
" require.config({\n",
" paths: {\n",
" Plotly: \"https://cdn.plot.ly/plotly-1.53.0.min\",\n",
" noUiSlider: \"https://cdn.jsdelivr.net/gh/djsegal/SimplePlots.jl/dist/nouislider.min\",\n",
" wNumb: \"https://cdn.jsdelivr.net/gh/djsegal/SimplePlots.jl/dist/wnumb.min\"\n",
" }\n",
" });\n",
"\n",
" require([\"Plotly\", \"noUiSlider\", \"wNumb\"], function(Plotly, noUiSlider, wNumb){\n",
" window.Plotly = Plotly;\n",
" window.noUiSlider = noUiSlider;\n",
" window.wNumb = wNumb;\n",
"\n",
" if ( typeof curCallback !== \"undefined\" ) {\n",
" curCallback();\n",
" }\n",
"\n",
" $(\"head\").append($(\".js-plotly-script\"));\n",
" $(\"head .js-plotly-script:not(:first)\").remove();\n",
" $(\"body .js-plotly-script\").remove();\n",
" });\n",
" }\n",
"\n",
" $(document).ready(customPlotLoader);\n",
" customPlotLoader();\n",
" </script>\n"
],
"text/plain": [
"HTML{String}(\" <script type=\\\"text/javascript\\\" class=\\\"js-plotly-script\\\">\\n globalComms = {};\\n demoData = {};\\n\\n \\$(\\\".js-plotly-script\\\").parent().css('padding', 0);\\n\\n function customPlotlyReact(curPlot, curData, curLayout, curConfig) {\\n for (var i = 0; i < curData.length; i++) {\\n curData[i][\\\"visible\\\"] = true;\\n for (var j = 0; j < curPlot.data.length; j++) {\\n if ( curData[i].name !== curPlot.data[j].name ) { continue; }\\n if ( curPlot.data[j].visible !== \\\"legendonly\\\" ) { continue; }\\n\\n curData[i][\\\"visible\\\"] = \\\"legendonly\\\";\\n }\\n }\\n\\n Plotly.react(curPlot, curData, curLayout, curConfig);\\n }\\n\\n function customPlotLoader(curCallback) {\\n if ( \\$(\\\".js-nouislider-css\\\").length == 0 ) {\\n \\$(\\\"head\\\").append(\\n '<link class=\\\"js-nouislider-css\\\" href=\\\"https://cdn.jsdelivr.net/gh/djsegal/SimplePlots.jl/dist/nouislider.min.css\\\" rel=\\\"stylesheet\\\">'\\n );\\n }\\n\\n if ( \\$(\\\".js-custom-css\\\").length == 0 ) {\\n \\$(\\\"head\\\").append(\\n '<link class=\\\"js-custom-css\\\" href=\\\"https://cdn.jsdelivr.net/gh/djsegal/SimplePlots.jl/dist/custom.min.css\\\" rel=\\\"stylesheet\\\">'\\n );\\n }\\n\\n if ( typeof Plotly !== \\\"undefined\\\" ) {\\n if ( typeof curCallback !== \\\"undefined\\\" ) {\\n curCallback();\\n }\\n return;\\n }\\n\\n var plotlyScripts = document.getElementsByClassName(\\\"js-plotly-script\\\");\\n\\n for (var i = 0; i < plotlyScripts.length; i++) {\\n var scriptParent = plotlyScripts[i].parentElement;\\n scriptParent.style.margin = \\\"0\\\";\\n scriptParent.style.padding = \\\"0\\\";\\n }\\n\\n require.config({\\n paths: {\\n Plotly: \\\"https://cdn.plot.ly/plotly-1.53.0.min\\\",\\n noUiSlider: \\\"https://cdn.jsdelivr.net/gh/djsegal/SimplePlots.jl/dist/nouislider.min\\\",\\n wNumb: \\\"https://cdn.jsdelivr.net/gh/djsegal/SimplePlots.jl/dist/wnumb.min\\\"\\n }\\n });\\n\\n require([\\\"Plotly\\\", \\\"noUiSlider\\\", \\\"wNumb\\\"], function(Plotly, noUiSlider, wNumb){\\n window.Plotly = Plotly;\\n window.noUiSlider = noUiSlider;\\n window.wNumb = wNumb;\\n\\n if ( typeof curCallback !== \\\"undefined\\\" ) {\\n curCallback();\\n }\\n\\n \\$(\\\"head\\\").append(\\$(\\\".js-plotly-script\\\"));\\n \\$(\\\"head .js-plotly-script:not(:first)\\\").remove();\\n \\$(\\\"body .js-plotly-script\\\").remove();\\n });\\n }\\n\\n \\$(document).ready(customPlotLoader);\\n customPlotLoader();\\n </script>\\n\")"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
" <h3> Sliding the β value reduces/increases infectivity </h3>\n",
" <p style=\"margin-top: 0.4em\">(social distancing, immunity, vaccines reduce β)</p>\n"
],
"text/plain": [
"HTML{String}(\" <h3> Sliding the β value reduces/increases infectivity </h3>\\n <p style=\\\"margin-top: 0.4em\\\">(social distancing, immunity, vaccines reduce β)</p>\\n\")"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
" <div class='js-interact' id='js-interact__4a4e53eb-56fd-4403-a0eb-c48916e51673'>\n",
" <div class='js-widgets'>\n",
" <div class='cs-widget js-widget'>\n",
" <div class='cs-widget-label'>\n",
" β\n",
" </div>\n",
"<div class='cs-widget-slider js-widget-slider'></div> <div class='cs-widget-value js-widget-value '>\n",
" 1.0\n",
" </div>\n",
"\n",
" </div>\n",
" </div>\n",
"\n",
" <div class='js-display'>\n",
" </div>\n",
" </div>\n",
" <script>\n",
" var anonFunc = function () {\n",
" var foundSlider = false;\n",
" $(\"#js-interact__4a4e53eb-56fd-4403-a0eb-c48916e51673 .js-widget-slider\").each(function( index ) {\n",
" var tmpText = $(this.parentElement).children(\".cs-widget-label\").text().trim();\n",
" if ( tmpText !== \"β\" ) { return; }\n",
"\n",
" if ( foundSlider ) { alert(\"There are repeated sliders!\"); }\n",
"\n",
" foundSlider = true;\n",
" noUiSlider.create(this, {\n",
" start: 3,\n",
" step: 1,\n",
" connect: \"lower\",\n",
" format: wNumb({\n",
" decimals: 0\n",
" }),\n",
" range: {\n",
" min: 0,\n",
" max: 7\n",
" }\n",
" });\n",
"\n",
" var that = this;\n",
" this.noUiSlider.on('update', function (values, handle) {\n",
" var tmpRange = [\"0.25\", \"0.5\", \"0.75\", \"1.0\", \"1.25\", \"1.5\", \"1.75\", \"2.0\"];\n",
" var newValue = tmpRange[values[handle]];\n",
"\n",
" var tmpSpan = $(that.parentElement).children(\".js-widget-value\")[0];\n",
" tmpSpan.innerText = newValue;\n",
"\n",
" $(\"#js-interact__4a4e53eb-56fd-4403-a0eb-c48916e51673\").trigger(\"interact\");\n",
" });\n",
" });\n",
" if ( !foundSlider ) { alert(\"Unable to find all sliders!\"); }\n",
" $(\".js-widget-toggle .cs-button\").click(function (curEvent) {\n",
" if ( !$(curEvent.target).hasClass(\"cs-active\") ) {\n",
" var curItems = $(curEvent.target.parentElement).children(\".cs-button\");\n",
" var curIndex = curItems.index(curEvent.target);\n",
"\n",
" $.each(curItems, function(workIndex, workValue) {\n",
" var otherTarget = $(curEvent.target.parentElement.children[workIndex]);\n",
"\n",
" otherTarget.removeClass(\"cs-active\");\n",
" otherTarget.removeClass(\"cs-pre-active\");\n",
"\n",
" if ( workIndex == curIndex ) { otherTarget.addClass(\"cs-active\"); }\n",
" if ( workIndex == curIndex - 1 ) { otherTarget.addClass(\"cs-pre-active\"); }\n",
" });\n",
"\n",
" var curWidgetVal = $(curEvent.target).closest(\".js-widget\").children(\".js-widget-value\")[0];\n",
" curWidgetVal.innerText = curEvent.target.innerText;\n",
"\n",
" $(\"#js-interact__4a4e53eb-56fd-4403-a0eb-c48916e51673\").trigger(\"interact\");\n",
" }\n",
" });\n",
" $(\"#js-interact__4a4e53eb-56fd-4403-a0eb-c48916e51673\").on(\"interact\", function() {\n",
" var msgLabels = $(\"#js-interact__4a4e53eb-56fd-4403-a0eb-c48916e51673 .cs-widget-label\").map(function(){\n",
" return $.trim($(this).text());\n",
" }).get();\n",
"\n",
" var msgValues = $(\"#js-interact__4a4e53eb-56fd-4403-a0eb-c48916e51673 .cs-widget-value\").map(function(){\n",
" return $.trim($(this).text());\n",
" }).get();\n",
"\n",
" var msgDict = msgLabels.reduce((obj, k, i) => ({...obj, [k]: msgValues[i] }), {});\n",
"\n",
" var workPlotlyId = $(\"#js-interact__4a4e53eb-56fd-4403-a0eb-c48916e51673 .js-plotly-plot\").attr(\"id\");\n",
" msgDict[\"___interact_plot_id___\"] = workPlotlyId;\n",
"\n",
" if ( \"interact-4a4e53eb-56fd-4403-a0eb-c48916e51673\" in demoData ) {\n",
" tmpData = demoData[\"interact-4a4e53eb-56fd-4403-a0eb-c48916e51673\"];\n",
" tmpData = tmpData[msgDict[\"β\"]];\n",
" var workPlot = $(\"#js-interact__4a4e53eb-56fd-4403-a0eb-c48916e51673 .js-plotly-plot\")[0];\n",
" var workJson = tmpData;\n",
"\n",
" if ( typeof workPlot === \"undefined\" ) {\n",
" var tmpDisplay = $(\"#js-interact__4a4e53eb-56fd-4403-a0eb-c48916e51673 .js-display\");\n",
" var tmpPlotId = \"js-plot-817bdabc-b895-458d-8694-913955aa81f2\";\n",
" tmpDisplay.html('<div id=\"' + tmpPlotId + '\" style=\"width:600px;height:400px;\"></div>');\n",
"\n",
" plotDiv = document.getElementById(tmpPlotId);\n",
" Plotly.newPlot(plotDiv, workJson.data, workJson.layout, workJson.config);\n",
" } else {\n",
" customPlotlyReact(workPlot, workJson.data, workJson.layout, workJson.config);\n",
" }\n",
" } else {\n",
" if ( \"interact-4a4e53eb-56fd-4403-a0eb-c48916e51673\" in globalComms ) {\n",
" globalComms[\"interact-4a4e53eb-56fd-4403-a0eb-c48916e51673\"].send(msgDict);\n",
" } else {\n",
" console.log(\"Unable to startup GUI – may be waiting for demo data...\")\n",
" }\n",
" }\n",
" });\n",
" }\n",
"\n",
" customPlotLoader(anonFunc);\n",
" </script>\n"
],
"text/plain": [
"HTML{String}(\" <div class='js-interact' id='js-interact__4a4e53eb-56fd-4403-a0eb-c48916e51673'>\\n <div class='js-widgets'>\\n <div class='cs-widget js-widget'>\\n <div class='cs-widget-label'>\\n β\\n </div>\\n<div class='cs-widget-slider js-widget-slider'></div> <div class='cs-widget-value js-widget-value '>\\n 1.0\\n </div>\\n\\n </div>\\n </div>\\n\\n <div class='js-display'>\\n </div>\\n </div>\\n <script>\\n var anonFunc = function () {\\n var foundSlider = false;\\n \\$(\\\"#js-interact__4a4e53eb-56fd-4403-a0eb-c48916e51673 .js-widget-slider\\\").each(function( index ) {\\n var tmpText = \\$(this.parentElement).children(\\\".cs-widget-label\\\").text().trim();\\n if ( tmpText !== \\\"β\\\" ) { return; }\\n\\n if ( foundSlider ) { alert(\\\"There are repeated sliders!\\\"); }\\n\\n foundSlider = true;\\n noUiSlider.create(this, {\\n start: 3,\\n step: 1,\\n connect: \\\"lower\\\",\\n format: wNumb({\\n decimals: 0\\n }),\\n range: {\\n min: 0,\\n max: 7\\n }\\n });\\n\\n var that = this;\\n this.noUiSlider.on('update', function (values, handle) {\\n var tmpRange = [\\\"0.25\\\", \\\"0.5\\\", \\\"0.75\\\", \\\"1.0\\\", \\\"1.25\\\", \\\"1.5\\\", \\\"1.75\\\", \\\"2.0\\\"];\\n var newValue = tmpRange[values[handle]];\\n\\n var tmpSpan = \\$(that.parentElement).children(\\\".js-widget-value\\\")[0];\\n tmpSpan.innerText = newValue;\\n\\n \\$(\\\"#js-interact__4a4e53eb-56fd-4403-a0eb-c48916e51673\\\").trigger(\\\"interact\\\");\\n });\\n });\\n if ( !foundSlider ) { alert(\\\"Unable to find all sliders!\\\"); }\\n \\$(\\\".js-widget-toggle .cs-button\\\").click(function (curEvent) {\\n if ( !\\$(curEvent.target).hasClass(\\\"cs-active\\\") ) {\\n var curItems = \\$(curEvent.target.parentElement).children(\\\".cs-button\\\");\\n var curIndex = curItems.index(curEvent.target);\\n\\n \\$.each(curItems, function(workIndex, workValue) {\\n var otherTarget = \\$(curEvent.target.parentElement.children[workIndex]);\\n\\n otherTarget.removeClass(\\\"cs-active\\\");\\n otherTarget.removeClass(\\\"cs-pre-active\\\");\\n\\n if ( workIndex == curIndex ) { otherTarget.addClass(\\\"cs-active\\\"); }\\n if ( workIndex == curIndex - 1 ) { otherTarget.addClass(\\\"cs-pre-active\\\"); }\\n });\\n\\n var curWidgetVal = \\$(curEvent.target).closest(\\\".js-widget\\\").children(\\\".js-widget-value\\\")[0];\\n curWidgetVal.innerText = curEvent.target.innerText;\\n\\n \\$(\\\"#js-interact__4a4e53eb-56fd-4403-a0eb-c48916e51673\\\").trigger(\\\"interact\\\");\\n }\\n });\\n \\$(\\\"#js-interact__4a4e53eb-56fd-4403-a0eb-c48916e51673\\\").on(\\\"interact\\\", function() {\\n var msgLabels = \\$(\\\"#js-interact__4a4e53eb-56fd-4403-a0eb-c48916e51673 .cs-widget-label\\\").map(function(){\\n return \\$.trim(\\$(this).text());\\n }).get();\\n\\n var msgValues = \\$(\\\"#js-interact__4a4e53eb-56fd-4403-a0eb-c48916e51673 .cs-widget-value\\\").map(function(){\\n return \\$.trim(\\$(this).text());\\n }).get();\\n\\n var msgDict = msgLabels.reduce((obj, k, i) => ({...obj, [k]: msgValues[i] }), {});\\n\\n var workPlotlyId = \\$(\\\"#js-interact__4a4e53eb-56fd-4403-a0eb-c48916e51673 .js-plotly-plot\\\").attr(\\\"id\\\");\\n msgDict[\\\"___interact_plot_id___\\\"] = workPlotlyId;\\n\\n if ( \\\"interact-4a4e53eb-56fd-4403-a0eb-c48916e51673\\\" in demoData ) {\\n tmpData = demoData[\\\"interact-4a4e53eb-56fd-4403-a0eb-c48916e51673\\\"];\\n tmpData = tmpData[msgDict[\\\"β\\\"]];\\n var workPlot = \\$(\\\"#js-interact__4a4e53eb-56fd-4403-a0eb-c48916e51673 .js-plotly-plot\\\")[0];\\n var workJson = tmpData;\\n\\n if ( typeof workPlot === \\\"undefined\\\" ) {\\n var tmpDisplay = \\$(\\\"#js-interact__4a4e53eb-56fd-4403-a0eb-c48916e51673 .js-display\\\");\\n var tmpPlotId = \\\"js-plot-817bdabc-b895-458d-8694-913955aa81f2\\\";\\n tmpDisplay.html('<div id=\\\"' + tmpPlotId + '\\\" style=\\\"width:600px;height:400px;\\\"></div>');\\n\\n plotDiv = document.getElementById(tmpPlotId);\\n Plotly.newPlot(plotDiv, workJson.data, workJson.layout, workJson.config);\\n } else {\\n customPlotlyReact(workPlot, workJson.data, workJson.layout, workJson.config);\\n }\\n } else {\\n if ( \\\"interact-4a4e53eb-56fd-4403-a0eb-c48916e51673\\\" in globalComms ) {\\n globalComms[\\\"interact-4a4e53eb-56fd-4403-a0eb-c48916e51673\\\"].send(msgDict);\\n } else {\\n console.log(\\\"Unable to startup GUI – may be waiting for demo data...\\\")\\n }\\n }\\n });\\n }\\n\\n customPlotLoader(anonFunc);\\n </script>\\n\")"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/javascript": [
"\n",
" var _guiBootup = function (curCallback) {\n",
" Jupyter.notebook.kernel.comm_manager.unregister_target(\"interact-4a4e53eb-56fd-4403-a0eb-c48916e51673\")\n",
" Jupyter.notebook.kernel.comm_manager.register_target(\"interact-4a4e53eb-56fd-4403-a0eb-c48916e51673\", function (comm, msg) {\n",
" globalComms[\"interact-4a4e53eb-56fd-4403-a0eb-c48916e51673\"] = comm;\n",
"\n",
" comm.on_msg(function(msg) {\n",
" if ( \"json\" in msg.content.data ) {\n",
" var workPlot = $(\"#js-interact__4a4e53eb-56fd-4403-a0eb-c48916e51673 .js-plotly-plot\")[0];\n",
" if ( typeof workPlot === \"undefined\" ) { alert(\"Could not find plotly plot!\"); }\n",
"\n",
" var workJson = msg.content.data.json.plot;\n",
" customPlotlyReact(workPlot, workJson.data, workJson.layout, workJson.config);\n",
"\n",
" $(\"#js-interact__4a4e53eb-56fd-4403-a0eb-c48916e51673 .js-new-plot-script\").replaceWith(msg.content.data.json.script);\n",
" } else {\n",
" if ( \"html\" in msg.content.data ) {\n",
" var tmpDisplay = $(\"#js-interact__4a4e53eb-56fd-4403-a0eb-c48916e51673 .js-display\");\n",
" tmpDisplay.html(msg.content.data.html);\n",
" } else {\n",
" if ( \"text\" in msg.content.data ) {\n",
" console.log(msg.content.data.text);\n",
" } else {\n",
" alert(\"Unrecognized interact content type!\");\n",
" }\n",
" }\n",
" }\n",
" });\n",
"\n",
" comm.on_close(function(msg) { console.log(\"Julia close message: \" + msg); });\n",
" $(\"#js-interact__4a4e53eb-56fd-4403-a0eb-c48916e51673\").trigger(\"interact\");\n",
" })\n",
"\n",
" var curCommand = 'Main.SimplePlots.interact_comms[\"interact-4a4e53eb-56fd-4403-a0eb-c48916e51673\"][] += 10';\n",
" Jupyter.notebook.kernel.execute(curCommand, {\"iopub\": {\"output\": function(tmpMessage) {\n",
" console.log(tmpMessage)\n",
" }}});\n",
"\n",
" if ( typeof curCallback !== \"undefined\" ) { curCallback(); }\n",
" }\n",
"\n",
" if ( typeof Jupyter === \"undefined\" ) {\n",
" customPlotLoader(function() {\n",
" $(\"#js-interact__4a4e53eb-56fd-4403-a0eb-c48916e51673\").trigger(\"interact\");\n",
" });\n",
" } else {\n",
" if (Jupyter.notebook.kernel) {\n",
" _guiBootup()\n",
" } else {\n",
" Jupyter.notebook.events.one('kernel_ready.Kernel', (e) => {\n",
" _guiBootup(function() {\n",
" customPlotLoader(function() {\n",
" $(\"#js-interact__4a4e53eb-56fd-4403-a0eb-c48916e51673\").trigger(\"interact\");\n",
" });\n",
" });\n",
" });\n",
" }\n",
" }\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/javascript": [
"demoData['interact-4a4e53eb-56fd-4403-a0eb-c48916e51673'] = {\"0.25\":{\"config\":{\"responsive\":true},\"data\":[{\"name\":\"Susceptible\",\"line\":{\"color\":\"#636EFA\"},\"error_y\":{\"array\":[0.0,1.750830977086792e-5,6.171121648938931e-5,0.00012317048125342933,0.00019548575822604303,0.0002743451103915162,0.0003568667978016877,0.0004411443027952422,0.0005259327932070218,0.00061043374741799,0.0006941475247851064,0.0007767728296661025,0.0008581384527815568,0.0009381571678536639,0.0010167947839396058,0.0010940495379283468,0.001169938511188521,0.0012444888037889403,0.001317731906112604,0.0013897002136893772,0.0014604249614757808,0.001529935090390105,0.0015982567153134716,0.0016654129734321045,0.0017314241049223385,0.0017963076691772126,0.0018600788278201308,0.0019227506621805454,0.0019843344898421403,0.0020448401705499427,0.002104276390874291,0.002162650921311554,0.002219970844980133,0.002276242762304283,0.002331472964885985,0.0023856675857961127,0.0024388327277567686,0.002490974569094597,0.002542099450721752,0.00259221394757441,0.0026413249258276424,0.002689439585242988,0.0027365654915507587,0.0027827105992429702,0.0028278832651492877,0.002872092254972375,0.002915346743721589,0.0029576563114761464,0.002999030934527231,0.003039480972289662,0.003079017151933239,0.003117650550823336,0.0031553925765025865,0.003192254945543602,0.0032282496612264433,0.003263388990756263,0.0032976854421416213,0.0033311517407294405,0.003363800805541349,0.003395645725977184,0.003426699739285073,0.003456976208043787,0.0034864885983496804,0.003515250458418071,0.0035432753981976886,0.0035705770699176512,0.0035971691494291213,0.003623065318261506,0.0036482792463994862,0.0036728245759047482,0.003696714905656131,0.0037199637771620163,0.0037425846610086126,0.003764590944140867,0.003785995917088475,0.0038068127629819525,0.003827054547753813,0.0038467342109746996,0.0038658645571285504,0.003884458247368725,0.0039025277919206257,0.003920085543305738,0.003937143690464272,0.003953714253638758,0.003969809079280121,0.003985439836469741,0.004000618013623616,0.004015354911979349,0.004029661642777218,0.0040435491265112785,0.004057028092429256,0.004070109077500554,0.00408280242482258,0.004095118281900136,0.004107066599415183,0.00411865713100587,0.004129899434198686,0.0041408028719877405,0.0041513766136291866,0.004161629632290733,0.00417157071649465,0.0041812084713594945,0.004190551297318081,0.0041996073905510335,0.0042083847548872715,0.004216891214256352,0.004225134420262492,0.004233121853624354,0.004240860821108769,0.004248358451197768,0.004255621692081744,0.004262657314679071,0.004269471921256538,0.004276071956870607,0.0042824637162798655,0.004288653332143339,0.004294646773180987,0.004300450050789981,0.004306069015271785,0.004311509133510709,0.004316775535736749,0.004321873163207966,0.004326806902883529,0.004331581653851313,0.00433620231517044,0.004340673716086872,0.004345000527444476,0.004349187197686168,0.00435323794824085,0.004357156841422735,0.004360947899310974,0.004364615204502359,0.00436816285317934,0.004371594540443928,0.004374914687213521,0.00437813010514725,0.00438124568450007,0.004384262982230121,0.004387181591722185,0.004390001170482268,0.004392722910260965,0.004395349961346271,0.004397886863051811,0.004400338387518233,0.004402708374838292,0.004404999125489156,0.00440721172267021,0.004409347283546128,0.004411408585153347,0.004413400778546792,0.0044153289686930264,0.004417193413137274,0.004419011331171337,0.004420805053023347,0.004422574947748514,0.0044243018899303805,0.004425961741339285,0.00442753871520124,0.004429031415511037,0.004430450589540771,0.00443181123841129,0.004433123653568161,0.004434388164937655,0.004435596931878509,0.004436743006974437,0.004437832145745871,0.0044388864320173485,0.004439920942590213,0.004440929539371827,0.004441968484958283,0.004443078930381094,0.004444234471849083,0.00444536786489894,0.004446416577786229,0.004447353422498777,0.004448190508961164,0.004448960762782696,0.004449690949645106,0.004450382935271476,0.004451015874416555,0.004451571489166906,0.004452067503650045,0.004452560730755393,0.004453068138652308,0.004453594591895047,0.004454207767209388,0.004454919012682542,0.004455670117239612,0.0044563825041080245,0.0044570050528189445,0.004457532385270103,0.004457991447031085,0.00445841132004723,0.004458798171141539,0.004459133683591559,0.0044594017834863435,0.004459625047854574,0.00445985839194601,0.0044601018268222254,0.004460347422667259,0.004460594692290385,0.004460843155306173,0.004461092337406533,0.004461341769672672,0.004461590987926966,0.004461839532124743,0.004462086945785985,0.004462332775466939,0.004462576570271643,0.00446281788140334,0.004463056261755796,0.004463291265544472,0.004463522447977581,0.0044637493649669685,0.004463971572878835,0.0044641886283242616,0.004464400087989538,0.004464605508506259,0.004464804446361188,0.004464996457845861,0.004465181099045916,0.004465357925870152,0.004465526494119276,0.004465686359594355,0.0044658370782449525,0.00446597878070811,0.004466114910256321,0.004466246216446028,0.004466372819953602,0.004466494841458352,0.004466612401642311,0.004466725621190045,0.004466834620788476,0.004466939521126699,0.004467040442895829,0.004467137506788849,0.004467230833500468,0.004467320543726989,0.004467406758166199,0.0044674895975172465,0.004467569182480556,0.0044676456337577365,0.0044677190720514995,0.004467789618065603,0.004467857392504786,0.004467922516074731,0.00446798510948202,0.004468045293434124,0.004468103188639375,0.004468158915806976,0.004468212595646996,0.0044682643488704,0.004468314296189068,0.004468362558315843,0.004468409255964572,0.004468454509850173,0.004468498440688701,0.0044685411127917875,0.004468582400858468,0.004468622318195418,0.004468660894944106,0.004468698161246992,0.004468734147247479,0.0044687688830898865,0.004468802398919393,0.004468834724882019,0.0044688658911245715,0.004468895927794623,0.004468924865040464,0.004468952733011082,0.004468979561856121,0.004469005381725848,0.0044690302227711285,0.00446905411514339,0.004469077088994599,0.004469099174477229,0.004469120401744238,0.004469140800949033,0.004469160402245456,0.004469179235787753,0.004469197331730554,0.004469214720228849,0.004469231431437968,0.004469247495513561,0.0044692629426115755,0.004469277802888241,0.004469292106500053,0.004469305883603756,0.004469319164356322,0.004469331978914947,0.004469344357437026,0.00446935633008015,0.004469367927002087,0.004469379178360778,0.004469390108254216,0.004469400691904084,0.0044694109277953545,0.0044694208231382,0.004469430385142844,0.004469439621019567,0.004469448537978701,0.004469457143230626,0.004469465443985766,0.004469473447454597,0.004469481160847635,0.004469488591375436,0.0044694957462486,0.004469502632677763,0.004469509257873597,0.00446951562904681,0.004469521753408142,0.004469527638168368,0.004469533290538291,0.004469538717728742,0.004469543926950581,0.004469548925414693,0.00446955372033199,0.004469558318913404,0.004469562728369892,0.004469566955912431,0.004469571008752017,0.004469574894099666,0.004469578619166413,0.004469582191163304,0.004469585617301408,0.004469588904791806,0.004469592060845587,0.004469595092673863,0.004469598007487753,0.004469600812498384,0.0044696035149169025,0.004469606121954457,0.004469608640822208,0.004469611078731326,0.004469613442892989,0.004469615740518384,0.004469617978818702,0.004469620164551828,0.004469622288032307,0.004469624343594522,0.004469626332543925,0.004469628256185971,0.004469630115826116,0.004469631912769819,0.0044696336483225395,0.004469635323789741,0.004469636940476886,0.004469638499689443,0.004469640002732878,0.0044696414509126595,0.00446964284553426,0.004469644187903153,0.004469645479324809,0.004469646721104707,0.00446964791454832,0.004469649060961128,0.004469650161648609,0.004469651217916244,0.0044696522310695135,0.0044696532024139,0.004469654133254888,0.00446965502489796,0.004469655878648601,0.004469656695812298,0.004469657477694538,0.004469658225600806,0.004469658940836593,0.004469659624707386,0.0044696602785186754,0.0044696609035759505,0.004469661501184702,0.004469662072650421,0.004469662619278599,0.00446966314237473,0.004469663643244303,0.004469664123192812,0.004469664583525752,0.004469665025548614,0.004469665450566895,0.004469665859886085,0.004469666254811681,0.004469666636649178,0.0044696670067040705,0.004469667366281852,0.004469667716688021,0.00446966805922807,0.004469668395207497,0.004469668725874161,0.004469669047384637,0.004469669357047507,0.004469669655233345,0.004469669942312717,0.004469670218656199,0.004469670484634362,0.004469670740617778,0.004469670986977019,0.004469671224082655,0.004469671452305259,0.004469671672015405,0.004469671883583662,0.004469672087380603],\"thickness\":2,\"color\":\"#636EFA\",\"width\":0,\"type\":\"data\",\"opacity\":0.1},\"mode\":\"lines\",\"x\":[0.0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.5,9.0,9.5,10.0,10.5,11.0,11.5,12.0,12.5,13.0,13.5,14.0,14.5,15.0,15.5,16.0,16.5,17.0,17.5,18.0,18.5,19.0,19.5,20.0,20.5,21.0,21.5,22.0,22.5,23.0,23.5,24.0,24.5,25.0,25.5,26.0,26.5,27.0,27.5,28.0,28.5,29.0,29.5,30.0,30.5,31.0,31.5,32.0,32.5,33.0,33.5,34.0,34.5,35.0,35.5,36.0,36.5,37.0,37.5,38.0,38.5,39.0,39.5,40.0,40.5,41.0,41.5,42.0,42.5,43.0,43.5,44.0,44.5,45.0,45.5,46.0,46.5,47.0,47.5,48.0,48.5,49.0,49.5,50.0,50.5,51.0,51.5,52.0,52.5,53.0,53.5,54.0,54.5,55.0,55.5,56.0,56.5,57.0,57.5,58.0,58.5,59.0,59.5,60.0,60.5,61.0,61.5,62.0,62.5,63.0,63.5,64.0,64.5,65.0,65.5,66.0,66.5,67.0,67.5,68.0,68.5,69.0,69.5,70.0,70.5,71.0,71.5,72.0,72.5,73.0,73.5,74.0,74.5,75.0,75.5,76.0,76.5,77.0,77.5,78.0,78.5,79.0,79.5,80.0,80.5,81.0,81.5,82.0,82.5,83.0,83.5,84.0,84.5,85.0,85.5,86.0,86.5,87.0,87.5,88.0,88.5,89.0,89.5,90.0,90.5,91.0,91.5,92.0,92.5,93.0,93.5,94.0,94.5,95.0,95.5,96.0,96.5,97.0,97.5,98.0,98.5,99.0,99.5,100.0,100.5,101.0,101.5,102.0,102.5,103.0,103.5,104.0,104.5,105.0,105.5,106.0,106.5,107.0,107.5,108.0,108.5,109.0,109.5,110.0,110.5,111.0,111.5,112.0,112.5,113.0,113.5,114.0,114.5,115.0,115.5,116.0,116.5,117.0,117.5,118.0,118.5,119.0,119.5,120.0,120.5,121.0,121.5,122.0,122.5,123.0,123.5,124.0,124.5,125.0,125.5,126.0,126.5,127.0,127.5,128.0,128.5,129.0,129.5,130.0,130.5,131.0,131.5,132.0,132.5,133.0,133.5,134.0,134.5,135.0,135.5,136.0,136.5,137.0,137.5,138.0,138.5,139.0,139.5,140.0,140.5,141.0,141.5,142.0,142.5,143.0,143.5,144.0,144.5,145.0,145.5,146.0,146.5,147.0,147.5,148.0,148.5,149.0,149.5,150.0,150.5,151.0,151.5,152.0,152.5,153.0,153.5,154.0,154.5,155.0,155.5,156.0,156.5,157.0,157.5,158.0,158.5,159.0,159.5,160.0,160.5,161.0,161.5,162.0,162.5,163.0,163.5,164.0,164.5,165.0,165.5,166.0,166.5,167.0,167.5,168.0,168.5,169.0,169.5,170.0,170.5,171.0,171.5,172.0,172.5,173.0,173.5,174.0,174.5,175.0,175.5,176.0,176.5,177.0,177.5,178.0,178.5,179.0,179.5,180.0,180.5,181.0,181.5,182.0,182.5,183.0,183.5,184.0,184.5,185.0,185.5,186.0,186.5,187.0,187.5,188.0,188.5,189.0,189.5,190.0,190.5,191.0,191.5,192.0,192.5,193.0,193.5,194.0,194.5,195.0,195.5,196.0,196.5,197.0,197.5,198.0,198.5,199.0,199.5,200.0],\"opacity\":0.8,\"y\":[99.99,99.9899442581361,99.98980021663243,99.98959546950206,99.98935010163147,99.98907869462788,99.98879179833555,99.98849701029316,99.98819976752827,99.98790392729597,99.9876121929612,99.98732642627391,99.98704787629474,99.98677734716705,99.98651532103594,99.98626204805748,99.98601761227593,99.98578197978864,99.9855550339384,99.98533660097968,99.98512646877062,99.98492440034462,99.98473014374079,99.98454343908547,99.98436402366903,99.98419163554915,99.98402601608835,99.98386691169999,99.98371407503072,99.983567265726,99.98342625089414,99.98329080535751,99.9831607117515,99.98303576050154,99.98291574973422,99.9828004851308,99.9826897797414,99.98258345377931,99.98248133440296,99.98238325548574,99.9822890573801,99.98219858668989,99.98211169604026,99.98202824385064,99.98194809411646,99.9818711161963,99.98179718460577,99.98172617881531,99.98165798305621,99.98159248613658,99.98152958126121,99.98146916585695,99.98141114140806,99.98135541329592,99.98130189064572,99.98125048617842,99.98120111606802,99.98115369980495,99.98110816006577,99.98106442258741,99.98102241604478,99.98098207193547,99.980943324468,99.98090611045465,99.98087036920863,99.98083604244478,99.98080307418442,99.98077141066402,99.9807410002477,99.98071179334329,99.9806837423213,99.9806568014369,99.98063092675554,99.98060607608119,99.98058220888821,99.9805592862551,99.98053727080081,99.98051612662337,99.98049581924148,99.9804763155383,99.98045758370763,99.98043959320225,99.98042231468376,99.98040571997477,99.98038978201289,99.98037447480634,99.98035977339119,99.98034565379267,99.98033209298615,99.98031906885852,99.98030656017133,99.98029454652577,99.98028300832974,99.98027192676646,99.98026128376426,99.98025106196718,99.98024124470615,99.98023181597111,99.98022276038478,99.98021406317962,99.98020571016745,99.98019768771631,99.98018998274209,99.98018258268813,99.98017547549844,99.98016864959176,99.98016209383916,99.98015579754632,99.98014975043944,99.98014394265257,99.9801383647143,99.98013300753213,99.98012786237382,99.98012292084782,99.98011817488702,99.98011361674448,99.98010923898372,99.98010503434061,99.9801009958389,99.98009711691886,99.9800933914,99.98008981338138,99.9800863771498,99.98008307713046,99.98007990788676,99.98007686415646,99.98007394090013,99.98007113333489,99.98006843693155,99.9800658473666,99.98006336044247,99.98006097201903,99.98005867803772,99.98005647477679,99.98005435813671,99.98005232258588,99.98005036387266,99.98004847991774,99.98004666995138,99.98004493323069,99.98004326810491,99.98004167173987,99.98004014047216,99.9800386705371,99.98003725880534,99.98003590316802,99.980034602332,99.98003335502332,99.98003215894981,99.98003101034128,99.980029905487,99.98002884379233,99.98002781379458,99.98002680077215,99.98002580414203,99.9800248358898,99.98002391125577,99.98002304013588,99.98002222319418,99.98002145330048,99.98002072059775,99.98002001827324,99.98001934595123,99.98001870854726,99.98001811042114,99.98001754773978,99.98001700611199,99.98001647568331,99.98001596029569,99.98001542306366,99.98001483704752,99.9800142195419,99.98001361448216,99.98001306258074,99.98001258142283,99.98001216301351,99.98001178584724,99.98001143246492,99.98001110167391,99.98001080713283,99.98001056084458,99.9800103512588,99.98001014115864,99.9800099194579,99.98000968278032,99.98000938618434,99.98000902224007,99.98000862972607,99.98000826071367,99.9800079488675,99.98000769758826,99.98000748902585,99.98000730400615,99.98000713854537,99.98000700487067,99.98000691372346,99.98000685019568,99.98000677786463,99.98000669681795,99.98000661234742,99.98000652478723,99.98000643447149,99.98000634173437,99.98000624691004,99.98000615033264,99.98000605233635,99.98000595325531,99.98000585342368,99.98000575317562,99.98000565284526,99.98000555276683,99.98000545327442,99.98000535470219,99.98000525738432,99.98000516165497,99.98000506784828,99.98000497629845,99.98000488733958,99.98000480130584,99.98000471853142,99.98000463935045,99.98000456409709,99.9800044931055,99.98000442670984,99.98000436524427,99.9800043086613,99.98000425470582,99.98000420290182,99.98000415319034,99.9800041055124,99.98000405980908,99.98000401602138,99.98000397409037,99.98000393395705,99.9800038955625,99.98000385884772,99.98000382375378,99.9800037902217,99.98000375819251,99.9800037276073,99.98000369840705,99.98000367053281,99.98000364392564,99.98000361852658,99.98000359427664,99.9800035711169,99.98000354898836,99.98000352783207,99.98000350758906,99.9800034882004,99.98000346960711,99.98000345175024,99.98000343457079,99.98000341800984,99.9800034020084,99.98000338650755,99.98000337144829,99.98000335680662,99.98000334267203,99.98000332904343,99.98000331590906,99.98000330325722,99.98000329107613,99.98000327935407,99.98000326807933,99.98000325724013,99.98000324682475,99.98000323682147,99.98000322721853,99.9800032180042,99.98000320916674,99.98000320069444,99.98000319257552,99.98000318479826,99.98000317735092,99.98000317022179,99.9800031633991,99.98000315687113,99.98000315062615,99.98000314465239,99.98000313893814,99.98000313347166,99.98000312824121,99.98000312323506,99.98000311844145,99.98000311384867,99.98000310944498,99.98000310521863,99.98000310115788,99.980003097251,99.98000309348627,99.98000308985192,99.98000308633624,99.98000308292748,99.98000307961668,99.98000307641671,99.98000307332919,99.98000307035167,99.98000306748168,99.98000306471684,99.98000306205465,99.98000305949269,99.98000305702853,99.98000305465972,99.98000305238381,99.98000305019839,99.98000304810098,99.9800030460892,99.98000304416051,99.98000304231255,99.98000304054284,99.98000303884896,99.98000303722847,99.98000303567892,99.98000303419786,99.98000303278288,99.9800030314315,99.98000303014129,99.98000302890982,99.98000302773465,99.98000302661335,99.98000302554343,99.98000302452252,99.98000302354811,99.9800030226178,99.98000302172912,99.98000302087966,99.98000302006697,99.98000301928862,99.98000301854213,99.9800030178251,99.98000301713506,99.98000301646958,99.98000301582624,99.98000301520254,99.98000301459612,99.98000301400447,99.98000301342536,99.9800030128629,99.98000301231937,99.98000301179447,99.9800030112878,99.98000301079897,99.98000301032761,99.98000300987334,99.9800030094358,99.98000300901457,99.98000300860933,99.98000300821965,99.9800030078452,99.98000300748555,99.98000300714037,99.98000300680926,99.98000300649181,99.9800030061877,99.9800030058965,99.98000300561792,99.98000300535146,99.98000300509685,99.98000300485364,99.9800030046215,99.9800030044,99.98000300418882,99.98000300398753,99.98000300379579,99.98000300361322,99.98000300343942,99.98000300327404,99.98000300311666,99.98000300296694,99.98000300282449,99.98000300268895,99.9800030025599,99.98000300243699,99.98000300231985,99.9800030022081,99.98000300210134,99.9800030019992,99.98000300190132,99.98000300180729,99.98000300171678,99.98000300162938,99.98000300154472,99.9800030014624,99.98000300138207,99.98000300130336,99.98000300122585,99.98000300114923,99.98000300107466,99.98000300100304,99.98000300093425,99.98000300086817,99.98000300080471,99.9800030007438,99.98000300068534,99.98000300062922,99.98000300057535,99.98000300052362,99.98000300047394,99.98000300042624,99.98000300038036]},{\"name\":\"Exposed\",\"line\":{\"color\":\"#EF553B\"},\"error_y\":{\"array\":[0.0,0.00021390759903943714,0.0003708436325474581,0.0004882807465777466,0.0005782737702992874,0.0006490779823701821,0.0007062997822011667,0.0007537142973096156,0.0007938438557885945,0.0008283640680452389,0.0008583858387336018,0.0008846487477979164,0.0009076518322258521,0.000927740754464676,0.0009451650329077426,0.0009601150092367459,0.0009727453013286029,0.0009831893609696788,0.0009915682728642583,0.0009979958746737325,0.0010025815771180814,0.0010054317787017964,0.0010066504494871667,0.0010063392488173417,0.0010045974009164702,0.0010015214642201998,0.0009972050814611403,0.0009917387381854202,0.0009852095685563243,0.0009777012056021337,0.0009692936798599669,0.0009600633659469115,0.000950082969789267,0.0009394215434288167,0.0009281445347195646,0.0009163138569972135,0.0009039879747902501,0.0008912220055446328,0.0008780678308691876,0.0008645742131125927,0.0008507869157787852,0.0008367488289654353,0.0008225000937168101,0.0008080782257168217,0.0007935182388727019,0.000778852765924285,0.0007641121761585708,0.0007493246897388282,0.0007345164887530596,0.0007197118247409291,0.0007049331218795396,0.0006902010762302902,0.0006755347513895514,0.0006609516698130701,0.000646467900047983,0.0006320981402066669,0.0006178557977983405,0.0006037530657971053,0.0005898009948967792,0.0005760095622917455,0.000562387737431047,0.000548943544227753,0.0005356841202513789,0.0005226157726813497,0.000509744031454702,0.0004970736998130778,0.00048460890227080563,0.00047235312997584867,0.0004603092834837374,0.000448479713111314,0.0004368662572822643,0.00042547027909844743,0.0004142927005097537,0.00040333403472552534,0.000392594416145396,0.0003820736290918139,0.0003717711351988493,0.00036168609922513045,0.000351817413224309,0.0003421637191330039,0.00033272342992175086,0.00032349474949843214,0.0003144756915517598,0.00030566409747904137,0.00029705765306096244,0.00028865390412680857,0.00028045027166520575,0.00027244406371309507,0.0002646324879610893,0.0002570126644936999,0.00024958163775713375,0.00024233638735483018,0.00023527383765105592,0.00022839086641254598,0.00022168431283393772,0.00021515098527285253,0.0002087876688616784,0.00020259113286336678,0.00019655813719769458,0.00019068543682648404,0.00018496978838417765,0.00017940795727001727,0.0001739967177322462,0.0001687328559444349,0.00016361317512192765,0.00015863450083619877,0.00015379368548588157,0.00014908761153674635,0.00014451319363646662,0.0001400673800320349,0.0001357471538572099,0.00013154953480575,0.00012747158145404684,0.00012351039403849708,0.00011966311681833609,0.00011592693842283315,0.00011229907792493634,0.00010877674620527052,0.00010535722048638426,0.00010203789667185464,9.881626773105674e-5,9.568987837496509e-5,9.265628807637958e-5,8.971305671360598e-5,8.685775380162388e-5,8.408798346463408e-5,8.140141270460576e-5,7.87957898548683e-5,7.626894334156324e-5,7.381875805385924e-5,7.1443137635271e-5,6.913997570070514e-5,6.690717748940776e-5,6.474280871803598e-5,6.264412880632633e-5,6.060673764177124e-5,5.862788206267968e-5,5.670736805730856e-5,5.4846345146049466e-5,5.304568269441674e-5,5.130491614530323e-5,4.9622054489522466e-5,4.7994101919087666e-5,4.641795620645095e-5,4.489127614976228e-5,4.341290937064875e-5,4.198260181072271e-5,4.06000090011082e-5,3.9263444732908825e-5,3.796934113982865e-5,3.6714230319750896e-5,3.5498246469225256e-5,3.429995535018563e-5,3.309502886244071e-5,3.1891458704718974e-5,3.0720254298167895e-5,2.960885189142376e-5,2.8566396674336764e-5,2.7586554024712642e-5,2.6656398611409336e-5,2.5763240130364002e-5,2.489953525424164e-5,2.406585981551095e-5,2.326935228920362e-5,2.251749326677623e-5,2.1808803785356262e-5,2.112459629624045e-5,2.0448805407491095e-5,1.978431187707916e-5,1.9038486978714613e-5,1.8189200297579505e-5,1.7388265554213402e-5,1.6781026789475986e-5,1.6334921597870538e-5,1.5916462700008958e-5,1.5450364739846293e-5,1.4948663714152546e-5,1.4443715525530131e-5,1.3936021819589455e-5,1.3396857391718431e-5,1.2826457699247784e-5,1.2299495756413054e-5,1.1868851220348723e-5,1.149978070661792e-5,1.1138944367298168e-5,1.0678857098057543e-5,1.0250199240953333e-5,1.016143170031298e-5,1.0393329474420527e-5,1.060474326651156e-5,1.0575759994992182e-5,1.0340218416428348e-5,1.0010787744791695e-5,9.607967666759279e-6,9.04739060513869e-6,8.30292333583274e-6,7.570756389872398e-6,7.062089294565602e-6,6.722082933412646e-6,6.5019242466420845e-6,6.370468655967873e-6,6.2978794209018595e-6,6.258271306996536e-6,6.230943103923791e-6,6.200453139270689e-6,6.156038289087885e-6,6.090795465984104e-6,6.000870792912796e-6,5.884761887911584e-6,5.742757969350278e-6,5.5765056883929845e-6,5.388676164205704e-6,5.182707300931096e-6,4.962597945652697e-6,4.732733570391924e-6,4.497725834420195e-6,4.262250692558689e-6,4.030872556578217e-6,3.807846983974869e-6,3.596903530852183e-6,3.401025542019111e-6,3.22226465768322e-6,3.0616507812658048e-6,2.9192750307833255e-6,2.7946246699391795e-6,2.6857291526881336e-6,2.582936826183393e-6,2.484394007429529e-6,2.3899343637840578e-6,2.2993958943240287e-6,2.212621170900159e-6,2.129457541264103e-6,2.04975728705719e-6,1.9733777296517457e-6,1.900181277235336e-6,1.8300354071413817e-6,1.762812578273882e-6,1.6983900695669662e-6,1.6366497417790876e-6,1.5774777215635195e-6,1.5207640086958513e-6,1.4664020095849995e-6,1.4142880027488375e-6,1.3643205447890753e-6,1.316399828527474e-6,1.2704270083233695e-6,1.2263035111182743e-6,1.183930355367987e-6,1.1432075036389861e-6,1.1040332781836602e-6,1.0663038722190877e-6,1.029912992932347e-6,9.947516755464418e-7,9.607083113931696e-7,9.276689373698866e-7,8.955178402297722e-7,8.641385380935477e-7,8.334953966889464e-7,8.03808050416195e-7,7.750804812470416e-7,7.472919556048922e-7,7.204217559486829e-7,6.94449181492134e-7,6.693535488732128e-7,6.451141927586693e-7,6.217104663671556e-7,5.99121741893201e-7,5.773274108132999e-7,5.563068840546224e-7,5.360395920064881e-7,5.165049843548576e-7,4.976825297207718e-7,4.795517150850635e-7,4.620920449838421e-7,4.452830404623664e-7,4.2910423777904094e-7,4.135351868565003e-7,3.985554494831537e-7,3.8414459727617366e-7,3.702822094257491e-7,3.5694787025045603e-7,3.4412116660475456e-7,3.317816851918145e-7,3.199090098479699e-7,3.084827188789783e-7,2.974823825427894e-7,2.8688756078862445e-7,2.7667780137785645e-7,2.668326385286021e-7,2.573315922434763e-7,2.481541684993075e-7,2.3927986049990527e-7,2.3068815121994113e-7,2.223585175022227e-7,2.142738327300988e-7,2.0644518987326788e-7,1.9887207547875905e-7,1.9154921043623593e-7,1.8447131573485255e-7,1.776331124728595e-7,1.7102932186756292e-7,1.646546652655677e-7,1.5850386415321046e-7,1.525716401670719e-7,1.468527151044333e-7,1.413418109335212e-7,1.3603364980335726e-7,1.3092295405300952e-7,1.260044462200153e-7,1.212728490477261e-7,1.1672288549130563e-7,1.1234927872209826e-7,1.081467521300767e-7,1.0411002932407732e-7,1.0023383412954015e-7,9.651289058349079e-8,9.294192292653322e-8,8.951565559167074e-8,8.6228813189833e-8,8.30761204920657e-8,8.005230240843408e-8,7.715208396379979e-8,7.437019027075554e-8,7.170134650013621e-8,6.914027784967126e-8,6.668170951149297e-8,6.432036663936902e-8,6.205097431667985e-8,5.98682575263101e-8,5.7766941123765835e-8,5.574174981496929e-8,5.378740814031849e-8,5.189864046674463e-8,5.0070170989662376e-8,4.8296723746913964e-8,4.657302264708203e-8,4.489379151493856e-8,4.325408276339845e-8,4.166087518383367e-8,4.01182517715462e-8,3.8625245215418715e-8,3.718088820497904e-8,3.5784213430513664e-8,3.4434253583191634e-8,3.313004135519895e-8,3.1870609439883604e-8,3.065499053191117e-8,2.9482217327430474e-8,2.8351322524249e-8,2.7261338822016805e-8,2.6211298922418024e-8,2.5200235529367987e-8,2.4227181349214072e-8,2.329116909093758e-8,2.2391231466353477e-8,2.1526401190304437e-8,2.069571098084487e-8,1.989819355941013e-8,1.913288165096575e-8,1.8398807984130844e-8,1.7695005291269652e-8,1.7020506308545038e-8,1.6374343775927455e-8,1.575555043715347e-8,1.516315903962799e-8,1.4596202334265385e-8,1.405371307526559e-8,1.3534724019822692e-8,1.3038267927765192e-8,1.2563377561129408e-8,1.2109085683669445e-8,1.1674425060310075e-8,1.1258428456551362e-8,1.0860128637836794e-8,1.0478558368899312e-8,1.011275041310225e-8,9.761737531794559e-9,9.42455248370161e-9,9.1002280243745e-9,8.787796905722004e-9,8.486291875650115e-9,8.194745677834797e-9,7.912191051654299e-9,7.63766073230843e-9,7.3701874511542215e-9,7.108803936291052e-9,6.852542913434641e-9,6.600479482327215e-9,6.355431823178446e-9,6.119370593216901e-9,5.892015091977383e-9,5.673084622567785e-9,5.462298491247953e-9,5.259376006982269e-9,5.064036480978969e-9,4.87599922623313e-9,4.6949835570943564e-9,4.520708788885069e-9,4.3528942376005415e-9,4.191259219727753e-9,4.035523052226714e-9],\"thickness\":2,\"color\":\"#EF553B\",\"width\":0,\"type\":\"data\",\"opacity\":0.1},\"mode\":\"lines\",\"x\":[0.0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.5,9.0,9.5,10.0,10.5,11.0,11.5,12.0,12.5,13.0,13.5,14.0,14.5,15.0,15.5,16.0,16.5,17.0,17.5,18.0,18.5,19.0,19.5,20.0,20.5,21.0,21.5,22.0,22.5,23.0,23.5,24.0,24.5,25.0,25.5,26.0,26.5,27.0,27.5,28.0,28.5,29.0,29.5,30.0,30.5,31.0,31.5,32.0,32.5,33.0,33.5,34.0,34.5,35.0,35.5,36.0,36.5,37.0,37.5,38.0,38.5,39.0,39.5,40.0,40.5,41.0,41.5,42.0,42.5,43.0,43.5,44.0,44.5,45.0,45.5,46.0,46.5,47.0,47.5,48.0,48.5,49.0,49.5,50.0,50.5,51.0,51.5,52.0,52.5,53.0,53.5,54.0,54.5,55.0,55.5,56.0,56.5,57.0,57.5,58.0,58.5,59.0,59.5,60.0,60.5,61.0,61.5,62.0,62.5,63.0,63.5,64.0,64.5,65.0,65.5,66.0,66.5,67.0,67.5,68.0,68.5,69.0,69.5,70.0,70.5,71.0,71.5,72.0,72.5,73.0,73.5,74.0,74.5,75.0,75.5,76.0,76.5,77.0,77.5,78.0,78.5,79.0,79.5,80.0,80.5,81.0,81.5,82.0,82.5,83.0,83.5,84.0,84.5,85.0,85.5,86.0,86.5,87.0,87.5,88.0,88.5,89.0,89.5,90.0,90.5,91.0,91.5,92.0,92.5,93.0,93.5,94.0,94.5,95.0,95.5,96.0,96.5,97.0,97.5,98.0,98.5,99.0,99.5,100.0,100.5,101.0,101.5,102.0,102.5,103.0,103.5,104.0,104.5,105.0,105.5,106.0,106.5,107.0,107.5,108.0,108.5,109.0,109.5,110.0,110.5,111.0,111.5,112.0,112.5,113.0,113.5,114.0,114.5,115.0,115.5,116.0,116.5,117.0,117.5,118.0,118.5,119.0,119.5,120.0,120.5,121.0,121.5,122.0,122.5,123.0,123.5,124.0,124.5,125.0,125.5,126.0,126.5,127.0,127.5,128.0,128.5,129.0,129.5,130.0,130.5,131.0,131.5,132.0,132.5,133.0,133.5,134.0,134.5,135.0,135.5,136.0,136.5,137.0,137.5,138.0,138.5,139.0,139.5,140.0,140.5,141.0,141.5,142.0,142.5,143.0,143.5,144.0,144.5,145.0,145.5,146.0,146.5,147.0,147.5,148.0,148.5,149.0,149.5,150.0,150.5,151.0,151.5,152.0,152.5,153.0,153.5,154.0,154.5,155.0,155.5,156.0,156.5,157.0,157.5,158.0,158.5,159.0,159.5,160.0,160.5,161.0,161.5,162.0,162.5,163.0,163.5,164.0,164.5,165.0,165.5,166.0,166.5,167.0,167.5,168.0,168.5,169.0,169.5,170.0,170.5,171.0,171.5,172.0,172.5,173.0,173.5,174.0,174.5,175.0,175.5,176.0,176.5,177.0,177.5,178.0,178.5,179.0,179.5,180.0,180.5,181.0,181.5,182.0,182.5,183.0,183.5,184.0,184.5,185.0,185.5,186.0,186.5,187.0,187.5,188.0,188.5,189.0,189.5,190.0,190.5,191.0,191.5,192.0,192.5,193.0,193.5,194.0,194.5,195.0,195.5,196.0,196.5,197.0,197.5,198.0,198.5,199.0,199.5,200.0],\"opacity\":0.8,\"y\":[0.01,0.009102251951416096,0.00837370948130583,0.007772080490839352,0.00726622493011616,0.00683318964012718,0.006456032541215556,0.006122226010151944,0.005822485239148281,0.005549908419317752,0.00529934573377197,0.00506693623116483,0.0048497678840743914,0.00464562804468825,0.004452820219298967,0.004270029517215761,0.004096223807248587,0.003930581096656762,0.0037724361296197807,0.0036212411121684784,0.0034765367924891924,0.0033379311559067655,0.003205083695698635,0.003077693791647007,0.0029554920959743605,0.0028382341396277428,0.0027256955550160446,0.0026176685088448444,0.0025139590061639913,0.0024143848479209764,0.0023187740698577836,0.002226963730379202,0.0021387989566276134,0.0020541322025003895,0.0019728226348458915,0.001894735634114298,0.0018197423814323194,0.0017477195023284542,0.0016785487545739088,0.0016121167592763296,0.0015483147644068697,0.0014870384193205904,0.0014281875751457095,0.0013716661018218224,0.001317381712937763,0.0012652458020229623,0.0012151732880681012,0.0011670824731241953,0.0011208949054474179,0.001076535244516911,0.0010339311366230973,0.0009930130974808021,0.0009537143951860564,0.0009159709408874848,0.0008797211828138237,0.000844906005826233,0.000811468635561058,0.0007793545456852397,0.0007485113676983399,0.0007188888050390392,0.0006904385528272403,0.0006631142178059738,0.0006368712427771997,0.0006116668335538338,0.0005874598891729638,0.0005642109351700327,0.0005418820594804786,0.0005204368506482167,0.0004998403382018433,0.00048005893530946324,0.0004610603841416355,0.0004428137038745185,0.0004252891398693977,0.00040845811522460503,0.0003922931833111178,0.00037676798311099324,0.0003618571967468707,0.00034753650857402595,0.0003337825655808104,0.0003205729390990987,0.00030788608796357783,0.0002957013232787263,0.00028399877485089003,0.00027275935912857065,0.00026196474786284034,0.00025159733877033074,0.00024164022731546224,0.00023207717616625465,0.00022289258867168253,0.0002140714848890901,0.0002055994784686044,0.00019746275365149237,0.00018964804233059877,0.0001821426015536071,0.0001749341920233291,0.00016801105806451685,0.0001613619091828121,0.00015497590273831342,0.000148842626395614,0.00014295207815650515,0.00013729465934348418,0.00013186115898409183,0.00012664271821425236,0.0001216308146292933,0.0001168172574582971,0.00011219418372901798,0.00010775405047989946,0.00010348962182945252,9.939395233130941e-5,9.546036952582137e-5,9.168245894581793e-5,8.80540540456505e-5,8.45692315978544e-5,8.122231004254019e-5,7.800784407801133e-5,7.492060249595031e-5,7.195555533670021e-5,6.910805196135871e-5,6.63736250858024e-5,6.374777685649685e-5,6.122601069875417e-5,5.880395638959434e-5,5.6477484271005066e-5,5.4242757657407164e-5,5.209621346506511e-5,5.003448990091176e-5,4.8054336693909384e-5,4.6152547833645664e-5,4.432594909814542e-5,4.2571452806060553e-5,4.088616021817968e-5,3.926744783658227e-5,3.771291751334244e-5,3.622000575148855e-5,3.478702607521258e-5,3.3414713667277824e-5,3.210220732237927e-5,3.0845719911260556e-5,2.9639801325889553e-5,2.8479222489159298e-5,2.7360345753194706e-5,2.6281521796100395e-5,2.524255713898201e-5,2.424362964327473e-5,2.328419181288086e-5,2.236239341623491e-5,2.147537586039278e-5,2.0620440892255148e-5,1.9796575571519257e-5,1.9005124055351666e-5,1.824750992939123e-5,1.752071468626133e-5,1.683792671483478e-5,1.6217296161082675e-5,1.5656231929760838e-5,1.5133715108577664e-5,1.4624050476323031e-5,1.4109562889245677e-5,1.3586334157065645e-5,1.3062074925355924e-5,1.2548635074630079e-5,1.2053475228311667e-5,1.157465113187231e-5,1.1102501923761876e-5,1.0628282665364314e-5,1.0155440932026939e-5,9.703106790380277e-6,9.283793592085156e-6,8.889865021083148e-6,8.573919083406382e-6,8.373937887046166e-6,8.262638648926446e-6,8.173457536510985e-6,8.044657192732193e-6,7.848723912951346e-6,7.595988103877582e-6,7.31679460487494e-6,7.035567691877108e-6,6.752759113196963e-6,6.446936324901521e-6,6.099162201008687e-6,5.725336890833123e-6,5.379317181731863e-6,5.076407689740805e-6,4.820567302075874e-6,4.677189802350327e-6,4.6563013075749765e-6,4.699713081928493e-6,4.729638277113277e-6,4.6955123843207276e-6,4.591505508738803e-6,4.443208362874222e-6,4.278198009020926e-6,4.101643863972688e-6,3.894799310570244e-6,3.6411394408803405e-6,3.3620509846889296e-6,3.1106869876213737e-6,2.8857230148447582e-6,2.6787307681715005e-6,2.488875818919389e-6,2.3153237384062116e-6,2.1572400979497564e-6,2.0137904688678135e-6,1.8841404224781715e-6,1.7674555300986184e-6,1.6629013630469427e-6,1.5696434926409337e-6,1.4868474901983802e-6,1.4136789270370704e-6,1.3493033744747934e-6,1.2928864038293374e-6,1.2435935864184913e-6,1.2005904935600441e-6,1.1630426965717843e-6,1.1301157667715005e-6,1.1009752754769817e-6,1.0747867940060159e-6,1.0507158936763923e-6,1.0279281458058998e-6,1.0055891217123267e-6,9.828643927134617e-7,9.589195301270939e-7,9.329201052710116e-7,9.040316894630035e-7,8.720340667467948e-7,8.40328107060295e-7,8.095606134010483e-7,7.797154207729666e-7,7.507763641799618e-7,7.227272786259457e-7,6.955519991148305e-7,6.692343606505278e-7,6.437581982369497e-7,6.19107346878008e-7,5.952656415776146e-7,5.722169173396813e-7,5.499450091681204e-7,5.284337520668433e-7,5.076669810397623e-7,4.876285310907891e-7,4.683022372238354e-7,4.496719344428136e-7,4.317214577516351e-7,4.1443464215421224e-7,3.977953226544568e-7,3.817873342562805e-7,3.6639451196359526e-7,3.516006907803132e-7,3.37389705710346e-7,3.2374539175760573e-7,3.1065158392600423e-7,2.9809211721945337e-7,2.860508266418651e-7,2.7451154719715125e-7,2.634581138892238e-7,2.5287436172199464e-7,2.4272992384455626e-7,2.3296017019326965e-7,2.2355151550825251e-7,2.144952909006871e-7,2.057828274817554e-7,1.9740545636263969e-7,1.893545086545221e-7,1.8162131546858483e-7,1.7419720791600998e-7,1.6707351710797963e-7,1.6024157415567608e-7,1.536927101702814e-7,1.4741825626297772e-7,1.4140954354494728e-7,1.3565790312737218e-7,1.3015466612143458e-7,1.2489116363831666e-7,1.1985872678920053e-7,1.1504868668526838e-7,1.1045237443770237e-7,1.0606112115768461e-7,1.0186625795639726e-7,9.785911594502253e-8,9.403102623474252e-8,9.037331993673943e-8,8.687732816219535e-8,8.353438202229251e-8,8.033581262821302e-8,7.727295109113904e-8,7.433712852225271e-8,7.15196760327362e-8,6.88119247337717e-8,6.62052057365413e-8,6.369085015222718e-8,6.12601890920115e-8,5.890455366707642e-8,5.661527498860409e-8,5.438616396901808e-8,5.2230223101166095e-8,5.014952277883765e-8,4.8142439888060516e-8,4.6207351314862383e-8,4.4342633945271035e-8,4.2546664665314214e-8,4.081782036101964e-8,3.9154477918415045e-8,3.7555014223528195e-8,3.601780616238682e-8,3.454123062101867e-8,3.3123664485451475e-8,3.1763484641712975e-8,3.0459067975830904e-8,2.9208791373833018e-8,2.8011031721747062e-8,2.6864165905600764e-8,2.5766570811421873e-8,2.471662332523812e-8,2.3712700333077253e-8,2.2753178720967008e-8,2.183643537493513e-8,2.0960847181009355e-8,2.0124791025217434e-8,1.9326643793587107e-8,1.85647823721461e-8,1.7837583646922165e-8,1.7143424503943046e-8,1.648068182923647e-8,1.5847732508830193e-8,1.5242953428751956e-8,1.4664721475029478e-8,1.4111413533690521e-8,1.3581406490762826e-8,1.3073077232274125e-8,1.2584802644252159e-8,1.2114959612724678e-8,1.1661925023719412e-8,1.1224075763264104e-8,1.0799788717386504e-8,1.0387440772114341e-8,9.985408813475364e-9,9.5921837651983e-9,9.210364468219099e-9,8.84146000882196e-9,8.485212875446275e-9,8.141365556531426e-9,7.809660540516796e-9,7.489840315841771e-9,7.181647370945738e-9,6.8848241942680754e-9,6.59911327424817e-9,6.324257099325412e-9,6.059998157939178e-9,5.806078938528854e-9,5.56224192953383e-9,5.3282296193934846e-9,5.103784496547204e-9,4.888649049434373e-9,4.682565766494378e-9,4.485277136166597e-9,4.296525646890423e-9,4.116053787105236e-9,3.94360404525042e-9,3.778918909765362e-9,3.621740869089443e-9,3.471812411662051e-9,3.3288760259225684e-9,3.19267420031038e-9,3.062949423264871e-9,2.9394441832254253e-9,2.821900968631427e-9,2.710062267922262e-9,2.6036705695373147e-9,2.5024683619159663e-9,2.406198133497606e-9,2.3146023727216143e-9,2.2274235680273783e-9,2.1444042078542816e-9,2.0652867806417087e-9,1.989813774829044e-9,1.9177276788556723e-9,1.8487709811609778e-9,1.782686170184345e-9,1.719215734365158e-9,1.658102162142802e-9,1.5990879419566617e-9,1.5419155622461205e-9,1.4863275114505638e-9,1.432066278009376e-9,1.3788743503619411e-9,1.3264942169476436e-9,1.2746804541076879e-9,1.224254861834032e-9,1.175795815119982e-9,1.1292391432350734e-9,1.0845206754488432e-9,1.0415762410308265e-9,1.0003416692505604e-9,9.607527893775803e-10,9.227454306814232e-10,8.862554224316242e-10,8.512185938977204e-10,8.175707743492476e-10,7.85247793055742e-10,7.541854792867396e-10]},{\"name\":\"Infected\",\"line\":{\"color\":\"#00CC96\"},\"error_y\":{\"array\":[0.0,0.00020041218956511425,0.00032392385279753837,0.0003959846448228829,0.0004340733840229724,0.0004501595411466492,0.00045241076327102265,0.0004463730592035843,0.00043578356086000885,0.0004231286103515674,0.00041002655000824226,0.00039749095036634624,0.00038611310527730325,0.00037619044350193444,0.00036781869317646263,0.0003609593124548141,0.00035548938254628286,0.0003512384034878689,0.000348014876804489,0.00034562475736325365,0.00034388349273457435,0.0003426231510423728,0.00034169595719748917,0.00034097533978864945,0.0003403553715214656,0.0003397492626286576,0.00033908737037116593,0.00033831504846701637,0.000337390518991232,0.00033628288687288457,0.0003349703502817969,0.00033343862365787244,0.00033167957276913446,0.0003296900553927582,0.0003274709345447346,0.0003250262518566269,0.00032236253933069873,0.00031948824471987006,0.00031641325603117796,0.00031314851109648216,0.00030970567797400177,0.00030609689046872085,0.0003023345348544652,0.0002984310776791981,0.0002943989255534534,0.0002902503141233119,0.00028599722050136307,0.0002816512953841581,0.00027722381089347834,0.00027272562122281427,0.00026816713495954634,0.0002635582964817706,0.0002589085739806464,0.0002542269541908032,0.0002495219422181085,0.000244801565170135,0.0002400733787793247,0.00023534447667235235,0.00023062150193913687,0.0002259106602203514,0.0002212177335076149,0.0002165480951077599,0.00021190672511619342,0.00020729822666095644,0.0002027268421201962,0.0001981964690942617,0.00019371067619852636,0.00018927271881322754,0.00018488555484514834,0.00018055186032266485,0.0001762740442612495,0.00017205426258676813,0.00016789443220947017,0.00016379624444297266,0.00015976117916381336,0.00015579051741046565,0.0001518853529404256,0.0001480466033520963,0.00014427502102701273,0.0001405712038962348,0.000136935605878296,0.00013336854677167403,0.00012987022140820148,0.00012644070798456858,0.0001230799763316334,0.00011978789553892097,0.00011656424058607322,0.00011340870281642365,0.00011032089694138208,0.0001073003659142832,0.00010434658549994011,0.00010145896935824666,9.863687472862978e-5,9.587960833996707e-5,9.318643197132003e-5,9.05565671473328e-5,8.798919876317341e-5,8.548347799316836e-5,8.303852564175626e-5,8.065343834055084e-5,7.832728851739897e-5,7.605912423099837e-5,7.384798194032206e-5,7.169289089415908e-5,6.959287228243952e-5,6.754693751909704e-5,6.555408792222824e-5,6.361331647030885e-5,6.172361121801337e-5,5.988395932564678e-5,5.8093350468507494e-5,5.635077862797835e-5,5.4655241907961135e-5,5.300574105308703e-5,5.1401278753438224e-5,4.9840863429184125e-5,4.832353436287534e-5,4.6848409270996626e-5,4.541458623362892e-5,4.402107880903579e-5,4.266684509719507e-5,4.135084791930063e-5,4.007210569198384e-5,3.882971420890313e-5,3.7622835902982554e-5,3.645066600264785e-5,3.531239289941667e-5,3.420717168275975e-5,3.313412533710382e-5,3.2092378156961735e-5,3.1081110131455716e-5,3.009959873832982e-5,2.91471868140504e-5,2.8223062812358603e-5,2.7327760774749988e-5,2.646451141528529e-5,2.5634304168316045e-5,2.483438967881394e-5,2.405963648499134e-5,2.3304791592664775e-5,2.256655733935623e-5,2.1844513651618556e-5,2.114045349292903e-5,2.045664146390491e-5,1.9794057752211312e-5,1.9151550482789696e-5,1.8526379897192553e-5,1.7916132228959328e-5,1.732109254892748e-5,1.674493471427075e-5,1.6190835041656335e-5,1.5655751965514465e-5,1.5173163067698825e-5,1.4794451518205861e-5,1.4547043314278625e-5,1.440763117587235e-5,1.4290317399016602e-5,1.4095453837624836e-5,1.3778302452474567e-5,1.3366791779101817e-5,1.2922061897348833e-5,1.2485154874441476e-5,1.2048204119092589e-5,1.1565179474739754e-5,1.1002545928454369e-5,1.0398246658623295e-5,9.851523478039957e-6,9.400230083707564e-6,9.008500034610988e-6,8.897460944688907e-6,9.421688192001079e-6,1.0823660279444162e-5,1.2678989888509931e-5,1.4207355977354744e-5,1.4960681491479004e-5,1.4993349431509725e-5,1.4635283489891585e-5,1.4160402793606434e-5,1.3569129936873456e-5,1.2618670209770025e-5,1.1120002134419213e-5,9.315165582198977e-6,7.829602276866965e-6,6.773491630360377e-6,6.145843191726567e-6,6.489061240188163e-6,8.172222685926277e-6,1.0804055954432721e-5,1.3297977689510153e-5,1.4861329916977884e-5,1.53839944181414e-5,1.5227761588743601e-5,1.4780762471417981e-5,1.4104912736570993e-5,1.292642043212113e-5,1.1027439065045682e-5,8.758336659511451e-6,6.887536964692045e-6,5.384083071451541e-6,4.165038485729821e-6,3.274578933553146e-6,2.765321670273147e-6,2.634499913890387e-6,2.7706869844123346e-6,3.024485767084523e-6,3.291354252789054e-6,3.5173754946981638e-6,3.678959282696979e-6,3.7681314012217895e-6,3.784928953781944e-6,3.7336943502619724e-6,3.621242286526423e-6,3.455929477141906e-6,3.2471820403972983e-6,3.0052734030966605e-6,2.741251478364785e-6,2.466953600214277e-6,2.195036779276089e-6,1.9388696146040767e-6,1.7119429889523763e-6,1.5262074137956549e-6,1.3888710801972779e-6,1.2985661770818568e-6,1.2439396231045564e-6,1.2071581723894051e-6,1.1720946845209426e-6,1.1383497787558432e-6,1.1064983776766242e-6,1.0761642923448127e-6,1.0470151525110033e-6,1.0187630180190684e-6,9.91163856491037e-7,9.640161168442515e-7,9.371586248143619e-7,9.104680049833534e-7,8.838558016695613e-7,8.572654347095901e-7,8.30669090086183e-7,8.040646122712279e-7,7.774724364797456e-7,7.509325753104828e-7,7.24501655556301e-7,6.982499872560735e-7,6.72258638431227e-7,6.466164858541818e-7,6.214172155549353e-7,5.967562580142575e-7,5.727276639566996e-7,5.494209593192346e-7,5.269180639426439e-7,5.052904183324109e-7,4.845965350404704e-7,4.648802717336235e-7,4.461702048529722e-7,4.284805567244977e-7,4.118141852325912e-7,3.9616817507022245e-7,3.814425448537967e-7,3.672705659406852e-7,3.536059580284653e-7,3.4043539442651075e-7,3.277456359156461e-7,3.1552353666258424e-7,3.0375604989053145e-7,2.9243023318996517e-7,2.8153325334224816e-7,2.710523905186267e-7,2.609750417088581e-7,2.5128872322790464e-7,2.4198107214654715e-7,2.330398464932107e-7,2.244529240805724e-7,2.1620829982246605e-7,2.0829408142499682e-7,2.0069848336133845e-7,1.9340981907298778e-7,1.8641649138167972e-7,1.797069811458638e-7,1.7326983425344917e-7,1.670936471079204e-7,1.6116705083703317e-7,1.5547869453084877e-7,1.5001722789727843e-7,1.4477128380677494e-7,1.397294612814729e-7,1.348803095662959e-7,1.3021231399922568e-7,1.2571388447501106e-7,1.2137334737260365e-7,1.1717894189539518e-7,1.1311882186193093e-7,1.0918106409451307e-7,1.0535368470104831e-7,1.0162466475637104e-7,9.79856423168192e-8,9.445633106508277e-8,9.1039914110559e-8,8.77340935315014e-8,8.453657202440502e-8,8.144505295634554e-8,7.845724041868734e-8,7.557083928170912e-8,7.278355524959751e-8,7.009309491515277e-8,6.749716581343854e-8,6.499347647349058e-8,6.257973646708004e-8,6.025365645340988e-8,5.8012948218511764e-8,5.585532470800966e-8,5.37785000518336e-8,5.1780189579407887e-8,4.985810982381023e-8,4.800997851341108e-8,4.623351454956427e-8,4.4526437969038105e-8,4.288646989006061e-8,4.131133244110955e-8,3.979874867191289e-8,3.834644244654237e-8,3.695213831898301e-8,3.561356139214165e-8,3.432843716191233e-8,3.309449134863715e-8,3.1909449719074054e-8,3.0771037902792795e-8,2.9676981207751456e-8,2.8625004440639726e-8,2.7612831738399598e-8,2.6638186418139842e-8,2.5698790853450463e-8,2.4792366385912743e-8,2.3916633281426485e-8,2.3069310741904236e-8,2.2248116984013897e-8,2.145076939813927e-8,2.067498480279421e-8,1.991860683937017e-8,1.91841298499036e-8,1.847303920515383e-8,1.7784886188762414e-8,1.7119222088557464e-8,1.6475598197326588e-8,1.585356581366189e-8,1.5252676242878717e-8,1.4672480798008953e-8,1.411253080086813e-8,1.3572377583194552e-8,1.3051572487856341e-8,1.2549666870120586e-8,1.2066212098976065e-8,1.1600759558498306e-8,1.115286064924267e-8,1.0722066789647628e-8,1.030792941742689e-8,9.909999990925083e-9,9.52782999040792e-9,9.160970919253905e-9,8.808974305011111e-9,8.471391700279423e-9,8.147774683376205e-9,7.837674858741863e-9,7.54064385704149e-9,7.25623333492004e-9,6.983994974371429e-9,6.723480481687065e-9,6.47424158595649e-9,6.235830037102387e-9,6.0077976034440665e-9,5.789696068797712e-9,5.581077229137613e-9,5.3814928888602845e-9,5.190494856712039e-9,5.0076349414594995e-9,4.832464947401364e-9,4.66453666983706e-9,4.5034018906238744e-9,4.348612373967252e-9,4.199719862599557e-9,4.0562760745102205e-9,3.917832700395371e-9,3.783941401998766e-9,3.654153811519489e-9,3.5280215322681114e-9,3.405096140765081e-9,3.2849291904979206e-9,3.167072217594053e-9,3.0510962134250727e-9,2.938293566713011e-9,2.829573864232843e-9,2.7248138381950675e-9,2.623890239656779e-9,2.5266798359297096e-9,2.4330594078495615e-9,2.3429057469845085e-9,2.256095652882531e-9,2.172505930481794e-9,2.0920133878356775e-9,2.0144948343345695e-9,1.9398270796404892e-9,1.8678869335884018e-9],\"thickness\":2,\"color\":\"#00CC96\",\"width\":0,\"type\":\"data\",\"opacity\":0.1},\"mode\":\"lines\",\"x\":[0.0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.5,9.0,9.5,10.0,10.5,11.0,11.5,12.0,12.5,13.0,13.5,14.0,14.5,15.0,15.5,16.0,16.5,17.0,17.5,18.0,18.5,19.0,19.5,20.0,20.5,21.0,21.5,22.0,22.5,23.0,23.5,24.0,24.5,25.0,25.5,26.0,26.5,27.0,27.5,28.0,28.5,29.0,29.5,30.0,30.5,31.0,31.5,32.0,32.5,33.0,33.5,34.0,34.5,35.0,35.5,36.0,36.5,37.0,37.5,38.0,38.5,39.0,39.5,40.0,40.5,41.0,41.5,42.0,42.5,43.0,43.5,44.0,44.5,45.0,45.5,46.0,46.5,47.0,47.5,48.0,48.5,49.0,49.5,50.0,50.5,51.0,51.5,52.0,52.5,53.0,53.5,54.0,54.5,55.0,55.5,56.0,56.5,57.0,57.5,58.0,58.5,59.0,59.5,60.0,60.5,61.0,61.5,62.0,62.5,63.0,63.5,64.0,64.5,65.0,65.5,66.0,66.5,67.0,67.5,68.0,68.5,69.0,69.5,70.0,70.5,71.0,71.5,72.0,72.5,73.0,73.5,74.0,74.5,75.0,75.5,76.0,76.5,77.0,77.5,78.0,78.5,79.0,79.5,80.0,80.5,81.0,81.5,82.0,82.5,83.0,83.5,84.0,84.5,85.0,85.5,86.0,86.5,87.0,87.5,88.0,88.5,89.0,89.5,90.0,90.5,91.0,91.5,92.0,92.5,93.0,93.5,94.0,94.5,95.0,95.5,96.0,96.5,97.0,97.5,98.0,98.5,99.0,99.5,100.0,100.5,101.0,101.5,102.0,102.5,103.0,103.5,104.0,104.5,105.0,105.5,106.0,106.5,107.0,107.5,108.0,108.5,109.0,109.5,110.0,110.5,111.0,111.5,112.0,112.5,113.0,113.5,114.0,114.5,115.0,115.5,116.0,116.5,117.0,117.5,118.0,118.5,119.0,119.5,120.0,120.5,121.0,121.5,122.0,122.5,123.0,123.5,124.0,124.5,125.0,125.5,126.0,126.5,127.0,127.5,128.0,128.5,129.0,129.5,130.0,130.5,131.0,131.5,132.0,132.5,133.0,133.5,134.0,134.5,135.0,135.5,136.0,136.5,137.0,137.5,138.0,138.5,139.0,139.5,140.0,140.5,141.0,141.5,142.0,142.5,143.0,143.5,144.0,144.5,145.0,145.5,146.0,146.5,147.0,147.5,148.0,148.5,149.0,149.5,150.0,150.5,151.0,151.5,152.0,152.5,153.0,153.5,154.0,154.5,155.0,155.5,156.0,156.5,157.0,157.5,158.0,158.5,159.0,159.5,160.0,160.5,161.0,161.5,162.0,162.5,163.0,163.5,164.0,164.5,165.0,165.5,166.0,166.5,167.0,167.5,168.0,168.5,169.0,169.5,170.0,170.5,171.0,171.5,172.0,172.5,173.0,173.5,174.0,174.5,175.0,175.5,176.0,176.5,177.0,177.5,178.0,178.5,179.0,179.5,180.0,180.5,181.0,181.5,182.0,182.5,183.0,183.5,184.0,184.5,185.0,185.5,186.0,186.5,187.0,187.5,188.0,188.5,189.0,189.5,190.0,190.5,191.0,191.5,192.0,192.5,193.0,193.5,194.0,194.5,195.0,195.5,196.0,196.5,197.0,197.5,198.0,198.5,199.0,199.5,200.0],\"opacity\":0.8,\"y\":[0.0,0.0008419950041259675,0.0014264667912364914,0.001823306460250283,0.002083742484134576,0.0022453122184649746,0.0023355095292915034,0.002374461060467946,0.0023768897913933225,0.002353555675585059,0.0023123125897188904,0.0022588837789948375,0.0021974307573779705,0.0021309706494231553,0.0020616823541654947,0.0019911311208364985,0.001920433281431864,0.0018503770460451463,0.0017815111040517862,0.001714209571262707,0.001648719606104491,0.001585196289899401,0.0015237281892714108,0.0014643560615368346,0.0014070865473000437,0.0013519021689258873,0.001298768646621702,0.0012476402124684926,0.0011984634897011846,0.0011511803013254346,0.0011057296958074498,0.0010620494108970842,0.0010200769268820004,0.000979750185978964,0.0009410081174996982,0.0009037909909883735,0.0008680406435545287,0.0008337006305854456,0.0008007163201322651,0.0007690349317198461,0.000738605537057697,0.0007093790579658135,0.0006813082359430003,0.0006543475882751647,0.0006284533648982871,0.0006035834994025591,0.0005796975573417796,0.0005567566765770823,0.000534723510124677,0.0005135621772009406,0.0004932382074283498,0.00047371848371914176,0.00045497119462954044,0.000436965783423773,0.00041967290077709295,0.0004030643571139278,0.0003871130757964117,0.00037179304930380326,0.0003570792990272751,0.00034294783542039033,0.0003293756159725767,0.00031634050983577253,0.00030382126162442104,0.0002917974574415028,0.00028024949162630303,0.000269158534314305,0.00025850650030110147,0.00024827601952235267,0.00023845040916637387,0.00022901364702485196,0.00021995034516171129,0.00021124572382062975,0.00020288558784203783,0.00019485630340783106,0.00018714477726939778,0.00017973843524839487,0.0001726252008773856,0.00016579347508264655,0.00015923211719064256,0.00015293042711675672,0.0001468781283698234,0.00014106535147952502,0.000135482617623724,0.00013012082260343874,0.00012497122236587168,0.00012002541782971876,0.00011527534037675798,0.00011071324368952214,0.00010633169119728877,0.00010212354150329611,9.808193454178185e-5,9.420027962479184e-5,9.047224538353284e-5,8.68917508874589e-5,8.345295693601902e-5,8.015025666351668e-5,7.697826517636273e-5,7.393180895410635e-5,7.100591719211805e-5,6.819581870423119e-5,6.54969185580705e-5,6.29047905227647e-5,6.041520435884546e-5,5.802412093762246e-5,5.572767044050257e-5,5.352213007980893e-5,5.140390958491768e-5,4.9369546404200255e-5,4.7415708184296076e-5,4.5539197603723226e-5,4.373695405761854e-5,4.200604801475237e-5,4.034366709638413e-5,3.874709805990146e-5,3.721371590710635e-5,3.574100188236671e-5,3.4326546596165644e-5,3.296773367017081e-5,3.166205143833019e-5,3.0407435442617563e-5,2.9202199345442262e-5,2.8044810098301884e-5,2.6933681920497362e-5,2.5867074515384753e-5,2.4843112227911804e-5,2.3859892526021683e-5,2.2915624269960568e-5,2.2008728717601517e-5,2.1137849100488425e-5,2.0301747894505157e-5,1.9499124601217853e-5,1.872846094959568e-5,1.7988094926131698e-5,1.727686681472453e-5,1.6592361937214242e-5,1.5928311297155077e-5,1.52813228066752e-5,1.4653103419802092e-5,1.4048333228437306e-5,1.3471498151108844e-5,1.2924584386265958e-5,1.2406405989150718e-5,1.1913491556127434e-5,1.1441897062757345e-5,1.0989039401901849e-5,1.0554659105666083e-5,1.0140321110157435e-5,9.747449234676307e-6,9.374763297283937e-6,9.017147476442405e-6,8.669465961486722e-6,8.334142387562138e-6,7.986521117986704e-6,7.59372451192383e-6,7.157760428458319e-6,6.711638121655816e-6,6.296299261676119e-6,5.9393188497220025e-6,5.6452794142703255e-6,5.39933724443107e-6,5.179781533414519e-6,4.9723361709509075e-6,4.778569538113612e-6,4.613060021327364e-6,4.488914074417851e-6,4.3988495183559076e-6,4.309339377894136e-6,4.198011846592982e-6,4.07634677236904e-6,3.854845921784933e-6,3.4685767134916927e-6,2.962123465238727e-6,2.4460029368165796e-6,2.022681205906267e-6,1.7372641927225951e-6,1.5714233853093236e-6,1.4732998162817356e-6,1.4010031037267426e-6,1.3528883938453833e-6,1.36405233078192e-6,1.4654397298841453e-6,1.6295954444778335e-6,1.765430992921003e-6,1.8465510829874946e-6,1.8656192383175375e-6,1.71228215543397e-6,1.3690808492195302e-6,9.329981142440775e-7,5.339129532863221e-7,2.5606794884660415e-7,1.0869510206604957e-7,4.834644411807125e-8,2.8263082882436575e-8,3.929028255863881e-8,1.1240668582288325e-7,2.74882877153423e-7,4.904181521368115e-7,6.694221667351823e-7,8.133070540500332e-7,9.357949985684526e-7,1.038054719923686e-6,1.1212549377489794e-6,1.1865643716775777e-6,1.235151741342727e-6,1.2681857663776721e-6,1.2868351664156592e-6,1.2922686610899333e-6,1.2856549700337409e-6,1.2681628128803268e-6,1.240960909262936e-6,1.2052179788148151e-6,1.1621027411692092e-6,1.1127839159593637e-6,1.0584302228185244e-6,1.0002103813799367e-6,9.392931112768462e-7,8.768471321424981e-7,8.140411636101386e-7,7.520439253130125e-7,6.920241368843658e-7,6.351505179574439e-7,5.825917881654926e-7,5.355166671417569e-7,4.950938745194828e-7,4.6249212993191555e-7,4.378841499987353e-7,4.15613050668933e-7,3.9455582482044225e-7,3.7466965259588817e-7,3.559117141378968e-7,3.3823918958909343e-7,3.2160925909210397e-7,3.0597910278955373e-7,2.913059008240684e-7,2.775468333382736e-7,2.646590804747949e-7,2.525998223762578e-7,2.41326239185288e-7,2.307955110445111e-7,2.2096481809655265e-7,2.117913404840383e-7,2.0323225834959346e-7,1.9524475183584393e-7,1.877860010854152e-7,1.808131862409329e-7,1.7428348744502255e-7,1.681540848403098e-7,1.6238215856942025e-7,1.5692488877497943e-7,1.51739455599613e-7,1.4678303918594656e-7,1.420128196766056e-7,1.3738597721421583e-7,1.3285969194140272e-7,1.2839114400079197e-7,1.239375135350091e-7,1.1945598068667975e-7,1.1495288722236244e-7,1.105824019945556e-7,1.0635700107882402e-7,1.0227361168965418e-7,9.832916104153255e-8,9.452057634894552e-8,9.084478482637956e-8,8.729871368832111e-8,8.387929014925664e-8,8.058344142367253e-8,7.740809472605528e-8,7.435017727089128e-8,7.140661627266701e-8,6.857433894586892e-8,6.585027250498343e-8,6.3231344164497e-8,6.071448113889603e-8,5.8296610642667016e-8,5.597465989029635e-8,5.3745556096270537e-8,5.160622647507596e-8,4.955359824119908e-8,4.7584598609126376e-8,4.569615479334423e-8,4.388519400833912e-8,4.214864346859747e-8,4.0483430388605757e-8,3.888648198285039e-8,3.735472546581782e-8,3.5885088051994484e-8,3.447449695586684e-8,3.3119879391921304e-8,3.1818162574644356e-8,3.05662737185224e-8,2.936114003804191e-8,2.8199688747689298e-8,2.7078847061951038e-8,2.5995824809708404e-8,2.4950519460477585e-8,2.3942456838082155e-8,2.297081805097429e-8,2.203478420760616e-8,2.1133536416429928e-8,2.0266255785897785e-8,1.9432123424461892e-8,1.8630320440574428e-8,1.786002794268756e-8,1.7120427039253473e-8,1.641069883872433e-8,1.573002444955231e-8,1.5077584980189585e-8,1.4452561539088332e-8,1.3854135234700718e-8,1.3281487175478924e-8,1.2733798469875118e-8,1.2210250226341474e-8,1.171002355333017e-8,1.1232299559293372e-8,1.0776259352683259e-8,1.034108404195201e-8,9.925954735551787e-9,9.53005254193477e-9,9.152558569553134e-9,8.792653926859044e-9,8.449519722304686e-9,8.122337064342224e-9,7.810287061423837e-9,7.512550822001694e-9,7.228309454527973e-9,6.956744067454846e-9,6.697035769234485e-9,6.4483656683190644e-9,6.209914873160759e-9,5.980864492211743e-9,5.760395633924188e-9,5.5476894067502675e-9,5.341926919142156e-9,5.1422892795520285e-9,4.9479575964320545e-9,4.758112978234412e-9,4.571999182043541e-9,4.39110438075914e-9,4.2162842366771635e-9,4.047418328119735e-9,3.884386233408975e-9,3.727067530867003e-9,3.5753417988159442e-9,3.4290886155779196e-9,3.2881875594750483e-9,3.152518208829455e-9,3.021960141963259e-9,2.896392937198585e-9,2.775696172857551e-9,2.6597494272622813e-9,2.5484322787348974e-9,2.441624305597519e-9,2.3392050861722694e-9,2.2410541987812696e-9,2.1470512217466415e-9,2.057075733390507e-9,1.971007312034987e-9,1.8887255360022038e-9,1.81010998361428e-9,1.7350402331933362e-9,1.6633958630614933e-9,1.5950564515408737e-9,1.5299015769535998e-9,1.4678108176217923e-9,1.4086637518675732e-9,1.3523399580130633e-9,1.2987190143803858e-9,1.2476804992916618e-9,1.1991039910690126e-9,1.15286906803456e-9,1.108855308510426e-9,1.0669422908187317e-9,1.0270095932815992e-9,9.8893679422115e-10,9.526034719595058e-10,9.178892048187878e-10,8.846735711211189e-10,8.528361491886193e-10,8.222565173434117e-10,7.928142539076173e-10,7.643889372033579e-10,7.368601455527551e-10,7.101074572779305e-10,6.840104507010057e-10,6.584487041441028e-10,6.333017959293429e-10,6.084550051698741e-10,5.842961878854541e-10,5.610960560804908e-10,5.38821831857908e-10,5.174407373206289e-10,4.969199945715772e-10,4.772268257136765e-10,4.583284528498502e-10,4.401920980830219e-10,4.227849835161151e-10,4.060743312520535e-10,3.900273633937603e-10,3.7461130204415945e-10,3.5979336930617416e-10]},{\"name\":\"Recovered\",\"line\":{\"color\":\"#AB63FA\"},\"error_y\":{\"array\":[0.0,2.8851787330023438e-5,9.948318712045568e-5,0.000193999965342154,0.0003004854101434581,0.00041113126165930324,0.0005209413766089827,0.0006268346911121804,0.00072702598234456,0.0008205994863973047,0.0009072161307942158,0.0009869131195930194,0.001059967212215359,0.0011268018252488694,0.0011879241852658826,0.001243883038597316,0.0012952403611234359,0.0013425525801291833,0.0013863582143224893,0.0014271698494973898,0.001465469028799257,0.0015017031112866607,0.001536283476384643,0.0015695846643820248,0.0016019441979222427,0.0016336629215863508,0.0016650057437468263,0.0016962027439381515,0.0017274505663750358,0.0017589140813644532,0.001790728270611454,0.001823000291997753,0.00185581168496544,0.0018892206820248208,0.0019232645589813279,0.0019579619940286275,0.0019933153912873366,0.0020293131249993117,0.0020659316772103087,0.002103137644899344,0.002140889596390491,0.0021791397615339805,0.0022178355553310217,0.0022569209319763337,0.002296337571525066,0.002336025908486653,0.0023759260113045567,0.002415978323951887,0.002456124281452525,0.002496306812126429,0.0025364707397781436,0.002576563097454666,0.0026165333642217802,0.0026563336357659944,0.00269591873868585,0.002735246297295834,0.002774276760606987,0.00281297339632033,0.0028513022579179847,0.0028892321303090134,0.002926734458537138,0.0029637832632723234,0.0030003550461936276,0.0030364286878594056,0.0030719853412159485,0.0031070083223559745,0.003141482999839434,0.0031753966837346783,0.0032087385154321068,0.0032414993592342583,0.0032736716967407013,0.0033052495244011615,0.003336228254270029,0.003366604618172282,0.0033963765741320735,0.0034255432184644554,0.0034541047025082546,0.00348206215309125,0.0035094175964188535,0.0035361738854667642,0.0035623346311441607,0.003587904137481063,0.0036128873408953306,0.0036372897532001907,0.0036611174069781085,0.0036843768060405967,0.003707074878411908,0.003729218925700465,0.003750816581119456,0.003771875773083118,0.0037924046910277932,0.0038124117519953244,0.0038319055678647813,0.003850894913942367,0.0038693886999338688,0.0038873959441385352,0.003904925751030568,0.003921987291242783,0.003938589781338637,0.0039547424591634735,0.003970454585157542,0.003985735425877342,0.004000594198249668,0.004015040054141077,0.004029082086321884,0.00404272933603537,0.004055990792438257,0.0040688753817410914,0.004081391949035055,0.004093549238619431,0.004105355879205544,0.004116820378720089,0.004127951129610626,0.00413875641959936,0.00414924443477661,0.004159423229907673,0.004169300717827759,0.004178885030800707,0.004188184145533039,0.004197205480063527,0.004205955973927645,0.004214442347306185,0.0042226713350253615,0.0042306497977323025,0.00423838469313555,0.004245882945710225,0.004253151284418827,0.004260196125380999,0.004267023560540301,0.004273639474639194,0.0042800497515589645,0.004286260447591021,0.004292277703678702,0.004298107010780137,0.004303755206984542,0.004309233399690595,0.004314549323842913,0.004319704870580004,0.004324698530320132,0.004329528976659885,0.004334197647503412,0.004338709473434721,0.00434307185733539,0.004347292631105123,0.0043513780092065526,0.004355331529883928,0.004359154629659082,0.004362848839734492,0.004366418626542653,0.004369872625706775,0.004373219397726927,0.004376459053542268,0.004379621401715573,0.004382745108375343,0.00438583042536193,0.0043888436131527655,0.0043917422652796825,0.004394498640052817,0.004397110182238949,0.004399595545760233,0.004401980770126676,0.004404283638339817,0.00440650456722635,0.004408629783551856,0.0044106471262665555,0.004412566548695334,0.004414426312697114,0.004416252419408984,0.004418034079724142,0.004419868694785006,0.004421827437796776,0.004423864618096235,0.0044258636650856085,0.0044277158153839665,0.004429373566570432,0.004430857895944128,0.004432226092763492,0.004433524691179916,0.004434756911066851,0.0044358866012264315,0.004436882233680391,0.004437774768402696,0.004438662522784977,0.004439574579527383,0.0044405190993006384,0.0044416125003883785,0.0044428744080219984,0.004444204867856838,0.004445468286909326,0.004446575904548014,0.0044475181108649215,0.004448341544523973,0.004449096634053552,0.004449794097895916,0.004450402334349033,0.004450893806260238,0.004451307814711357,0.004451739034045384,0.004452187287538896,0.004452638823959871,0.0044530927278937414,0.004453548111234649,0.004454004110262174,0.004454459882878544,0.004454914606006397,0.004455367473147125,0.00445581769209975,0.004456264482840365,0.004456707075562032,0.0044571447088750885,0.004457576628167771,0.004458002084127059,0.00445842033141962,0.004458830627532736,0.004459232231775101,0.00445962440443735,0.004460006406112189,0.004460377497174028,0.004460736937417952,0.004461083985857946,0.004461417900684272,0.004461737939379868,0.004462043358995713,0.004462333416585095,0.0044626073697966945,0.004462865458187072,0.00446311357451066,0.004463353007708917,0.004463583972679997,0.004463806684333857,0.00446402135759144,0.004464228207383889,0.004464427448651822,0.0044646192963446255,0.004464803965419821,0.004464981670842442,0.0044651526275844835,0.004465317050624363,0.00446547515494646,0.004465627155540665,0.0044657732674019904,0.004465913705530217,0.004466048684929586,0.004466178420608534,0.004466303127579456,0.004466423020858541,0.004466538315465619,0.004466649226424067,0.0044667559687607515,0.004466858757506022,0.004466957807693729,0.004467053334361308,0.00446714555254988,0.00446723467730442,0.004467320923673942,0.004467404506711752,0.004467485641475724,0.004467564445794967,0.0044676407088964434,0.004467714456854403,0.004467785744677955,0.00446785462738017,0.004467921159977912,0.004467985397491684,0.0044680473949454715,0.004468107207366592,0.004468164889785547,0.004468220497235878,0.004468274084754031,0.004468325707379218,0.004468375420153282,0.004468423278120579,0.004468469336327842,0.004468513649824074,0.004468556273660421,0.004468597262890064,0.0044686366725681164,0.004468674557751507,0.004468710973498893,0.0044687459748705555,0.004468779616928304,0.004468811954735401,0.004468843043356459,0.0044688729378573756,0.004468901693305244,0.0044689293647682884,0.004468956007315789,0.004468981676018018,0.0044690064259461796,0.004469030312172349,0.00446905338976942,0.004469075713811054,0.004469097339371638,0.004469118321526236,0.004469138704463263,0.0044691584443833825,0.00446917753896787,0.00446919600154608,0.004469213845447584,0.004469231084002171,0.004469247730539833,0.004469263798390761,0.004469279300885331,0.004469294251354108,0.004469308663127823,0.00446932254953738,0.004469335923913842,0.004469348799588424,0.004469361189892487,0.004469373108157533,0.004469384567715197,0.004469395581897243,0.004469406164035555,0.004469416327462128,0.004469426085509077,0.004469435451508612,0.004469444438793046,0.004469453060694786,0.0044694613305463265,0.004469469261680248,0.0044694768674292075,0.004469484161125938,0.0044694911561032466,0.004469497865694002,0.00446950430323114,0.00446951048204765,0.004469516415476584,0.004469522116851039,0.004469527599504166,0.004469532876769157,0.004469537961979253,0.004469542868467729,0.0044695476095679,0.004469552198613118,0.004469556648936764,0.004469560973872255,0.004469565186753033,0.004469569300084749,0.004469573296319669,0.004469577165181391,0.0044695809091123044,0.004469584530554802,0.0044695880319512845,0.004469591415744168,0.004469594684375868,0.004469597840288813,0.004469600885925436,0.00446960382372818,0.0044696066561394935,0.00446960938560183,0.004469612014557652,0.004469614545449427,0.004469616980719626,0.004469619322810731,0.0044696215741652215,0.004469623737225588,0.004469625814434325,0.0044696278082339315,0.004469629721066906,0.004469631555375759,0.004469633313603,0.0044696349981911436,0.0044696366115827045,0.004469638156220208,0.004469639634546178,0.004469641049003139,0.004469642402033623,0.004469643696080163,0.004469644933585293,0.004469646116991552,0.004469647248741479,0.004469648331277617,0.0044696493670425075,0.004469650358478698,0.004469651308028735,0.004469652218135167,0.004469653091240546,0.004469653929787423,0.00446965473621835,0.004469655512975883,0.004469656262502575,0.004469656987240983,0.004469657689633666,0.004469658372123181,0.004469659037152087,0.004469659687162944,0.004469660324598313,0.004469660951793411,0.004469661561600617,0.00446966214901559,0.00446966271473628,0.004469663259460637,0.004469663783886607,0.004469664288712147,0.004469664774635202,0.004469665242353724,0.004469665692565663,0.004469666125968972,0.004469666543261603,0.004469666945141504,0.004469667332306628],\"thickness\":2,\"color\":\"#AB63FA\",\"width\":0,\"type\":\"data\",\"opacity\":0.1},\"mode\":\"lines\",\"x\":[0.0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.5,9.0,9.5,10.0,10.5,11.0,11.5,12.0,12.5,13.0,13.5,14.0,14.5,15.0,15.5,16.0,16.5,17.0,17.5,18.0,18.5,19.0,19.5,20.0,20.5,21.0,21.5,22.0,22.5,23.0,23.5,24.0,24.5,25.0,25.5,26.0,26.5,27.0,27.5,28.0,28.5,29.0,29.5,30.0,30.5,31.0,31.5,32.0,32.5,33.0,33.5,34.0,34.5,35.0,35.5,36.0,36.5,37.0,37.5,38.0,38.5,39.0,39.5,40.0,40.5,41.0,41.5,42.0,42.5,43.0,43.5,44.0,44.5,45.0,45.5,46.0,46.5,47.0,47.5,48.0,48.5,49.0,49.5,50.0,50.5,51.0,51.5,52.0,52.5,53.0,53.5,54.0,54.5,55.0,55.5,56.0,56.5,57.0,57.5,58.0,58.5,59.0,59.5,60.0,60.5,61.0,61.5,62.0,62.5,63.0,63.5,64.0,64.5,65.0,65.5,66.0,66.5,67.0,67.5,68.0,68.5,69.0,69.5,70.0,70.5,71.0,71.5,72.0,72.5,73.0,73.5,74.0,74.5,75.0,75.5,76.0,76.5,77.0,77.5,78.0,78.5,79.0,79.5,80.0,80.5,81.0,81.5,82.0,82.5,83.0,83.5,84.0,84.5,85.0,85.5,86.0,86.5,87.0,87.5,88.0,88.5,89.0,89.5,90.0,90.5,91.0,91.5,92.0,92.5,93.0,93.5,94.0,94.5,95.0,95.5,96.0,96.5,97.0,97.5,98.0,98.5,99.0,99.5,100.0,100.5,101.0,101.5,102.0,102.5,103.0,103.5,104.0,104.5,105.0,105.5,106.0,106.5,107.0,107.5,108.0,108.5,109.0,109.5,110.0,110.5,111.0,111.5,112.0,112.5,113.0,113.5,114.0,114.5,115.0,115.5,116.0,116.5,117.0,117.5,118.0,118.5,119.0,119.5,120.0,120.5,121.0,121.5,122.0,122.5,123.0,123.5,124.0,124.5,125.0,125.5,126.0,126.5,127.0,127.5,128.0,128.5,129.0,129.5,130.0,130.5,131.0,131.5,132.0,132.5,133.0,133.5,134.0,134.5,135.0,135.5,136.0,136.5,137.0,137.5,138.0,138.5,139.0,139.5,140.0,140.5,141.0,141.5,142.0,142.5,143.0,143.5,144.0,144.5,145.0,145.5,146.0,146.5,147.0,147.5,148.0,148.5,149.0,149.5,150.0,150.5,151.0,151.5,152.0,152.5,153.0,153.5,154.0,154.5,155.0,155.5,156.0,156.5,157.0,157.5,158.0,158.5,159.0,159.5,160.0,160.5,161.0,161.5,162.0,162.5,163.0,163.5,164.0,164.5,165.0,165.5,166.0,166.5,167.0,167.5,168.0,168.5,169.0,169.5,170.0,170.5,171.0,171.5,172.0,172.5,173.0,173.5,174.0,174.5,175.0,175.5,176.0,176.5,177.0,177.5,178.0,178.5,179.0,179.5,180.0,180.5,181.0,181.5,182.0,182.5,183.0,183.5,184.0,184.5,185.0,185.5,186.0,186.5,187.0,187.5,188.0,188.5,189.0,189.5,190.0,190.5,191.0,191.5,192.0,192.5,193.0,193.5,194.0,194.5,195.0,195.5,196.0,196.5,197.0,197.5,198.0,198.5,199.0,199.5,200.0],\"opacity\":0.8,\"y\":[0.0,0.0001114949083503631,0.0003996070950314659,0.0008091435468487321,0.001299930954283489,0.0018428035135274149,0.0024166595939363674,0.0030063026362304028,0.0036008574411729604,0.0041926086091176274,0.0047761487153121845,0.00534775371592135,0.00590492506381371,0.006446054138832206,0.006970176390591392,0.0074767913044614725,0.0079657306353832,0.008437062068646608,0.008891018827925295,0.009327948336887578,0.009748274830790766,0.010152472209564662,0.010541044374239313,0.010914511061345467,0.01127339768768526,0.011618228142295087,0.011949519710006705,0.012267779578692531,0.012573502473415895,0.012867169124757882,0.013149245340200602,0.01342018150121342,0.013680412364993323,0.013930357109983202,0.014170419513439274,0.01440098824410403,0.014622437233605793,0.014835126087770812,0.015039400522333041,0.015235592823268251,0.015424022318440199,0.015604995832817234,0.01577880814865056,0.01594574245926193,0.01610607080571296,0.016260054502275304,0.016407944548823147,0.016549982034991532,0.016686398528228723,0.016817416441702968,0.016943249394739967,0.01706410256184998,0.01718017300212328,0.01729164997977221,0.017398715270679804,0.017501543458625143,0.017600302220624135,0.017695152600060996,0.017786249267493847,0.017873740772137915,0.017957769786429243,0.01803847333688178,0.018115983027608286,0.018190425254355772,0.018261921410574006,0.018330588085736902,0.01839653725580031,0.01845987646581346,0.01852070900492932,0.018579134074381064,0.01863524694940559,0.018689139135408952,0.01874089851676018,0.018790609500184633,0.018838353151223584,0.01888420732654237,0.01892824680157661,0.018970543392969094,0.01901116607574276,0.019050181095489293,0.019087652076028697,0.019123640123007823,0.019158203923769008,0.01919139984350713,0.01922328201689071,0.019253902437073322,0.019283311041134246,0.01931155578748093,0.01933868273399125,0.01936473611509304,0.019389758415670307,0.0194137904409625,0.01943687138255103,0.019459038881105065,0.01948032908678818,0.01950077671810583,0.019520415119503844,0.019539276317210266,0.019557391071641447,0.01957478892352402,0.019591498254646813,0.01960754633418912,0.01962295933533227,0.01963776237631199,0.0196519795736617,0.01966563409443181,0.01967874820078555,0.019691343285450247,0.01970343990004387,0.019715057780300384,0.019726215872684198,0.01973693236581245,0.019747224727497275,0.019757109744072514,0.01976660355298995,0.019775721651151417,0.019784478914347692,0.019792889873769703,0.01980096848458467,0.019808727868844335,0.019816180389949152,0.019823337852125974,0.019830211684007913,0.019836813037367562,0.019843152787543214,0.019849241461112936,0.019855089138912665,0.01986070538856191,0.019866099270255073,0.019871279432696856,0.01987625427270501,0.019881032072181556,0.019885620949844706,0.01989002835064868,0.019894262475277542,0.019898334389163035,0.019902252597205388,0.01990602125893395,0.019909641914081195,0.019913116048674673,0.019916446964961323,0.01991964033235042,0.019922703479151923,0.019925643936195704,0.019928467963444604,0.019931179779459983,0.019933781971042567,0.01993627708655437,0.01993866971132828,0.01994096738719203,0.01994317753711718,0.019945301350612035,0.019947361757596073,0.019949388207182138,0.019951381865611278,0.01995331875698741,0.019955168394500306,0.01995691098238944,0.019958545192247063,0.019960085287360093,0.019961550985647798,0.019962955915364882,0.019964300828108385,0.01996557589079086,0.01996677238212253,0.019967897969780685,0.019968981441836044,0.019970042511259344,0.01997107349251984,0.01997214817133005,0.01997332043786965,0.01997455569598096,0.019975766057369126,0.019976870080865988,0.019977832589071758,0.01997866957500534,0.019979424058330645,0.01998013096428288,0.019980792678595562,0.01998138187852559,0.019981874553490736,0.01998229380887033,0.019982714093177516,0.019983157583327714,0.019983631033148354,0.019984224343709632,0.019984952377776685,0.01998573756273686,0.019986475735101733,0.019987099552185732,0.01998760221113785,0.019988019419335118,0.01998838953277111,0.019988720520490423,0.01998898792333008,0.01998917025423189,0.01998929733518527,0.019989442026222035,0.019989604151978656,0.0199897731267991,0.019989948282235118,0.01999012894983846,0.019990314461160875,0.019990504147754124,0.019990697341169948,0.019990893372960103,0.01999109157467634,0.019991291277870412,0.01999149181409407,0.01999169251489906,0.019991892711837142,0.019992091736460063,0.01999228892031957,0.019992483594967428,0.019992675091955372,0.019992862742835165,0.019993045879158552,0.01999322383247729,0.019993395934343124,0.019993561516307812,0.019993719909923102,0.019993870446740745,0.01999401245831249,0.019994145276190093,0.019994268231925308,0.01999438142049783,0.019994489353033995,0.019994592981751685,0.019994692424597022,0.019994787799516134,0.019994879224455142,0.019994966817360176,0.019995050696177356,0.019995130978852804,0.019995207783332653,0.01999528122756302,0.019995351429490035,0.01999541850705982,0.019995482578218496,0.0199955437609122,0.019995602173087042,0.019995657932689155,0.019995711157664665,0.01999576196595969,0.019995810475520362,0.019995856804292805,0.019995901070223136,0.019995943391257487,0.01999598388534198,0.01999602267042274,0.019996059864445893,0.019996095585357563,0.019996129951103878,0.019996163079630952,0.01999619508888492,0.019996226096811905,0.01999625622135803,0.019996285510563858,0.0199963137853876,0.019996341048047178,0.019996367322021258,0.01999639263078848,0.019996416997827504,0.01999644044661698,0.01999646300063557,0.01999648468336192,0.01999650551827469,0.01999652552885253,0.019996544738574085,0.019996563170918028,0.019996580849362997,0.019996597797387654,0.019996614038470657,0.019996629596090647,0.01999664449372628,0.019996658754856216,0.019996672402959114,0.019996685461513616,0.01999669795399838,0.01999670990389206,0.019996721334673312,0.019996732269820787,0.019996742732813138,0.01999675274712902,0.019996762336247094,0.019996771523646,0.019996780332804404,0.01999678878720095,0.019996796910314304,0.01999680472562311,0.019996812256606024,0.019996819526741698,0.019996826559508792,0.019996833378385953,0.019996840001328113,0.0199968464025405,0.019996852578831322,0.019996858535083612,0.019996864276180405,0.019996869807004727,0.019996875132439626,0.01999688025736813,0.019996885186673273,0.019996889925238088,0.019996894477945615,0.019996898849678885,0.019996903045320934,0.019996907069754797,0.019996910927863504,0.0199969146245301,0.019996918164637608,0.019996921553069067,0.019996924794707514,0.019996927894435985,0.019996930857137506,0.019996933687695114,0.01999693639099185,0.019996938971910745,0.01999694143533483,0.01999694378614715,0.01999694602923073,0.019996948169468606,0.019996950211743813,0.01999695216093939,0.019996954021938365,0.019996955799623774,0.019996957498878656,0.019996959124586045,0.019996960681628966,0.019996962174890467,0.019996963609253574,0.019996964989601327,0.019996966320816757,0.019996967607782898,0.019996968855382786,0.019996970068499455,0.01999697125201594,0.01999697241046198,0.019996973535665166,0.01999697462289696,0.01999697567291307,0.01999697668646922,0.01999697766432111,0.019996978607224474,0.01999697951593502,0.01999698039120846,0.019996981233800504,0.019996982044466878,0.019996982823963293,0.019996983573045468,0.019996984292469114,0.01999698498298995,0.019996985645363684,0.019996986280346043,0.019996986888692732,0.01999698747115947,0.019996988028501972,0.019996988561475956,0.019996989070837138,0.019996989557341225,0.019996990021743943,0.019996990464801,0.019996990887268112,0.019996991289900998,0.01999699167345537,0.019996992038686948,0.019996992386351442,0.019996992717204568,0.019996993032002048,0.01999699333149959,0.019996993616452907,0.019996993887617727,0.01999699414574975,0.019996994391604704,0.0199969946259383,0.019996994849506244,0.01999699506306427,0.019996995267368076,0.019996995463173385,0.019996995651235912,0.019996995832311376,0.019996996007155484,0.01999699617652396,0.019996996341172513,0.01999699650185686,0.01999699665933272,0.019996996814355805,0.019996996967646258,0.019996997116785254,0.019996997260074957,0.01999699739770923,0.01999699752988192,0.019996997656786898,0.019996997778618016,0.019996997895569135,0.01999699800783411,0.019996998115606807,0.019996998219081075,0.01999699831845078,0.019996998413909776,0.019996998505651925]}],\"layout\":{\"showlegend\":true,\"xaxis\":{\"autorange\":true,\"title\":\"Time (Days)\",\"type\":\"linear\"},\"annotations\":[],\"title\":\"Covid-19 SEIR Model with Error Bars\",\"yaxis\":{\"autorange\":false,\"range\":[0,100],\"title\":\"%\",\"type\":\"linear\"},\"shapes\":[],\"legend\":{}}},\"0.5\":{\"config\":{\"responsive\":true},\"data\":[{\"name\":\"Susceptible\",\"line\":{\"color\":\"#636EFA\"},\"error_y\":{\"array\":[0.0,2.9258438205729475e-5,0.00010283405185330526,0.00020537395898030786,0.000327189888310359,0.0004622460824662791,0.0006068440767204868,0.0007587683058640648,0.0009167347897417514,0.0010800379595509349,0.0012483261929178058,0.001421460383487943,0.0015994257098428802,0.0017822772268178753,0.00197010678982215,0.0021630233142782267,0.0023611412877940392,0.002564574321771818,0.002773431738275341,0.002987816947369084,0.0032078268510998768,0.0034335518141871873,0.003665075927429737,0.0039024774080509365,0.004145829034016772,0.004395198592938969,0.0046506492902933455,0.004912240132916677,0.005180026269916719,0.0054540592965352215,0.005734387530683909,0.0060210562601498525,0.006314107961440254,0.00661358250250902,0.006919517323013129,0.007231947599129211,0.007550906396313555,0.007876424809461312,0.00820853208978148,0.008547255765168692,0.00889262174912481,0.009244654442941518,0.009603376831343545,0.009968810570228302,0.010340976068269215,0.01071989256425973,0.011105578198422134,0.011498050078056779,0.01189732433849357,0.012303416204233225,0.012716340043852171,0.013136109417535662,0.013562737122309002,0.013996235238773231,0.014436615175133317,0.014883887701967285,0.015338062981977537,0.015799150608362445,0.01626715965204349,0.016742098685778296,0.01722397580071149,0.017712798627190558,0.01820857436315525,0.018711309805721086,0.01922101137470588,0.019737685124119525,0.020261336729264043,0.020791971460722293,0.02132959439016639,0.021874210400929923,0.022425824093746875,0.02298443973026639,0.02355006125342392,0.024122692356534737,0.024702336543454734,0.025288997131166977,0.025882677194338136,0.026483379545194082,0.027091106836209775,0.02770586060516783,0.028327642468277694,0.02895645523924904,0.029592302263826486,0.030235186427491473,0.030885109641313416,0.03154207298625032,0.032206077282291766,0.032877123649230726,0.03355521364355412,0.03424034879353485,0.034932529814445945,0.035631756469537625,0.036338029543370176,0.03705134036067399,0.03777167334497875,0.03849903045665782,0.03923342960387534,0.03997489115820785,0.040723426423462085,0.041479033957314615,0.042241703788163804,0.04301142582972399,0.0437881971959252,0.044572023678264634,0.04536291338431991,0.04616086546466597,0.04696586398935691,0.04777789810835096,0.04859692768319035,0.049422653047708265,0.05025491616659275,0.05109390788382588,0.05193999942106569,0.05279350088259155,0.053654513721301006,0.05452292870408264,0.05539853947459972,0.05628119460917592,0.05717089833016516,0.058067791995695894,0.058972005316474285,0.059883458125654716,0.060801820595213184,0.06172701235522258,0.06265823920850953,0.06359189550320288,0.06452701790415712,0.06546653821557055,0.06641476392951402,0.06737463784370613,0.06834648211387036,0.0693285207128483,0.07031853695052585,0.07131556134501821,0.0723205017792524,0.07333512494089327,0.07435977748951612,0.07539169876876124,0.07642776456046708,0.07746878387605162,0.07850027691347179,0.07951226262206493,0.08051509628845167,0.08152887755618558,0.08256860136894568,0.08363673227581643,0.08472559287356696,0.08582589371508648,0.08693489724728612,0.08805810891894486,0.08920204055843643,0.09036250542659459,0.09152308955999286,0.092682000320399,0.09382827725214965,0.09493602064870608,0.09601406527421295,0.09709587698994276,0.09821054401448713,0.09936576877314088,0.10055069731078958,0.10175148529917788,0.10296569969883552,0.10420300015927954,0.1054690664502329,0.10674746137500804,0.10801782721784513,0.10928068059601827,0.11051646256731938,0.1117237635467913,0.11292534218146852,0.11414601514553147,0.11539591863039722,0.11666992346271941,0.11795883198538377,0.11926075034682102,0.12058172381208651,0.12192336598174115,0.1232718270136314,0.1246176012941157,0.12595700706039098,0.12728385905687323,0.12860412405983584,0.1299301074021838,0.13127043640136946,0.13262611322255713,0.13399359941579844,0.13537055532238476,0.1367584966056609,0.13815925476753516,0.13956874987968051,0.14098237482805012,0.1424008381230558,0.14382426058671685,0.14525276316108465,0.146686466903358,0.14812549298128314,0.1495699626688194,0.1510199973420521,0.15247571847533792,0.153937247637666,0.15540470648922242,0.15687821677814337,0.15835790033744643,0.1598438790821274,0.16133627500641312,0.16283521018115973,0.16434080675138774,0.1658531869339452,0.1673724730152912,0.16889878734939137,0.17043225235572024,0.17197299051736198,0.1735211243792045,0.175076749814913,0.1766394330413294,0.17820897809320685,0.179785379148622,0.1813686303819668,0.1829587259640437,0.18455566006215854,0.18615942684021014,0.18777002045877805,0.18938743507520706,0.19101166484368964,0.19264270391534596,0.19428054643830145,0.19592518655776225,0.19757661841608848,0.19923483615286558,0.2008998339049732,0.20257160580665276,0.2042501459895724,0.20593544858289087,0.20762750771331873,0.20932631750517874,0.21103187208046412,0.21274416555889503,0.2144631920579739,0.21618894569303895,0.21792142057731634,0.21966061082197078,0.22140651313265258,0.22315913557438413,0.2249184761694686,0.2266845312002385,0.22845729694790967,0.23023676969260595,0.23202294571338272,0.23381582128825018,0.2356153926941959,0.23742165620720684,0.23923460810229077,0.2410542446534974,0.24288056213393858,0.24471355681580823,0.24655322497040186,0.24839956286813542,0.25025256677856367,0.2521122329703986,0.2539785577115263,0.25585153726902465,0.2577311679091802,0.2596174458975038,0.261510367498747,0.2634099289769179,0.2653161265952956,0.2672289566164454,0.2691484153022335,0.27107449891384067,0.2730072037117764,0.2749465259558921,0.2768924619053944,0.27884500781885807,0.28080415995423835,0.28276991456815237,0.28474226776675826,0.28672121533079997,0.28870675299825815,0.29069887650643556,0.29269758159197073,0.29470286399085144,0.2967147194384275,0.2987331436694241,0.30075813241795357,0.30278968141752816,0.30482778640107194,0.30687244310093204,0.3089236472488903,0.31098139457617463,0.31304568081346934,0.31511650169092625,0.3171938529381747,0.31927773028433204,0.3213681294580133,0.32346504618734095,0.32556847619995466,0.3276784152230201,0.32979485898323824,0.3319178032068543,0.3340472436196665,0.33618317594703406,0.338325595913886,0.3404744992447292,0.3426298816636561,0.3447917388943525,0.3469600666601055,0.3491348606838104,0.35131611668797846,0.35350383039474387,0.3556979975258704,0.3578986138027588,0.36010567494645285,0.36231917667764657,0.36453911471669,0.36676548478359566,0.368998282598045,0.3712375040138455,0.3734831449556435,0.37573520067074145,0.3779936663613585,0.38025853722933106,0.3825298084761193,0.38480747530281445,0.38709153291014553,0.38938197649848566,0.3916788012678591,0.3939820024179473,0.3962915751480951,0.3986075146573173,0.400929816144304,0.4032584748074268,0.40559348584474464,0.40793484445400946,0.41028254583267115,0.41263658517788376,0.41499695768651024,0.4173636585551276,0.41973668298003247,0.4221160261572457,0.4245016832825171,0.42689364955133047,0.4292919201589083,0.43169649030021645,0.43410735516996807,0.43652450996262876,0.43894794987242036,0.4413776700933253,0.44381366581909104,0.4462559322432337,0.4487044645590423,0.4511592579595826,0.45362030763770106,0.45608760878602844,0.4585611565969833,0.46104094626277636,0.46352697297541307,0.46601923192669753,0.4685177183082364,0.4710224273114413,0.47353335412753256,0.4760504939475428,0.47857384196231917,0.4811033933625274,0.4836391433386543,0.48618108708101093,0.4887292197797352,0.4912835366247951,0.49384403263125765,0.4964107016882363,0.49898353836379145,0.5015625374130662,0.5041476935910031,0.5067390016523468,0.5093364563516481,0.5119400524432667,0.514549784681374,0.5171656478199573,0.5197876366128219,0.5224157458135944,0.5250499701757259,0.5276903044524944,0.530336743397008,0.5329892817622078,0.5356479143008703,0.5383126357656101,0.5409834409088825,0.5436603244829868,0.5463432812400681,0.5490323059321197,0.5517273933109861,0.5544285381283647,0.5571357351358092,0.5598489790847312,0.5625682647264021,0.5652935868119562,0.5680249400923928,0.5707623193185773,0.5735057192412449,0.5762551346110018,0.5790105601783265],\"thickness\":2,\"color\":\"#636EFA\",\"width\":0,\"type\":\"data\",\"opacity\":0.1},\"mode\":\"lines\",\"x\":[0.0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.5,9.0,9.5,10.0,10.5,11.0,11.5,12.0,12.5,13.0,13.5,14.0,14.5,15.0,15.5,16.0,16.5,17.0,17.5,18.0,18.5,19.0,19.5,20.0,20.5,21.0,21.5,22.0,22.5,23.0,23.5,24.0,24.5,25.0,25.5,26.0,26.5,27.0,27.5,28.0,28.5,29.0,29.5,30.0,30.5,31.0,31.5,32.0,32.5,33.0,33.5,34.0,34.5,35.0,35.5,36.0,36.5,37.0,37.5,38.0,38.5,39.0,39.5,40.0,40.5,41.0,41.5,42.0,42.5,43.0,43.5,44.0,44.5,45.0,45.5,46.0,46.5,47.0,47.5,48.0,48.5,49.0,49.5,50.0,50.5,51.0,51.5,52.0,52.5,53.0,53.5,54.0,54.5,55.0,55.5,56.0,56.5,57.0,57.5,58.0,58.5,59.0,59.5,60.0,60.5,61.0,61.5,62.0,62.5,63.0,63.5,64.0,64.5,65.0,65.5,66.0,66.5,67.0,67.5,68.0,68.5,69.0,69.5,70.0,70.5,71.0,71.5,72.0,72.5,73.0,73.5,74.0,74.5,75.0,75.5,76.0,76.5,77.0,77.5,78.0,78.5,79.0,79.5,80.0,80.5,81.0,81.5,82.0,82.5,83.0,83.5,84.0,84.5,85.0,85.5,86.0,86.5,87.0,87.5,88.0,88.5,89.0,89.5,90.0,90.5,91.0,91.5,92.0,92.5,93.0,93.5,94.0,94.5,95.0,95.5,96.0,96.5,97.0,97.5,98.0,98.5,99.0,99.5,100.0,100.5,101.0,101.5,102.0,102.5,103.0,103.5,104.0,104.5,105.0,105.5,106.0,106.5,107.0,107.5,108.0,108.5,109.0,109.5,110.0,110.5,111.0,111.5,112.0,112.5,113.0,113.5,114.0,114.5,115.0,115.5,116.0,116.5,117.0,117.5,118.0,118.5,119.0,119.5,120.0,120.5,121.0,121.5,122.0,122.5,123.0,123.5,124.0,124.5,125.0,125.5,126.0,126.5,127.0,127.5,128.0,128.5,129.0,129.5,130.0,130.5,131.0,131.5,132.0,132.5,133.0,133.5,134.0,134.5,135.0,135.5,136.0,136.5,137.0,137.5,138.0,138.5,139.0,139.5,140.0,140.5,141.0,141.5,142.0,142.5,143.0,143.5,144.0,144.5,145.0,145.5,146.0,146.5,147.0,147.5,148.0,148.5,149.0,149.5,150.0,150.5,151.0,151.5,152.0,152.5,153.0,153.5,154.0,154.5,155.0,155.5,156.0,156.5,157.0,157.5,158.0,158.5,159.0,159.5,160.0,160.5,161.0,161.5,162.0,162.5,163.0,163.5,164.0,164.5,165.0,165.5,166.0,166.5,167.0,167.5,168.0,168.5,169.0,169.5,170.0,170.5,171.0,171.5,172.0,172.5,173.0,173.5,174.0,174.5,175.0,175.5,176.0,176.5,177.0,177.5,178.0,178.5,179.0,179.5,180.0,180.5,181.0,181.5,182.0,182.5,183.0,183.5,184.0,184.5,185.0,185.5,186.0,186.5,187.0,187.5,188.0,188.5,189.0,189.5,190.0,190.5,191.0,191.5,192.0,192.5,193.0,193.5,194.0,194.5,195.0,195.5,196.0,196.5,197.0,197.5,198.0,198.5,199.0,199.5,200.0],\"opacity\":0.8,\"y\":[99.99,99.98988840289948,99.9895988467473,99.98918388690417,99.98868055909811,99.98811496229982,99.98750548835791,99.98686509794643,99.98620292442992,99.98552540410331,99.9848370726604,99.98414112646459,99.98343981806612,99.98273473492011,99.98202699579704,99.98131738919295,99.98060647085836,99.97989463253253,99.97918215037971,99.97846921911736,99.9777559760682,99.97704251810987,99.97632891361997,99.97561521088606,99.97490144405073,99.97418763727649,99.97347380770151,99.97275996750814,99.97204612538548,99.971332287568,99.97061845855715,99.96990464162931,99.96919083920426,99.9684770530915,99.96776328467134,99.96704953502783,99.96633580503305,99.96562209540451,99.9649084067594,99.96419473963716,99.96348109452467,99.9627674718719,99.96205387210534,99.96134029563277,99.96062674284666,99.95991321413197,99.95919970986729,99.95848623042528,99.95777277617569,99.95705934748649,99.9563459447247,99.955632568256,99.95491921844436,99.95420589565326,99.95349260024649,99.95277933258667,99.95206609303621,99.95135288195743,99.95063969971282,99.94992654666488,99.9492134231759,99.94850032960792,99.94778726632273,99.94707423368216,99.9463612320481,99.94564826178218,99.94493532324579,99.94422241679989,99.94350954280604,99.94279670162625,99.94208389362245,99.94137111915613,99.94065837858831,99.93994567227993,99.93923300059204,99.93852036388583,99.93780776252218,99.9370951968616,99.93638266726468,99.93567017408752,99.9349577176874,99.93424529842792,99.93353291667589,99.93282057279652,99.93210826715101,99.93139600009727,99.93068377199246,99.9299715831958,99.92925943406891,99.92854732497386,99.92783525626926,99.92712322830978,99.92641124145521,99.92569929602149,99.92498739229275,99.92427553063574,99.92356371149194,99.92285193531434,99.92214020251365,99.92142851344128,99.92071686840933,99.92000526772975,99.91929371174835,99.91858220085147,99.91787073543641,99.91715931585895,99.9164479424053,99.91573661538554,99.91502533497429,99.91431410014516,99.91360291053097,99.91289176737962,99.91218067277023,99.91146962849544,99.91075863538155,99.91004769328221,99.90933680160478,99.90862596001207,99.90791516888538,99.90720442923713,99.90649374202488,99.90578310724014,99.9050725237282,99.9043619914832,99.90365150722316,99.9029410547729,99.90223063010637,99.90152024706022,99.90080992574929,99.90009968000282,99.89938951162934,99.89867941283426,99.89796937382216,99.89725939051776,99.8965494674332,99.89583961299732,99.89512982914172,99.89442010361208,99.89371042251499,99.89300078992039,99.89229114019615,99.89158142829973,99.89087170188482,99.89016205291763,99.88945255000952,99.88874320465581,99.88803398219332,99.88732484067319,99.88661576799106,99.88590678952346,99.88519793518769,99.88448918627194,99.88378046857385,99.88307177434767,99.88236305428481,99.88165419137215,99.88094522618593,99.88023631089962,99.87952757770606,99.87881906178092,99.87811071421133,99.8774024725902,99.87669432622968,99.87598631917865,99.87527847743796,99.87457072695436,99.87386297602052,99.87315522739163,99.8724473931289,99.87173946733535,99.87103155324536,99.87032376329918,99.86961614358287,99.86890867125321,99.86820130512525,99.86749403698923,99.86678689444516,99.86607988509782,99.86537294685029,99.86466603721972,99.8639591400196,99.86325222780296,99.86254532784378,99.86183849592372,99.86113177123416,99.86042515863163,99.85971864254147,99.85901221278785,99.85830587653693,99.85759964237468,99.85689349231532,99.85618740601043,99.85548138700996,99.85477543622149,99.8540695545525,99.85336374291055,99.85265800220311,99.85195233333776,99.85124673722203,99.85054121476342,99.84983576686946,99.8491303944477,99.84842509840563,99.84771987965078,99.84701473909071,99.84630967763292,99.84560469618494,99.84489979565431,99.84419497694853,99.84349024097514,99.84278558864169,99.84208102085567,99.8413765385246,99.84067214255606,99.8399678337379,99.83926361048691,99.83855947228281,99.83785541945602,99.83715145233705,99.83644757125634,99.83574377654433,99.83504006853151,99.83433644754834,99.83363291392527,99.83292946799277,99.83222611008131,99.83152284052134,99.83081965964331,99.83011656777772,99.82941356525501,99.82871065240563,99.82800782956008,99.82730509704876,99.82660245520219,99.8258999043508,99.8251974448251,99.82449507695547,99.82379280107244,99.82309061750647,99.82238852658799,99.82168652864746,99.82098462401537,99.8202828130344,99.81958109609896,99.81887947355354,99.8181779457342,99.8174765129771,99.81677517561829,99.81607393399393,99.81537278844009,99.81467173929289,99.81397078688845,99.81326993156287,99.81256917365224,99.81186851349267,99.81116795142027,99.81046748777118,99.80976712288148,99.80906685708726,99.80836669072465,99.80766662412977,99.80696665763868,99.80626679158753,99.80556702631242,99.80486736214944,99.8041677994347,99.80346833850433,99.8027689796944,99.80206972334106,99.80137056978039,99.8006715193485,99.7999725723815,99.7992737292155,99.7985749901866,99.7978763556309,99.79717782588483,99.79647940128916,99.79578108217541,99.7950828688715,99.7943847617054,99.79368676100505,99.7929888670984,99.7922910803134,99.79159340097799,99.79089582942014,99.79019836596773,99.78950101094878,99.78880376469121,99.78810662752296,99.78740959977198,99.78671268176622,99.78601587383363,99.78531917630215,99.78462258949973,99.78392611375432,99.78322974939387,99.78253349674631,99.78183735613959,99.78114132790165,99.78044541236048,99.77974960984399,99.77905392068013,99.77835834519685,99.7776628837221,99.77696753658381,99.77627230410995,99.77557718662847,99.77488218446729,99.77418729795437,99.77349252741764,99.7727978731851,99.77210333558465,99.77140891494423,99.77071461159181,99.77002042585535,99.76932635806276,99.76863240854202,99.76793857762517,99.76724486564883,99.76655127293138,99.76585779978991,99.76516444654155,99.76447121350337,99.76377810099247,99.76308510932598,99.762392238821,99.76169948979464,99.76100686256397,99.76031435744613,99.7596219747582,99.75892971481731,99.75823757794052,99.75754556444498,99.75685367464777,99.756161908866,99.75547026741678,99.75477875061719,99.75408735878435,99.75339609223538,99.75270495128736,99.75201393625738,99.75132304746259,99.75063228522005,99.74994164984689,99.7492511416602,99.74856076097709,99.74787050811467,99.74718038339003,99.74649038712028,99.74580051962253,99.74511078121388,99.74442117221142,99.74373169293227,99.74304234369352,99.7423531248123,99.74166403660568,99.7409750793908,99.74028625348473,99.73959755920457,99.73890899686747,99.73822056679049,99.73753226929074,99.73684410468535,99.7361560732914,99.735468175426,99.73478041140625,99.73409278154925,99.73340528617213,99.7327179255882,99.73203070008616,99.73134360996833,99.73065665554111,99.72996983711079,99.72928315498373,99.72859660946627,99.72791020086476,99.7272239294855,99.72653779563487,99.72585179961918,99.72516594174479,99.72448022231802,99.72379464164523,99.72310920003272,99.7224238977869,99.72173873521403,99.72105371262047,99.72036883031261,99.71968408859672,99.71899948777919,99.7183150281663,99.71763071006444,99.71694653377995,99.71626249961913,99.71557860788836,99.71489485889396,99.71421125294226,99.71352779033961,99.71284447139233,99.71216129640679,99.71147826568931,99.71079537954623]},{\"name\":\"Exposed\",\"line\":{\"color\":\"#EF553B\"},\"error_y\":{\"array\":[0.0,0.0002012990842384659,0.00033001232369177675,0.000413838080824913,0.00047122213860078806,0.0005143840647005299,0.0005512724417036873,0.0005868560726171565,0.000624023215572402,0.0006642461506384744,0.0007080841889257135,0.0007555543936786765,0.000806388184333358,0.0008601951619990989,0.0009165584970266497,0.0009750845458940125,0.0010354244880996996,0.0010972802896224748,0.0011604027186259288,0.0012245859074907425,0.001289660887816878,0.0013554892986819248,0.0014219577860293746,0.0014889732491100817,0.0015564589314497812,0.001624351235462333,0.0016925971809198105,0.0017611523674862643,0.0018299793586096162,0.0018990463970014603,0.001968326377300363,0.0020377960261926537,0.002107435248112338,0.0021772265942168354,0.002247154836063443,0.0023172066184710648,0.00238737017390657,0.0024576350879475586,0.002527992107230208,0.0025984329772859656,0.00266895030800305,0.002739537460928705,0.0028101884546086883,0.0028808978819736884,0.0029516608402300674,0.0030224728732404383,0.0030933299199133956,0.0031642282687016922,0.0032351645177682306,0.003306135546644549,0.003377138487978984,0.003448170697253551,0.0035192297274521693,0.003590313313354895,0.00366141935810743,0.003732545912041801,0.00380369114891562,0.0038748533609978967,0.003946030972394221,0.0040172225204089885,0.0040884266293926275,0.004159641995074399,0.004230867383901438,0.004302101640087899,0.004373343682922206,0.004444592488432515,0.004515847036185537,0.004587106238753573,0.0046583692269066175,0.00472963533666276,0.004800903939345572,0.004872174332313234,0.004943445748441019,0.005014717440313329,0.005085988751319938,0.005157259100574503,0.005228527881864957,0.005299794417714935,0.005371058098574512,0.005442316937331161,0.005513569350810176,0.005584815816249041,0.005656057852852351,0.00572729652521941,0.005798531670499509,0.005869762110677613,0.005940986494719525,0.006012204122856125,0.006083415137419554,0.006154619821647588,0.006225817429994521,0.006297005980886312,0.006368185170790635,0.006439340866107818,0.006510448948006593,0.006581511402576137,0.006652553851774995,0.0067236055859424375,0.006794682577961491,0.0068657821294167256,0.006936889140240759,0.007007988508232496,0.007079075855713656,0.007150159649357217,0.007221251827475132,0.007292351278093657,0.007363434922076777,0.007434487271740586,0.007505450013824988,0.007575885513074993,0.007645564423179993,0.007714767664067678,0.007784038810005429,0.007853830977483172,0.007924292020733114,0.007995262503446253,0.008066442006592725,0.008137610873881509,0.008208776504841373,0.00828014579848504,0.008351908343512337,0.008423948455141647,0.008495788184035003,0.008567312813364468,0.008637369757403245,0.008700726718533777,0.008755996911875948,0.008807446906893378,0.008861330139431125,0.00892191049562362,0.008989647213586582,0.009061960101105188,0.00913563586148574,0.009209272018730631,0.00928418456367404,0.009362929289519767,0.00944600500600643,0.009529419450070093,0.009608661907658337,0.009684906204798574,0.009737228930327519,0.00975123944931084,0.009741936702281084,0.009738366369476031,0.00976216651992193,0.00981686558652391,0.00989135845182197,0.009972232126905832,0.010055538241421889,0.010149213307926926,0.010262632358446202,0.010389748126756184,0.010506916706794326,0.010611575988978111,0.010687942819895971,0.010698746085243599,0.0106567653674024,0.010610215877221293,0.010600959478181946,0.010640044583284774,0.010711818549362775,0.010796349827529342,0.010890137357497236,0.011007064016540894,0.011155274696843765,0.011311130414868935,0.011445395951509757,0.011558834235192574,0.011623355835857373,0.011636975071305707,0.01163241655044554,0.011645326309083225,0.01169024070995391,0.011759774020276547,0.011840713584937945,0.011930341566542029,0.012037329840605545,0.012163981581862202,0.012290424406313316,0.012403043162237372,0.012496567263655153,0.012562139354296288,0.012608335889020942,0.012652812178282388,0.012707935748040536,0.012775136676926502,0.012849340032310965,0.012927194837480645,0.013010875394012258,0.013103004101444162,0.01319773514768106,0.01328847708011467,0.013376251335962795,0.013461236590007404,0.013543611523945967,0.013623554825581013,0.013701245188095745,0.013776861309406821,0.013850581891586413,0.013922585640347145,0.013993051264584083,0.014062157475969008,0.01413008298859274,0.014197006518652014,0.014263106784177679,0.014328562504801684,0.014393552401560424,0.014458255196732453,0.014522849613708807,0.01458751437689427,0.014652428211638186,0.014717769844193497,0.01478371800170271,0.014850451412209623,0.01491811066588218,0.01498608084137256,0.015054086897444778,0.015122125167004572,0.0151901919830375,0.015258283678607886,0.015326396586857867,0.015394527041006389,0.015462671374348263,0.015530825920253176,0.015598987012164766,0.01566715098359967,0.015735314168146594,0.015803472899465383,0.015871623511286133,0.015939762337408264,0.016007885711699674,0.016075989968095825,0.016144071440598883,0.016212126463276896,0.016280151370262924,0.01634814249575421,0.016416096174011387,0.01648400873935766,0.01655187652617802,0.016619695868918448,0.016687463102085173,0.016755174560243915,0.016822830216491155,0.016890446196259346,0.016958024885005328,0.01702556625176655,0.01709307026563924,0.017160536895777193,0.017227966111390592,0.017295357881744827,0.01736271217615936,0.01743002896400662,0.01749730821471093,0.01756454989774743,0.01763175398264107,0.017698920438965586,0.017766049236342552,0.017833140344440376,0.01790019373297342,0.01796720937170105,0.01803418723042676,0.018101127278997303,0.018168029487301837,0.018234893825271114,0.01830172026287666,0.018368508770129972,0.018435259317081776,0.018501971873821257,0.018568646410475308,0.018635282897207842,0.01870188130421907,0.018768441601744817,0.018834963760055848,0.01890144774945722,0.01896789354028764,0.01903430107899124,0.01910066977525557,0.019166999292346425,0.01923328950577023,0.019299540291064184,0.019365751523795743,0.019431923079562048,0.019498054833989385,0.0195641466627327,0.01963019844147502,0.019696210045927042,0.019762181351826568,0.019828112234938054,0.019894002571052158,0.01995985223598525,0.020025661105578976,0.020091429055699828,0.02015715596223869,0.020222841701110432,0.020288486148253498,0.020354089179629494,0.02041965067122278,0.020485170499040112,0.020550648539110244,0.020616084667483544,0.020681478760231645,0.020746830693447082,0.020812140343242948,0.02087740758575253,0.020942632297129008,0.021007814353545075,0.02107295363119266,0.021138050006282584,0.021203103355044276,0.021268113553725418,0.02133308047859171,0.02139800400592651,0.021462884012030618,0.02152772037322194,0.021592512965835232,0.02165726166622182,0.021721966350749355,0.021786626899407777,0.021851243206175142,0.021915815160514933,0.02198034265120449,0.022044825567036262,0.022109263796817637,0.022173657229370647,0.022238005753531784,0.022302309258151756,0.02236656763209525,0.022430780764240744,0.02249494854348028,0.02255907085871925,0.022623147598876195,0.02268717865288262,0.02275116390968275,0.022815103258233393,0.022878996587503708,0.022942843786475035,0.023006644744140714,0.023070399349505888,0.02313410749158734,0.02319776905941331,0.023261383942023345,0.023324952028468092,0.02338847320780917,0.023451947369118986,0.02351537440148059,0.023578754193987514,0.0236420866357436,0.023705371615862884,0.02376860902346942,0.023831798747697138,0.02389494067768972,0.023958034702600436,0.024021080711592018,0.024084078593836506,0.02414702823851516,0.024209929534818278,0.024272782371945086,0.024335586639103617,0.02439834222551059,0.02446104902039126,0.02452370691297933,0.02458631579251682,0.02464887554825395,0.02471138606944901,0.024773847245368283,0.02483625896528591,0.02489862111848377,0.024960933594251413,0.025023196284263072,0.02508540909633559,0.025147571930380436,0.025209684683870203,0.02527174725428463,0.02533375953911058,0.02539572143584188,0.02545763284197927,0.0255194936550303,0.02558130377250923,0.025643063091936924,0.025704771510840826,0.025766428926754775,0.025828035237219014,0.025889590339780034,0.025951094131990534,0.02601254651140932,0.026073947375601224,0.026135296622137046,0.026196594148593436,0.026257839852552863,0.026319033631603494,0.02638017538333916,0.026441265005359257,0.02650230239526868,0.026563287450677757,0.026624220069202183,0.02668510014846292,0.026745927586086172,0.0268067022797033,0.026867424126950746,0.02692809302546997,0.026988708872907413],\"thickness\":2,\"color\":\"#EF553B\",\"width\":0,\"type\":\"data\",\"opacity\":0.1},\"mode\":\"lines\",\"x\":[0.0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.5,9.0,9.5,10.0,10.5,11.0,11.5,12.0,12.5,13.0,13.5,14.0,14.5,15.0,15.5,16.0,16.5,17.0,17.5,18.0,18.5,19.0,19.5,20.0,20.5,21.0,21.5,22.0,22.5,23.0,23.5,24.0,24.5,25.0,25.5,26.0,26.5,27.0,27.5,28.0,28.5,29.0,29.5,30.0,30.5,31.0,31.5,32.0,32.5,33.0,33.5,34.0,34.5,35.0,35.5,36.0,36.5,37.0,37.5,38.0,38.5,39.0,39.5,40.0,40.5,41.0,41.5,42.0,42.5,43.0,43.5,44.0,44.5,45.0,45.5,46.0,46.5,47.0,47.5,48.0,48.5,49.0,49.5,50.0,50.5,51.0,51.5,52.0,52.5,53.0,53.5,54.0,54.5,55.0,55.5,56.0,56.5,57.0,57.5,58.0,58.5,59.0,59.5,60.0,60.5,61.0,61.5,62.0,62.5,63.0,63.5,64.0,64.5,65.0,65.5,66.0,66.5,67.0,67.5,68.0,68.5,69.0,69.5,70.0,70.5,71.0,71.5,72.0,72.5,73.0,73.5,74.0,74.5,75.0,75.5,76.0,76.5,77.0,77.5,78.0,78.5,79.0,79.5,80.0,80.5,81.0,81.5,82.0,82.5,83.0,83.5,84.0,84.5,85.0,85.5,86.0,86.5,87.0,87.5,88.0,88.5,89.0,89.5,90.0,90.5,91.0,91.5,92.0,92.5,93.0,93.5,94.0,94.5,95.0,95.5,96.0,96.5,97.0,97.5,98.0,98.5,99.0,99.5,100.0,100.5,101.0,101.5,102.0,102.5,103.0,103.5,104.0,104.5,105.0,105.5,106.0,106.5,107.0,107.5,108.0,108.5,109.0,109.5,110.0,110.5,111.0,111.5,112.0,112.5,113.0,113.5,114.0,114.5,115.0,115.5,116.0,116.5,117.0,117.5,118.0,118.5,119.0,119.5,120.0,120.5,121.0,121.5,122.0,122.5,123.0,123.5,124.0,124.5,125.0,125.5,126.0,126.5,127.0,127.5,128.0,128.5,129.0,129.5,130.0,130.5,131.0,131.5,132.0,132.5,133.0,133.5,134.0,134.5,135.0,135.5,136.0,136.5,137.0,137.5,138.0,138.5,139.0,139.5,140.0,140.5,141.0,141.5,142.0,142.5,143.0,143.5,144.0,144.5,145.0,145.5,146.0,146.5,147.0,147.5,148.0,148.5,149.0,149.5,150.0,150.5,151.0,151.5,152.0,152.5,153.0,153.5,154.0,154.5,155.0,155.5,156.0,156.5,157.0,157.5,158.0,158.5,159.0,159.5,160.0,160.5,161.0,161.5,162.0,162.5,163.0,163.5,164.0,164.5,165.0,165.5,166.0,166.5,167.0,167.5,168.0,168.5,169.0,169.5,170.0,170.5,171.0,171.5,172.0,172.5,173.0,173.5,174.0,174.5,175.0,175.5,176.0,176.5,177.0,177.5,178.0,178.5,179.0,179.5,180.0,180.5,181.0,181.5,182.0,182.5,183.0,183.5,184.0,184.5,185.0,185.5,186.0,186.5,187.0,187.5,188.0,188.5,189.0,189.5,190.0,190.5,191.0,191.5,192.0,192.5,193.0,193.5,194.0,194.5,195.0,195.5,196.0,196.5,197.0,197.5,198.0,198.5,199.0,199.5,200.0],\"opacity\":0.8,\"y\":[0.01,0.009156240813867884,0.008561633781043116,0.008142601358935228,0.007847293764462426,0.007639172804891535,0.007492490320955062,0.007389101828516478,0.007316221092849272,0.007264837785868237,0.007228602426852143,0.007203040601807253,0.007184999238295638,0.007172256399455657,0.0071632463090498056,0.0071568655765185405,0.007152336656359655,0.0071491116198376965,0.00714680434402831,0.007145142732108412,0.007143935040328412,0.007143046148360727,0.0071423808363004675,0.007141872010360373,0.007141472379934542,0.007141148626524745,0.00714087726582746,0.0071406417517077955,0.007140430428586139,0.007140235077288776,0.007140049904957849,0.00713987083377441,0.00713969498507317,0.007139520334602264,0.007139345458913768,0.007139169349293378,0.007138991293706465,0.007138810796482163,0.007138627502369933,0.007138441164858221,0.007138251611047787,0.007138058719545582,0.0071378624018761105,0.007137662595629873,0.007137459259842036,0.0071372523639105226,0.007137041886131051,0.007136827813088811,0.0071366101352953355,0.0071363888457328,0.0071361639386168805,0.007135935410033748,0.007135703258288033,0.0071354674824375686,0.007135228080910401,0.0071349850537546075,0.007134738401262391,0.007134488123722827,0.007134234221167168,0.007133976693503756,0.0071337155408414945,0.007133450763627379,0.007133182362499641,0.00713291033800095,0.007132634690506071,0.007132355420661176,0.007132072529403489,0.007131786018108288,0.007131495887319204,0.007131202136793103,0.0071309047663276745,0.0071306037762886645,0.007130299167547622,0.007129990941049533,0.007129679097447056,0.007129363637164607,0.00712904456089089,0.007128721869803765,0.00712839556485649,0.007128065653156522,0.007127732140121996,0.00712739502215154,0.007127054291124767,0.007126709941014874,0.00712636197129932,0.007126010386015213,0.007125655190031989,0.007125296385404913,0.00712493397052911,0.007124567943235066,0.007124198305952973,0.007123825066624821,0.007123448225815184,0.007123067845480359,0.007122684031910979,0.0071222967756627955,0.007121905962521077,0.00712151146205748,0.007121113202943747,0.007120711196675848,0.007120305509763723,0.0071198962087551596,0.0071194833126872826,0.0071190667836959634,0.007118646568561886,0.00711822267193225,0.007117795195829029,0.007117364208640094,0.00711692996835751,0.00711649441427027,0.007116058562741505,0.007115621168756943,0.007115179823364634,0.0071147325185448584,0.0071142785990350645,0.007113818771232992,0.007113354366233916,0.007112886357325505,0.007112414711865696,0.0071119385134056955,0.007111456922191362,0.007110970450782014,0.00711048121646614,0.007109989727829515,0.007109501079643513,0.007109038418827332,0.007108607882960921,0.007108190600190356,0.007107758908045012,0.007107293943750139,0.007106793673939929,0.007106269510261509,0.00710573566576088,0.007105198345157728,0.007104651730147101,0.0071040845187122096,0.0071034945050944005,0.007102899344542863,0.007102318987409551,0.007101748231567019,0.0071012794655583595,0.0071009762544055974,0.007100772379734484,0.00710053957897223,0.0071001822854521,0.007099684898288555,0.007099096442654799,0.007098476145830413,0.007097841452089882,0.007097157330173584,0.007096382390721096,0.007095543327652172,0.0070947445270543065,0.0070939973299388535,0.007093371265541235,0.007093030665056575,0.007092919219891821,0.007092824369392624,0.007092561521603399,0.00709208191490884,0.007091454520616493,0.007090767207053972,0.007090035434567344,0.00708919802791889,0.0070882190779928845,0.007087202758427446,0.007086277965844648,0.007085441334175045,0.007084816482880064,0.007084412167050878,0.007084084342590485,0.007083676070642194,0.007083123312185947,0.007082458537243313,0.0070817398998245205,0.007080979388681845,0.007080138855102813,0.007079208142384287,0.007078274683214403,0.0070773984523757934,0.0070766026029800136,0.007075926057051797,0.0070753311202092556,0.007074740181380364,0.007074098855458708,0.007073400829694738,0.007072668398781298,0.007071916300301257,0.007071134991460544,0.007070312939831791,0.007069475815499845,0.007068652604138642,0.007067838826294997,0.00706703369718431,0.007066236432021993,0.007065446246023448,0.007064662354404076,0.007063883972379285,0.007063110315164479,0.007062340597975064,0.007061574036026444,0.007060809844534025,0.007060047238713209,0.007059285433779405,0.007058523644948013,0.007057761087434441,0.007056996976454095,0.007056230527222375,0.0070554609549546895,0.007054687474866443,0.00705390930217304,0.007053125652089885,0.007052335739832382,0.007051538780615938,0.0070507341573208095,0.007049924574238237,0.007049111241602293,0.007048294176655314,0.007047473396639644,0.007046648918797618,0.007045820760371579,0.007044988938603862,0.007044153470736811,0.007043314374012759,0.00704247166567405,0.0070416253629630235,0.007040775483122019,0.007039922043393371,0.007039065061019425,0.007038204553242515,0.007037340537304984,0.007036473030449169,0.007035602049917412,0.00703472761295205,0.007033849736795424,0.00703296843868987,0.007032083735877729,0.007031195645601343,0.007030304185103048,0.007029409371625183,0.00702851122241009,0.007027609754700105,0.0070267049697237734,0.007025796797714664,0.007024885229515386,0.007023970266612325,0.00702305191049186,0.007022130162640377,0.0070212050245442624,0.007020276497689897,0.007019344583563665,0.007018409283651951,0.007017470599441138,0.007016528532417608,0.007015583084067746,0.007014634255877937,0.007013682049334564,0.00701272646592401,0.007011767507132661,0.0070108051744468955,0.007009839469353101,0.0070088703933376606,0.007007897947886958,0.007006922134487377,0.007005942954625302,0.007004960409787115,0.007003974501459201,0.007002985231127942,0.007001992600279724,0.0070009966104009275,0.006999997262977941,0.006998994559497144,0.0069979885014449204,0.0069969790903076584,0.006995966327571736,0.0069949502148189974,0.006993930755849346,0.006992907953641997,0.006991881810357435,0.00699085232815614,0.0069898195091985995,0.006988783355645296,0.006987743869656713,0.006986701053393336,0.0069856549090156475,0.006984605438684131,0.006983552644559271,0.006982496528801552,0.006981437093571459,0.006980374341029472,0.0069793082733360795,0.006978238892651761,0.0069771662011370045,0.006976090200952291,0.006975010894258107,0.006973928283214933,0.006972842369983257,0.0069717531567235575,0.006970660645596325,0.006969564838762037,0.006968465738381181,0.006967363346614242,0.006966257665621701,0.006965148697564044,0.006964036444601753,0.006962920908895315,0.0069618020926052095,0.0069606799978919245,0.006959554626915941,0.0069584259818377455,0.00695729406481782,0.006956158878016648,0.006955020423594716,0.006953878703712504,0.0069527337205305025,0.006951585476209186,0.006950433972909047,0.006949279212692654,0.006948121197512912,0.006946959929750363,0.006945795411815712,0.00694462764611966,0.006943456635072914,0.006942282381086178,0.0069411048865701585,0.006939924153935556,0.006938740185593078,0.006937552983953426,0.006936362551427307,0.006935168890425425,0.006933972003358482,0.006932771892637185,0.006931568560672238,0.006930362009874345,0.006929152242654208,0.0069279392614225365,0.006926723068590031,0.006925503666567395,0.006924281057765338,0.006923055244594561,0.006921826229465765,0.006920594014789661,0.006919358602976948,0.006918119996438333,0.006916878197584523,0.006915633208826216,0.006914385032574122,0.006913133671238941,0.006911879127231381,0.006910621402962144,0.0069093605008419354,0.006908096423281462,0.006906829172691422,0.006905558751482524,0.006904285162065473,0.006903008406850972,0.006901728488249724,0.006900445408672436,0.006899159170529811,0.006897869776232554,0.006896577228191369,0.00689528152881696,0.006893982680520031,0.00689268068571129,0.006891375546801436,0.006890067266201175,0.006888755846321215,0.006887441289572257,0.006886123598456972,0.00688480277606898,0.006883478825141884,0.006882151748310511,0.0068808215482096995,0.006879488227474276,0.006878151788739077,0.006876812234638929,0.006875469567808667,0.006874123790883122,0.0068727749064971255,0.006871422917285508,0.006870067825883105,0.0068687096349247445,0.006867348347045259,0.006865983964879481,0.006864616491062241,0.006863245928228373,0.006861872279012707,0.0068604955460500735,0.006859115731975308,0.0068577328394232384,0.006856346871028697,0.006854957829426517,0.006853565717251531,0.006852170537138568,0.00685077229172246,0.006849370983638043,0.006847966615520141,0.006846559190003592,0.006845148709723226,0.006843735177313875,0.006842318595410369]},{\"name\":\"Infected\",\"line\":{\"color\":\"#00CC96\"},\"error_y\":{\"array\":[0.0,0.00020126723360925437,0.00032956912492247264,0.0004117910724356327,0.0004653167428236824,0.0005013035044084876,0.0005268522017160388,0.000546437679707136,0.0005628466112845494,0.00057778842685607,0.0005922906178291923,0.0006069527877616679,0.0006221088194977005,0.0006379296952188166,0.0006544882270738672,0.0006717994872513366,0.0006898458200808229,0.000708592136261892,0.0007279951160238833,0.0007480086256322124,0.0007685868035171762,0.0007896857279285625,0.0008112642353509736,0.0008332842388744095,0.0008557107727773902,0.0008785118709251474,0.0009016583812975671,0.0009251237417833733,0.0009488837542502266,0.000972916367325446,0.0009972014700365018,0.0010217207032569564,0.0010464572909796284,0.0010713958850891794,0.0010965224283739357,0.0011218240311484206,0.0011472888598487363,0.0011729060373885658,0.0011986655547192979,0.0012245581900939273,0.001250575438121521,0.0012767094448529498,0.001302952948406853,0.0013292992276349638,0.0013557420557550345,0.0013822756560633602,0.0014088946636841625,0.0014355940920213538,0.0014623693027300967,0.001489215972277897,0.0015161300649282321,0.001543107813739563,0.001570145702068997,0.0015972404401459767,0.0016243889432605732,0.001651588321268826,0.0016788358733246097,0.001706129067449825,0.0017334655049358804,0.001760842917411083,0.0017882591732176478,0.001815712275568011,0.0018432003477772902,0.001870721612317526,0.0018982743804359307,0.0019258570581682536,0.001953468187065188,0.001981106502880308,0.0020087706504969766,0.0020364591873749203,0.002064170740320348,0.002091904104774231,0.002119658229618789,0.0021474321296474255,0.002175224810818091,0.002203035279601784,0.002230862636650293,0.0022587061175057665,0.002286564952880297,0.002314439776611036,0.002342330885327052,0.0023702366140366297,0.002398154323822821,0.0024260818614632563,0.0024540183152171476,0.002481963807712669,0.00250991867072057,0.002537882635058823,0.00256585463981729,0.002593833516763943,0.0026218191367470894,0.0026498126139276757,0.0026778134433112677,0.002705834728575507,0.0027338994321177462,0.00276200491321968,0.0027901253058076423,0.002818231117914682,0.0028463059404698994,0.0028743517403939565,0.0029023827179243465,0.0029304131132207836,0.0029584466374739976,0.0029864743663910176,0.0030144839585923375,0.0030424759390265893,0.003070472510203508,0.0030984884271482676,0.003126580657903439,0.003155180364400635,0.003184513710977332,0.0032143035970942377,0.003244013384775109,0.0032731951858845816,0.0033017021196198437,0.003329690698663348,0.00335745688410999,0.003385217131936343,0.0034129637296756,0.0034404917947821567,0.003467613402222566,0.0034944423156061835,0.003521450633669997,0.0035487516146286697,0.0035774842213803027,0.003612822924309464,0.0036561439568112536,0.003703232203286979,0.0037479010928214676,0.003785926638444352,0.0038168487460213956,0.003843217925006313,0.0038682139823653884,0.0038932252556271698,0.003916948191772728,0.003936850490980165,0.0039524367464845766,0.003967660946439782,0.003986992353963012,0.0040092680811270815,0.004055213914889765,0.004139108877610367,0.004246128896968694,0.004347490124575505,0.0044217056512526045,0.004465243314216652,0.004489107334972347,0.004506605667979735,0.004521657362761349,0.00452638553674083,0.004511485977198852,0.004482964096108663,0.004464285101344273,0.004457991904135585,0.004479731845645536,0.004566488467475321,0.004705646269817083,0.004849391686085637,0.004956123701897248,0.005014813039478953,0.005040984062506271,0.005054437503566569,0.005058654606473377,0.005039842765022763,0.004989915517509706,0.004932367461410585,0.004896241768607221,0.004880772344995279,0.004913836522456745,0.004997422667908719,0.005099063638383045,0.005183350719416518,0.00523581651521328,0.005263781480612924,0.005280370846162784,0.005288287479867137,0.005278915789934739,0.005249967972502453,0.0052211914358409545,0.005206118307264252,0.005209978841123846,0.005241568565156298,0.005292375445491002,0.005344866029165192,0.005386749323076701,0.0054165972665384185,0.0054394485579375,0.005458632937173671,0.005471990779852756,0.0054769150629337135,0.005479212678039086,0.0054854356161956105,0.00549456922807326,0.0055064357541924295,0.005520857494054485,0.005537656790991394,0.005556656017949381,0.005577677564363077,0.005600543824236002,0.005625077185504954,0.005651100020731035,0.005678434679129217,0.005706903479921953,0.005736328706980511,0.005766532604700521,0.005797337375045288,0.00582856517568164,0.005860038119127912,0.005891578272831749,0.005923007660096309,0.005954148261776644,0.005984822018673246,0.006014850834556474,0.00604405657976362,0.006072299039783593,0.006100189682270523,0.006128001922087065,0.006155739198057772,0.006183404950188395,0.006211002619626057,0.006238535648621233,0.006266007480491389,0.0062934215595862675,0.006320781331254689,0.006348090241812807,0.006375351738513786,0.006402569269518787,0.00642974628386922,0.006456886231460224,0.006483992563015281,0.006511068730061953,0.006538118184908642,0.006565144380622392,0.006592150771007618,0.0066191408105857625,0.006646117954575841,0.006673085658875806,0.006700047380044723,0.006727006575285705,0.0067539667024295895,0.006780931219919297,0.006807903586794877,0.006834883637811498,0.0068618551182107615,0.006888815464790236,0.006915764522074374,0.006942702134704071,0.0069696281474344,0.006996542405132452,0.007023444752775175,0.007050335035447308,0.007077213098339323,0.007104078786745446,0.007130931946061694,0.007157772421783979,0.007184600059506241,0.007211414704918629,0.007238216203805719,0.007265004402044767,0.007291779145604013,0.007318540280541018,0.007345287653001022,0.007372021109215359,0.0073987404954999015,0.0074254456582535195,0.0074521364439566065,0.0074788126991696055,0.007505474270531588,0.00753212100475885,0.0075587527486435414,0.007585369349052331,0.007611970652925097,0.0076385565072736306,0.007665126759180396,0.007691681255797281,0.007718219867787691,0.0077447429944921715,0.007771250793597869,0.007797743215927912,0.007824220212377393,0.007850681733912096,0.007877127731567237,0.007903558156446219,0.007929972959719441,0.007956372092623119,0.007982755506458114,0.008009123152588822,0.008035474982442047,0.008061810947505937,0.008088130999328902,0.008114435089518585,0.008140723169740849,0.008166995191718764,0.008193251107231642,0.00821949086811408,0.00824571442625501,0.008271921733596796,0.008298112742134324,0.008324287403914126,0.008350445671033508,0.00837658749563971,0.00840271282992907,0.008428821626146216,0.008454913836583273,0.00848098941357906,0.008507048309518346,0.008533090476831094,0.00855911586799171,0.008585124435518341,0.00861111613197215,0.008637090909956638,0.008663048722116937,0.008688989521139175,0.008714913259749792,0.008740819890714915,0.008766709366839716,0.008792581640967802,0.008818436657963703,0.008844274344113036,0.008870094649867492,0.008895897527787217,0.008921682930467736,0.008947450810539383,0.008973201120666774,0.008998933813548271,0.009024648841915475,0.009050346158532693,0.009076025716196458,0.009101687467735028,0.009127331366007897,0.009152957363905338,0.009178565414347917,0.009204155470286055,0.009229727484699567,0.009255281410597222,0.009280817201016318,0.009306334809022244,0.009331834187708077,0.009357315290194162,0.009382778069627711,0.009408222479182408,0.009433648472058027,0.009459056001480032,0.00948444502069922,0.009509815482991344,0.009535167341656754,0.00956050055002003,0.009585815061429654,0.009611110829257644,0.009636387806899226,0.009661645947772505,0.009686885205318133,0.00971210553299898,0.009737306884299848,0.009762489212727129,0.009787652471808501,0.009812796615092665,0.00983792159614901,0.009863027368567335,0.009888113885957573,0.009913181101949504,0.009938228970192486,0.009963257444355169,0.009988266478125243,0.010013256025209177,0.010038226039331945,0.010063176474236792,0.01008810728368497,0.010113018423195353,0.010137909859224468,0.010162781551015252,0.010187633455926963,0.010212465531335743,0.01023727773463439,0.010262070023232124,0.010286842354554387,0.01031159468604259,0.01033632697515395,0.010361039179361233,0.010385731256152579,0.010410403163031282,0.010435054857515596,0.010459686297138544,0.010484297439447713,0.010508888242005071,0.010533458662386773,0.010558008658182986,0.010582538186997698,0.01060704720644854,0.010631535674166618,0.010656003547796332,0.0106804507849952,0.010704877343433703,0.010729283180795114,0.010753668254775329,0.010778032523082707,0.01080237594343793,0.010826698473573816,0.010851000071235194,0.010875280694178738,0.010899540300172815],\"thickness\":2,\"color\":\"#00CC96\",\"width\":0,\"type\":\"data\",\"opacity\":0.1},\"mode\":\"lines\",\"x\":[0.0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.5,9.0,9.5,10.0,10.5,11.0,11.5,12.0,12.5,13.0,13.5,14.0,14.5,15.0,15.5,16.0,16.5,17.0,17.5,18.0,18.5,19.0,19.5,20.0,20.5,21.0,21.5,22.0,22.5,23.0,23.5,24.0,24.5,25.0,25.5,26.0,26.5,27.0,27.5,28.0,28.5,29.0,29.5,30.0,30.5,31.0,31.5,32.0,32.5,33.0,33.5,34.0,34.5,35.0,35.5,36.0,36.5,37.0,37.5,38.0,38.5,39.0,39.5,40.0,40.5,41.0,41.5,42.0,42.5,43.0,43.5,44.0,44.5,45.0,45.5,46.0,46.5,47.0,47.5,48.0,48.5,49.0,49.5,50.0,50.5,51.0,51.5,52.0,52.5,53.0,53.5,54.0,54.5,55.0,55.5,56.0,56.5,57.0,57.5,58.0,58.5,59.0,59.5,60.0,60.5,61.0,61.5,62.0,62.5,63.0,63.5,64.0,64.5,65.0,65.5,66.0,66.5,67.0,67.5,68.0,68.5,69.0,69.5,70.0,70.5,71.0,71.5,72.0,72.5,73.0,73.5,74.0,74.5,75.0,75.5,76.0,76.5,77.0,77.5,78.0,78.5,79.0,79.5,80.0,80.5,81.0,81.5,82.0,82.5,83.0,83.5,84.0,84.5,85.0,85.5,86.0,86.5,87.0,87.5,88.0,88.5,89.0,89.5,90.0,90.5,91.0,91.5,92.0,92.5,93.0,93.5,94.0,94.5,95.0,95.5,96.0,96.5,97.0,97.5,98.0,98.5,99.0,99.5,100.0,100.5,101.0,101.5,102.0,102.5,103.0,103.5,104.0,104.5,105.0,105.5,106.0,106.5,107.0,107.5,108.0,108.5,109.0,109.5,110.0,110.5,111.0,111.5,112.0,112.5,113.0,113.5,114.0,114.5,115.0,115.5,116.0,116.5,117.0,117.5,118.0,118.5,119.0,119.5,120.0,120.5,121.0,121.5,122.0,122.5,123.0,123.5,124.0,124.5,125.0,125.5,126.0,126.5,127.0,127.5,128.0,128.5,129.0,129.5,130.0,130.5,131.0,131.5,132.0,132.5,133.0,133.5,134.0,134.5,135.0,135.5,136.0,136.5,137.0,137.5,138.0,138.5,139.0,139.5,140.0,140.5,141.0,141.5,142.0,142.5,143.0,143.5,144.0,144.5,145.0,145.5,146.0,146.5,147.0,147.5,148.0,148.5,149.0,149.5,150.0,150.5,151.0,151.5,152.0,152.5,153.0,153.5,154.0,154.5,155.0,155.5,156.0,156.5,157.0,157.5,158.0,158.5,159.0,159.5,160.0,160.5,161.0,161.5,162.0,162.5,163.0,163.5,164.0,164.5,165.0,165.5,166.0,166.5,167.0,167.5,168.0,168.5,169.0,169.5,170.0,170.5,171.0,171.5,172.0,172.5,173.0,173.5,174.0,174.5,175.0,175.5,176.0,176.5,177.0,177.5,178.0,178.5,179.0,179.5,180.0,180.5,181.0,181.5,182.0,182.5,183.0,183.5,184.0,184.5,185.0,185.5,186.0,186.5,187.0,187.5,188.0,188.5,189.0,189.5,190.0,190.5,191.0,191.5,192.0,192.5,193.0,193.5,194.0,194.5,195.0,195.5,196.0,196.5,197.0,197.5,198.0,198.5,199.0,199.5,200.0],\"opacity\":0.8,\"y\":[0.0,0.000843747963023915,0.001438325294836919,0.001857313690706052,0.0021525655718124107,0.002360620901873288,0.002507229083250358,0.002610535501015211,0.0026833270564593577,0.0027346145767371136,0.002770747918437122,0.0027962017792114483,0.0028141294455110424,0.002826753015413496,0.0028356383863329076,0.0028418890396880885,0.0028462825889419593,0.002849367013548666,0.0028515284742098635,0.00285303909584256,0.002854090643067228,0.0028548182517103456,0.00285531715319174,0.002855654449865246,0.0028558774387309337,0.0028560194430795175,0.002856103950833273,0.0028561475108851548,0.002856161780944084,0.0028561549818574405,0.0028561329078254974,0.0028560996377694236,0.0028560580512862993,0.0028560101734365767,0.002855957428389996,0.0028559008255244797,0.002855841077497889,0.0028557786805760333,0.002855713990589646,0.0028556472546203116,0.002855578646133526,0.0028555082870886967,0.0028554362665316416,0.002855362647447169,0.0028552874713809575,0.002855210769524162,0.002855132564178511,0.002855052869364645,0.0028549716951862722,0.002854889049286192,0.0028548049380838466,0.0028547193661380677,0.002854632335798897,0.002854543848673265,0.0028544539070084816,0.002854362511441634,0.002854269662375927,0.0028541753602280163,0.0028540796056827434,0.002853982399558233,0.002853883742482325,0.0028537836347549425,0.0028536820764949763,0.0028535790679271892,0.002853474609454631,0.002853368701219116,0.00285326134308158,0.0028531525344750405,0.0028530422756747023,0.002852930567753078,0.0028528174117521464,0.0028527028081559444,0.0028525867569527846,0.002852469258067732,0.002852350311728479,0.0028522299184012977,0.0028521080782983642,0.0028519847911527745,0.002851860056932374,0.0028517338694585273,0.002851606224252974,0.0028514771258707464,0.002851346583397988,0.0028512146038368238,0.0028510811886933132,0.0028509463349222787,0.002850810038655925,0.0028506722988516893,0.0028505331181386284,0.0028503924997208938,0.0028502504422114852,0.002850106938719451,0.0028499619897436688,0.0028498155343694744,0.002849667467339657,0.002849517799197781,0.002849366645317636,0.0028492141373056717,0.002849060347652475,0.0028489052659969004,0.0028487488269478686,0.0028485909650847194,0.002848431662527276,0.0028482709583314988,0.0028481089069257544,0.0028479455048563123,0.0028477806512586827,0.002847614278923456,0.0028474461308969448,0.002847274268001478,0.002847097674556213,0.0028469175975186565,0.002846736448444411,0.00284655623777249,0.0028463776224797116,0.0028461998971568724,0.0028460217313501456,0.002845842152583299,0.0028456611948300286,0.0028454797763407913,0.002845298738645181,0.0028451175702489334,0.0028449341540242607,0.0028447479823492275,0.002844553957980632,0.00284432892032297,0.002844066729269131,0.002843786269941464,0.002843515223837293,0.0028432724676260364,0.002843060038320377,0.0028428665195056276,0.0028426776912849104,0.002842487346582877,0.0028423013084475797,0.002842130886998593,0.0028419782906898257,0.0028418258545873016,0.00284165361583273,0.0028414667791126407,0.0028411728894202457,0.002840708337565661,0.0028401393893320265,0.002839594399758842,0.0028391690075702416,0.0028388788314806313,0.0028386748185926392,0.0028384977042861964,0.0028383300328827074,0.002838206858954764,0.0028381696004396674,0.002838191546704097,0.0028381682373977758,0.0028380883167509283,0.002837882198524984,0.0028373854232425343,0.0028366543417174778,0.0028359016805067612,0.00283531218241048,0.002834934659991474,0.002834700101132646,0.002834520575355593,0.0028343806079915027,0.0028343414163245996,0.002834438937519763,0.0028345689224992063,0.002834602362887927,0.002834542621047498,0.0028342659739044296,0.0028337636575479722,0.0028331798370016736,0.002832671589418816,0.002832303019886682,0.002832041642882819,0.0028318292602573,0.0028316538699512802,0.0028315536485039885,0.0028315387647476226,0.0028315217161316124,0.002831442466400178,0.0028312778419702913,0.0028309888865259585,0.002830613328560087,0.00283022885180974,0.002829889896876158,0.0028296027897884947,0.0028293452204258013,0.0028291024380324753,0.0028288839925482475,0.002828701429124723,0.0028285290587253325,0.0028283378660700167,0.002828132336597221,0.002827913258021569,0.002827681418057683,0.0028274376044201844,0.002827182604823696,0.0028269172069828406,0.0028266421986122402,0.002826358367426517,0.0028260665011402945,0.002825767387468194,0.0028254618141248383,0.0028251505688248503,0.0028248344392828514,0.0028245142132134644,0.002824190678331312,0.0028238646223510164,0.0028235368329872002,0.002823208097954485,0.0028228792049674943,0.00282255094174085,0.002822224095989174,0.0028218994554270902,0.0028215776399414523,0.0028212559448421498,0.002820933161095309,0.0028206092738385004,0.002820284268209298,0.00281995812934527,0.002819630842383992,0.002819302392463034,0.002818972764719968,0.0028186419442923654,0.0028183099163177987,0.0028179766659338404,0.0028176421782780607,0.0028173064384880322,0.0028169694317013274,0.002816631143055517,0.0028162915576881737,0.0028159506607368687,0.0028156084373391742,0.0028152648726326624,0.0028149199517549044,0.0028145736598434727,0.0028142259820359383,0.0028138769034698734,0.0028135264092828505,0.0028131744846124403,0.002812821114596216,0.002812466284371748,0.002812109995079608,0.002811752318927633,0.00281139326772707,0.002811032842663008,0.0028106710449205363,0.002810307875684744,0.0028099433361407212,0.0028095774274735554,0.0028092101508683373,0.0028088415075101544,0.0028084714985840966,0.0028081001252752537,0.002807727388768714,0.002807353290249567,0.002806977830902901,0.0028066010119138065,0.002806222834467372,0.0028058432997486865,0.002805462408942839,0.002805080163234919,0.0028046965638100154,0.0028043116118532173,0.002803925308549614,0.002803537655084295,0.0028031486526423487,0.0028027583024088643,0.0028023666055689315,0.002801973563307639,0.0028015791768100764,0.002801183447261332,0.002800786375846496,0.002800387963750656,0.0027999882121589026,0.002799587122149208,0.002799184692415293,0.002798780922832747,0.0027983758142339932,0.0027979693674514534,0.00279756158331755,0.0027971524626647076,0.002796742006325348,0.0027963302151318933,0.002795917089916766,0.00279550263151239,0.0027950868407511874,0.002794669718465581,0.0027942512654879933,0.002793831482650847,0.0027934103707865656,0.002792987930727571,0.002792564163306286,0.0027921390693551344,0.0027917126497065373,0.002791284905192918,0.0027908558366466995,0.0027904254449003046,0.0027899937307861553,0.002789560695136675,0.0027891263387842865,0.0027886906625614123,0.002788253667300475,0.002787815353833897,0.002787375722994102,0.0027869347756135114,0.0027864925125245495,0.0027860489345596373,0.0027856040425511992,0.002785157837331656,0.0027847103197334326,0.0027842614905889502,0.0027838113507306322,0.002783359900990901,0.002782907142202179,0.00278245307519689,0.0027819977008074555,0.0027815410198699926,0.0027810830332863985,0.0027806237420120758,0.0027801631470038297,0.0027797012492184665,0.0027792380496127903,0.0027787735491436073,0.0027783077487677226,0.002777840649441942,0.00277737225212307,0.002776902557767913,0.0027764315673332756,0.002775959281775964,0.002775485702052783,0.0027750108291205375,0.0027745346639360337,0.0027740572074560765,0.002773578460637472,0.002773098424437025,0.002772617099811541,0.0027721344877178248,0.0027716505891126836,0.0027711654049529205,0.002770678936195342,0.002770191183796754,0.00276970214871396,0.002769211831903768,0.0027687202343229817,0.002768227356928407,0.002767733200676848,0.0027672377665251126,0.002766741055430004,0.0027662430683483286,0.0027657438062368912,0.0027652432700524983,0.002764741460751954,0.0027642383792920644,0.002763734026629634,0.0027632284037214694,0.0027627215115243755,0.0027622133509951578,0.002761703923090621,0.002761193228767571,0.002760681268982814,0.002760168044693154,0.0027596535568553972,0.002759137806426348,0.002758620794362813,0.002758102521621597,0.0027575829891595058,0.0027570621979333444,0.0027565401489336697,0.0027560168433704967,0.00275549228232591,0.0027549664668460633,0.002754439397977113,0.002753911076765215,0.002753381504256523,0.002752850681497195,0.0027523186095333844,0.0027517852894112477,0.00275125072217694,0.0027507149088766172,0.0027501778505564342,0.0027496395482625477,0.0027491000030411116,0.002748559215938282,0.0027480171880002154,0.002747473920273066,0.0027469294138029892,0.0027463836696361415,0.002745836688818678,0.002745288472396754,0.002744739021416525,0.002744188336924147,0.0027436364199657746,0.002743083271587564,0.00274252889283567,0.00274197328475625,0.002741416448395457,0.002740858384799447,0.0027402990950143773,0.002739738580086401,0.002739176841061676]},{\"name\":\"Recovered\",\"line\":{\"color\":\"#AB63FA\"},\"error_y\":{\"array\":[0.0,2.890739647067071e-5,0.00010024483487609169,0.00019731643526665386,0.0003095430900468487,0.0004303279616513753,0.0005556513637957355,0.0006831496651371648,0.0008115142990279642,0.0009401017066635158,0.0010686817236116599,0.0011972764153907872,0.0013260577146343964,0.0014552830457773209,0.0015852553182099704,0.0017162984164294356,0.0018487424457696371,0.0019829150358468815,0.0021191363547347604,0.0022577163524084513,0.002398953314021597,0.002543133165137875,0.0026905291962519918,0.0028414020194192664,0.0029959996312812543,0.0031545575704417504,0.003317299095114392,0.003484435409760771,0.003656165913464477,0.003832678476807828,0.004014149756302798,0.004200745537252634,0.00439262109968776,0.004589921616813772,0.004792782568780818,0.005001330174538349,0.0052156818378406595,0.00543594659947046,0.005662225589087594,0.005894612478610143,0.006133193926487184,0.006378050013707996,0.0066292546684496275,0.006886876074804945,0.007150977064825353,0.00742161549431958,0.007698844599177145,0.007982713331735862,0.008273266677800394,0.008570545957893671,0.008874589107845774,0.009185430937565292,0.00950310337266145,0.009827635682981997,0.010159054695147931,0.010497384983633442,0.01084264904530933,0.011194867469369471,0.01155405910414946,0.011920241193933753,0.012293429499287417,0.012673638411947286,0.013060881068155034,0.013455169457443098,0.013856514517426283,0.0142649262112462,0.014680413576932899,0.015102984758777475,0.015532647244307515,0.015969407921933867,0.01641327303782794,0.016864248181651303,0.017322338338668086,0.01778754798412841,0.01825988116749719,0.018739341541179136,0.01922593233247677,0.019719656345458966,0.02022051607580109,0.02072851283076522,0.021243647859600978,0.021765923427402047,0.022295342211600944,0.022831906378864383,0.023375617103934432,0.023926474708865633,0.024484479208109262,0.025049630850500323,0.025621930260472443,0.026201378003615806,0.026787973840962733,0.027381716595901676,0.027982606048934662,0.028590632873149526,0.02920578104591744,0.02982805136656406,0.03045746002690155,0.031094025674279956,0.03173775827342642,0.032388655499196325,0.03304670676010057,0.03371190131959628,0.03438423539753291,0.035063713639384736,0.035750342971454976,0.03644412164591365,0.037145033245793435,0.03785306626679177,0.0385681806564455,0.039290083182130106,0.04001861804998764,0.04075396978661099,0.04149649970960759,0.042246510330920986,0.043004100790077576,0.043769164220516056,0.04454149836868717,0.04532095434151605,0.046107535512079016,0.046901379777904734,0.047702613898931455,0.048511158844724574,0.049326690216203506,0.05014912812854834,0.050977691045923014,0.05180883161529584,0.05264159602695905,0.05347886240939352,0.054324867961852694,0.05518251248551634,0.05605211831489763,0.05693194030729714,0.05781979612988488,0.05871473010605885,0.05961763709268723,0.06053026054640164,0.061452944506264096,0.062382965287266195,0.06331723639831785,0.06425655379151972,0.06518660747686987,0.06609751885974516,0.06699950501978871,0.06791242956661075,0.06885112686039975,0.0698180499509656,0.07080561868798166,0.07180464914630158,0.07281243354579328,0.07383442297967212,0.07487707048783729,0.07593623739286218,0.07699566515756563,0.07805356943259129,0.07909908080626114,0.0801065115256752,0.0810845962392025,0.08206650363952071,0.08308108403053796,0.08413599404348328,0.08522048515421629,0.0863208321070007,0.0874346230137267,0.0885714470986007,0.0897369505800422,0.09091482363388528,0.09208484687272746,0.09324752379294858,0.09438341851553708,0.09549111519977438,0.09659321280081715,0.09771436926668466,0.09886466626301217,0.10003901683931542,0.10122828475394034,0.10243058839819787,0.10365193925446527,0.10489394694976235,0.10614284215574495,0.10738916542240144,0.10862925035212906,0.10985693848984258,0.11107815993444137,0.11230515575636514,0.11354651281860202,0.11480323243616847,0.11607179571539242,0.11734987439772206,0.11863897715123858,0.11994092878609566,0.12125166900819118,0.12256660880071844,0.12388645280003642,0.12521132071634905,0.1265413324504395,0.12787660808520754,0.12921726787771728,0.13056343225171999,0.13191522179061954,0.13327275723084978,0.13463615945563592,0.13600554948911434,0.13738104849078622,0.1387627777502836,0.1401508586824264,0.14154541282255173,0.14294656182209786,0.1443544274444259,0.1457691315608643,0.1471907961469615,0.1486195432789341,0.15005549513029698,0.1514987739686657,0.15294950215271821,0.15440777546319387,0.1558731613040689,0.1573454642396352,0.15882467850329296,0.16031079832617065,0.1618038179372114,0.16330373156325664,0.16481053342912616,0.16632421775769518,0.16784477876996892,0.1693722106851537,0.17090650772072594,0.17244766409249795,0.17399567401468202,0.17555053169995138,0.17711223135949927,0.17868076720309575,0.18025613343914218,0.18183832427472402,0.18342733391566135,0.1850231565665577,0.18662578643084698,0.1882352177108387,0.18985144460776152,0.19147446132180515,0.19310426205216083,0.19474084099706024,0.1963841923538128,0.19803431291341525,0.19969121081722102,0.2013548841700995,0.20302532933941506,0.2047025426927227,0.20638652059777018,0.20807725942250027,0.20977475553505226,0.2114790053037636,0.21319000509717126,0.21490775128401315,0.21663224023322922,0.21836346831396203,0.22010143189555798,0.22184612734756767,0.22359755103974654,0.22535569934205532,0.22712056862466012,0.22889215525793272,0.23067045561245067,0.23245546605899728,0.23424718296856145,0.2360456027123372,0.23785072166172405,0.23966253618832564,0.24148104266395035,0.24330623746061011,0.24513811695051985,0.2469766775060972,0.2488219154999614,0.2506738273049329,0.252532409294032,0.2543976578404787,0.2562695693173405,0.25814813995413016,0.26003336564565016,0.2619252422404157,0.2638237655869793,0.265728931533934,0.26764073592991683,0.2695591746236108,0.2714842434637479,0.27341593829911176,0.2753542549785397,0.27729918935092523,0.27925073726522015,0.28120889457043635,0.28317365711564824,0.28514502074999404,0.28712298132267755,0.28910753468297035,0.2910986766802124,0.29309640316381436,0.2951007099832583,0.2971115929880995,0.299129048027967,0.30115307095256555,0.30318365761167565,0.30522080385515565,0.30726450553294166,0.309314758495049,0.31137155859157273,0.31343490167268867,0.31550478358865347,0.31758120018980596,0.31966414732656734,0.3217536208494413,0.32384961660901557,0.3259521304559611,0.3280611582410334,0.33017669581507225,0.3322987390290024,0.33442728373383357,0.33656232578066086,0.33870386102066474,0.3408518854437969,0.3430063951158259,0.34516738540687736,0.3473348516410522,0.34950878914243283,0.3516891932350852,0.35387605924306137,0.356069382490402,0.3582691583011377,0.360475381999292,0.3626880489088828,0.36490715435392423,0.36713269365842927,0.3693646621464104,0.37160305514188235,0.37384786796886316,0.376099095951376,0.3783567344134504,0.38062077867912447,0.3828912240724455,0.3851680659174717,0.3874512995382737,0.38974092025893536,0.3920369234035554,0.3943393042962484,0.39664805826114596,0.3989631806223978,0.4012846667041725,0.40361251183065927,0.40594671132606786,0.40828726051463043,0.4106341547206018,0.41298738926826056,0.4153469594819099,0.41771286068587843,0.4200850882045204,0.42246363736221715,0.4248485034833777,0.4272396818924386,0.4296371679138654,0.43204095687215305,0.43445104409182633,0.43686742489744007,0.4392900946135807,0.4417190485648654,0.44415428207594365,0.4465957904714971,0.44904356907624005,0.45149761321492016,0.45395791821231846,0.4564244793932499,0.4588972919038671,0.46137634973850417,0.4638616475851641,0.466353180323297,0.46885094283233275,0.4713549299916828,0.47386513668074065,0.4763815577788837,0.4789041881654746,0.4814330227198619,0.4839680563213815,0.48650928384935765,0.48905670018310443,0.49161030020192614,0.4941700787851189,0.49673603081197143,0.4993081511617657,0.5018864347137785,0.5044708763472817,0.5070614709415439,0.5096582133758301,0.5122610985294037,0.5148701212815268,0.5174852765114608,0.5201065590984675,0.5227339639218096,0.5253674858607519,0.5280071197945607,0.5306528606025058,0.5333047031638611,0.5359626423579043,0.5386266730639175,0.5412967901611897],\"thickness\":2,\"color\":\"#AB63FA\",\"width\":0,\"type\":\"data\",\"opacity\":0.1},\"mode\":\"lines\",\"x\":[0.0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.5,9.0,9.5,10.0,10.5,11.0,11.5,12.0,12.5,13.0,13.5,14.0,14.5,15.0,15.5,16.0,16.5,17.0,17.5,18.0,18.5,19.0,19.5,20.0,20.5,21.0,21.5,22.0,22.5,23.0,23.5,24.0,24.5,25.0,25.5,26.0,26.5,27.0,27.5,28.0,28.5,29.0,29.5,30.0,30.5,31.0,31.5,32.0,32.5,33.0,33.5,34.0,34.5,35.0,35.5,36.0,36.5,37.0,37.5,38.0,38.5,39.0,39.5,40.0,40.5,41.0,41.5,42.0,42.5,43.0,43.5,44.0,44.5,45.0,45.5,46.0,46.5,47.0,47.5,48.0,48.5,49.0,49.5,50.0,50.5,51.0,51.5,52.0,52.5,53.0,53.5,54.0,54.5,55.0,55.5,56.0,56.5,57.0,57.5,58.0,58.5,59.0,59.5,60.0,60.5,61.0,61.5,62.0,62.5,63.0,63.5,64.0,64.5,65.0,65.5,66.0,66.5,67.0,67.5,68.0,68.5,69.0,69.5,70.0,70.5,71.0,71.5,72.0,72.5,73.0,73.5,74.0,74.5,75.0,75.5,76.0,76.5,77.0,77.5,78.0,78.5,79.0,79.5,80.0,80.5,81.0,81.5,82.0,82.5,83.0,83.5,84.0,84.5,85.0,85.5,86.0,86.5,87.0,87.5,88.0,88.5,89.0,89.5,90.0,90.5,91.0,91.5,92.0,92.5,93.0,93.5,94.0,94.5,95.0,95.5,96.0,96.5,97.0,97.5,98.0,98.5,99.0,99.5,100.0,100.5,101.0,101.5,102.0,102.5,103.0,103.5,104.0,104.5,105.0,105.5,106.0,106.5,107.0,107.5,108.0,108.5,109.0,109.5,110.0,110.5,111.0,111.5,112.0,112.5,113.0,113.5,114.0,114.5,115.0,115.5,116.0,116.5,117.0,117.5,118.0,118.5,119.0,119.5,120.0,120.5,121.0,121.5,122.0,122.5,123.0,123.5,124.0,124.5,125.0,125.5,126.0,126.5,127.0,127.5,128.0,128.5,129.0,129.5,130.0,130.5,131.0,131.5,132.0,132.5,133.0,133.5,134.0,134.5,135.0,135.5,136.0,136.5,137.0,137.5,138.0,138.5,139.0,139.5,140.0,140.5,141.0,141.5,142.0,142.5,143.0,143.5,144.0,144.5,145.0,145.5,146.0,146.5,147.0,147.5,148.0,148.5,149.0,149.5,150.0,150.5,151.0,151.5,152.0,152.5,153.0,153.5,154.0,154.5,155.0,155.5,156.0,156.5,157.0,157.5,158.0,158.5,159.0,159.5,160.0,160.5,161.0,161.5,162.0,162.5,163.0,163.5,164.0,164.5,165.0,165.5,166.0,166.5,167.0,167.5,168.0,168.5,169.0,169.5,170.0,170.5,171.0,171.5,172.0,172.5,173.0,173.5,174.0,174.5,175.0,175.5,176.0,176.5,177.0,177.5,178.0,178.5,179.0,179.5,180.0,180.5,181.0,181.5,182.0,182.5,183.0,183.5,184.0,184.5,185.0,185.5,186.0,186.5,187.0,187.5,188.0,188.5,189.0,189.5,190.0,190.5,191.0,191.5,192.0,192.5,193.0,193.5,194.0,194.5,195.0,195.5,196.0,196.5,197.0,197.5,198.0,198.5,199.0,199.5,200.0],\"opacity\":0.8,\"y\":[0.0,0.0001116083236174025,0.00040119417682300606,0.0008161980461835639,0.0013195815656131865,0.0018852439934102256,0.0024947922378881957,0.003135264724041678,0.003797527420766359,0.004475143534082046,0.005163576994307482,0.005859631154389776,0.006561053250085561,0.007266255665017809,0.007974119507586253,0.008683856190853248,0.009394909896339837,0.010106888834078155,0.010819516802042836,0.011532599054689908,0.012245998248416523,0.01295961749006419,0.013673388390552925,0.014387262653723401,0.015101206130622755,0.015815194653915128,0.016529211081830267,0.01724324322926625,0.017957282405002894,0.018671322372854637,0.019385358630059454,0.020099387899142656,0.020813407759383167,0.021527416400461165,0.022241412441352342,0.022955394797352487,0.02366936259574461,0.024383315118424745,0.025097251747642983,0.025811171943357525,0.026525075218160495,0.02723896112147143,0.027952829226259898,0.028666679124151603,0.02938051042212681,0.03009432273459631,0.030808115682398704,0.03152188889227171,0.03223564199383611,0.0329493746185039,0.0336630863986059,0.034376776967847605,0.035090445961558185,0.03580409301564296,0.036517717765610705,0.03723131984814581,0.03794489890016592,0.03865845455862462,0.03937198646033477,0.04008549424206533,0.0407989775407735,0.04151243599370445,0.04222586923828181,0.042939276911915486,0.04365265865194218,0.04436601409594306,0.04507934288173838,0.045792644647531924,0.046505919030977255,0.047219165669217314,0.04793238419947614,0.048645574259437496,0.049358735487198456,0.05007186752096468,0.050784969998787885,0.05149804255861108,0.05221108483863442,0.05292409647744591,0.05363707711353767,0.054350026389865025,0.0550629439482318,0.055775829424056234,0.056488682449588185,0.05720150265863541,0.05791428968900141,0.05862704318181245,0.05933976277885353,0.06005244811996105,0.06076509884242438,0.06147771458319023,0.06219029498257723,0.06290283968488578,0.0636153483292302,0.06432782059866314,0.06504025620800111,0.06575265478940494,0.06646501590022488,0.06717733908629538,0.0678896239357641,0.06860187009604819,0.06931407725396023,0.0700262450964135,0.07073837327644313,0.07145046140649075,0.07216250908810486,0.07287451596426553,0.0735864817476237,0.07429840612690075,0.07501028892646582,0.0757221311725704,0.07643393323173321,0.07714569385410947,0.07785741095796686,0.07856908274825002,0.0792807083969372,0.07999228804940445,0.08070382229765277,0.0814153114780251,0.08212675520792871,0.08283815247312858,0.08354950231429306,0.0842608047388314,0.08497206090131285,0.08568327080663274,0.08639443773922624,0.08710557788796094,0.08781669528140729,0.08852777606965563,0.08923880011883102,0.08994975358581597,0.0906606346584098,0.09137145113598312,0.09208221282079138,0.0927929237905123,0.0935035795282075,0.09421417159696484,0.09492469806249249,0.0956351711888014,0.09634560488177553,0.09705599506894137,0.09776640744888294,0.09847688710830581,0.09918738634612173,0.09989781310364763,0.10060809869746308,0.10131823161442155,0.10202824654543502,0.10273818547670327,0.1034480605239822,0.10415784628741959,0.10486751282114698,0.10557707885371055,0.10628661866171352,0.10699614000564746,0.10770569225113796,0.10841539253956171,0.10912520025245864,0.10983496305049734,0.11054454858993659,0.1112539216441851,0.11196313116692644,0.11267223962739713,0.11338125772775762,0.11409014137710807,0.11479886454654063,0.11550750136472077,0.11621614365075483,0.11692478865315213,0.11763352441433149,0.11834235684005301,0.11905118257505615,0.11975988904076237,0.1204684300850663,0.12117682856667603,0.12188512571466542,0.1225933297521422,0.12330141305123825,0.12400936799505768,0.12471725675038585,0.12542512186151894,0.12613297953544897,0.12684085725347422,0.12754872770746564,0.1282565350431077,0.1289642400135197,0.12967183774890303,0.1303793438393405,0.1310867684738326,0.13179410447906797,0.13250134325637566,0.1332085028104576,0.13391560351937395,0.13462264182714614,0.13532961682331787,0.13603652759743284,0.13674337323903463,0.13745015283766693,0.13815686548287343,0.1388635102641978,0.13957008627118367,0.14027659259337472,0.1409830283203146,0.141689392541547,0.14239568434661556,0.14310190282506396,0.14380804706643585,0.1445141161602749,0.14522010919612477,0.14592602526352913,0.14663186345203166,0.147337622851176,0.1480433025505058,0.14874890163956472,0.14945441920789648,0.15015985446483643,0.15086520899400035,0.15157048331449346,0.1522756770934736,0.1529807899980986,0.1536858216955264,0.15439077185291483,0.15509564013742172,0.15580042621620502,0.1565051297564225,0.15720975042523208,0.15791428788979167,0.15861874181725905,0.1593231118747921,0.16002739772954874,0.16073159904868678,0.1614357154993641,0.16213974674873863,0.16284369246396815,0.16354755231221055,0.1642513259606237,0.16495501307636548,0.1656586133265937,0.16636212637846634,0.16706555189914118,0.1677688895557761,0.16847213901552896,0.16917529994555763,0.1698783720007933,0.170581354784385,0.17128424794921704,0.1719870511565109,0.17268976406748798,0.1733923863433697,0.17409491764537766,0.17479735763473317,0.17549970597265777,0.17620196232037283,0.17690412633909988,0.1776061976900603,0.1783081760344756,0.1790100610335672,0.17971185234855655,0.18041354964066514,0.18111515257111438,0.1818166608011257,0.18251807399192063,0.1832193918047206,0.183920613900747,0.18462173994122133,0.18532276958736502,0.18602370250039954,0.18672453834154631,0.18742527677202686,0.18812591745306256,0.18882646004587492,0.18952690421168533,0.19022724961171528,0.19092749590718622,0.1916276427593196,0.19232768982933685,0.1930276367781683,0.19372748326254527,0.19442722894809703,0.19512687350388389,0.1958264165989663,0.19652585790240445,0.19722519708325886,0.1979244338105898,0.1986235677534576,0.19932259858092255,0.20002152596204514,0.2007203495658857,0.20141906906150442,0.20211768411796185,0.2028161944043182,0.20351459958963383,0.2042128993429692,0.2049110933333846,0.2056091812299403,0.20630716270169674,0.20700503741771423,0.20770280504705307,0.20840046525877376,0.2090980177219365,0.20979546210560174,0.21049279807882978,0.21119002531068098,0.21188714347021562,0.21258415222649413,0.21328105124857685,0.21397784020552413,0.21467451876639626,0.21537108660025372,0.2160675433761567,0.2167638887631656,0.21746012243034082,0.2181562440467427,0.21885225328143157,0.21954814980346776,0.22024393328191166,0.22093960338582358,0.22163515978426385,0.2223306021422528,0.22302593012035157,0.2237211433968414,0.2244162416512513,0.2251112245631099,0.225806091811946,0.2265008430772884,0.22719547803866594,0.22788999637560728,0.22858439776764122,0.22927868189429657,0.22997284843510207,0.23066689706958657,0.2313608274772787,0.23205463933770737,0.23274833233040132,0.23344190613488924,0.2341353604307,0.23482869489736238,0.23552190921440505,0.23621500306135693,0.2369079761177467,0.23760082806310312,0.238293558576955,0.23898616733883118,0.2396786540282603,0.2403710183247712,0.24106325990789265,0.2417553784571534,0.24244737365208235,0.24313924517220808,0.24383099269705946,0.24452261590616528,0.24521411447905433,0.2459054880952553,0.24659673643429705,0.2472878591757083,0.24797885599901784,0.2486697265837545,0.24936047060944694,0.250051087755624,0.25074157770181443,0.2514319401275471,0.2521221747123507,0.25281228113575394,0.2535022590772857,0.2541921082164747,0.25488182823284977,0.25557141880593964,0.2562608796152731,0.25695021034037885,0.25763941066441254,0.25832848029442174,0.2590174189242088,0.25970622624375417,0.26039490194303827,0.26108344571204145,0.2617718572407442,0.26246013621912684,0.26314828233716975,0.2638362952848534,0.26452417475215817,0.2652119204290645,0.26589953200555266,0.26658700917160316,0.2672743516171964,0.2679615590323127,0.2686486311069326,0.2693355675310363,0.27002236799460433,0.2707090321876171,0.27139555980005503,0.27208195052189843,0.2727682040431276,0.2734543200537233,0.27414029824366554,0.27482613830293495,0.27551183992151185,0.27619740278937666,0.2768828265965098,0.27756811103289164,0.2782532557885025,0.278938260553323,0.27962312501733333]}],\"layout\":{\"showlegend\":true,\"xaxis\":{\"autorange\":true,\"title\":\"Time (Days)\",\"type\":\"linear\"},\"annotations\":[],\"title\":\"Covid-19 SEIR Model with Error Bars\",\"yaxis\":{\"autorange\":false,\"range\":[0,100],\"title\":\"%\",\"type\":\"linear\"},\"shapes\":[],\"legend\":{}}},\"0.75\":{\"config\":{\"responsive\":true},\"data\":[{\"name\":\"Susceptible\",\"line\":{\"color\":\"#636EFA\"},\"error_y\":{\"array\":[0.0,4.215573592935147e-5,0.00014867260885367072,0.00029899675001808756,0.0004812058743332441,0.0006886911461118309,0.0009180850111844762,0.0011679792487605685,0.0014381403271230267,0.0017290350051832816,0.002041547618955658,0.002376814588564382,0.002736129822178018,0.0031208924604574926,0.003532579564593754,0.003972733254883118,0.004442956037220384,0.004944910652194324,0.00548032232478928,0.00605098222331862,0.006658751475169687,0.007305565410308893,0.007993437861604669,0.008724465458639558,0.009500831937273232,0.010324812420128325,0.011198777747179754,0.012125198838652805,0.013106651142101005,0.014145819178997994,0.015245501203122114,0.01640861399731679,0.017638197809532376,0.018937421471504897,0.020309587667629227,0.021758138388490878,0.02328666060143926,0.02489889209371897,0.02659872747762473,0.02839022457741534,0.030277610976715788,0.03226529063605949,0.03435785086000262,0.03656006969378999,0.03887692333214647,0.04131359385892704,0.0438754773093177,0.04656819222154343,0.04939758820147148,0.05236975465029036,0.05549103014717834,0.058768012261571266,0.06220756723870846,0.065816840082098,0.06960326558480373,0.07357457983991814,0.07773883111099784,0.08210439108477086,0.08667996745686901,0.09147461720771548,0.0964977588513257,0.10175918560634864,0.10726907971477818,0.11303802857445217,0.1190770387456819,0.12539754970830672,0.13201144976270981,0.13893109421226954,0.1461693220326468,0.1537394716652061,0.16165539811916016,0.16993149559105866,0.1785827182395156,0.1876245960935725,0.19707325257330177,0.20694542713963113,0.21725850083465675,0.22803051588054946,0.23928019586770577,0.2510269674029511,0.26329099533488887,0.2760932088818617,0.28945531778782113,0.30339983308869756,0.31795009836707905,0.3331303256451151,0.34896561806712734,0.36548199308379825,0.3827064077666318,0.40066681206413307,0.41939218525076866,0.4389125476072954,0.4592589798470279,0.48046366349764463,0.5025599323731034,0.5255823010022643,0.5495664829179226,0.5745494196375045,0.6005693506783993,0.6276658770176443,0.6558799611835003,0.685253932383571,0.7158315311442551,0.747657982942265,0.7807800420123491,0.8152459849244965,0.8511056494318446,0.8884104992926724,0.9272137475962912,0.9675703422988865,1.009536931706963,1.0531718961160559,1.0985354476147164,1.1456897067502219,1.194698647932581,1.2456281418104214,1.2985459862725268,1.3535221179040944,1.4106285958258418,1.4699394890882207,1.531530858533371,1.595480878512172,1.6618699673199,1.730780669434088,1.8022976511713278,1.876507696252748,1.9535000014823507,2.033366185047548,2.116200044097485,2.2020974283903936,2.291156371351183,2.383477297002114,2.4791628042172316,2.5783175482934415,2.681048203374463,2.787463833966179,2.897675929509864,3.0117979551778173,3.1299450441525414,3.2522341363245126,3.3787842859800112,3.509716229375518,3.6451521235816307,3.785215450357356,3.9300315054376083,4.079727372392986,4.234431135515463,4.394271332584566,4.559377167201748,4.729878915842986,4.905906969280282,5.08759157446546,5.2750625998646585,5.468450264916046,5.667884780461286,5.873495031516878,6.0854078551849184,6.303748557205159,6.528641150217707,6.760206528885175,6.998562491398894,7.243823486408006,7.496101526178266,7.7555049629532204,8.022136552011599,8.296093027924496,8.5774662500488,8.866341979154782,9.162798127765384,9.466904647532209,9.778724200378111,10.098312262942647,10.425714524766981,10.760964978789742,11.104086948765133,11.45509378259451,11.813985133934862,12.180747345282585,12.555353076302648,12.937762879150608,13.327922868157943,13.725761491936325,14.131189933490553,14.544104482943979,14.96438237805593,15.391881785828598,15.826441305580047,16.267882348180706,16.716007688228444,17.170597539554176,17.63140960865027,18.09818281880068,18.57063339665658,19.048454672916787,19.53131723852967,20.01887193441422,20.51074924791018,21.00655544449942,21.505873241006913,22.008266704496755,22.5132772625482,23.020424788949725,23.529208458401595,24.03911060516496,24.54959646611133,25.060111213881363,25.570082442646246,26.07892541550376,26.586039036041107,27.090809257874014,27.592610634495752,28.090810654517444,28.58476941446444,29.073838538213874,29.55736586830821,30.034698949364092,30.505182878099152,30.96816483123785,31.42299642194026,31.86903716865131,32.30565439944269,32.732224543401685,33.14813827776512,33.5528009140718,33.94563421541991,34.32607924908878,34.69359883485196,35.04767945692778,35.387832076919615,35.71359434854981,36.02453319695484,36.320244871900854,36.60035760612633,36.86453237781409,37.11246377140604,37.34388141566764,37.55855094242471,37.75627408085564,37.93688938308872,38.100272741240865,38.24633793645926,38.37503497881136,38.486350252439586,38.58030789953659,38.65696840780216,38.71642651868586,38.75881251034811,38.784290794810445,38.79305818977686,38.785340905734955,38.76139549685397,38.72150876082457,38.66599310885076,38.595186245370606,38.50945054837061,38.40917118993698,38.29475208869685,38.166613982261275,38.02519590051004,37.87095290957762,37.704350654494476,37.5258673525605,37.33599135673941,37.135219703250485,36.924052781609035,36.70299373906036,36.47255082569025,36.23323516549314,35.9855544520434,35.730016264166,35.46712594435528,35.19738453654836,34.92128668102839,34.63931933640415,34.35196291510306,34.05969039646588,33.76296384098418,33.46223589416441,33.1579487822996,32.85053325166766,32.54040771663567,32.22797766621218,31.913636180249377,31.597763570730848,31.280726020653166,30.96287649692812,30.644554200033497,30.326084372593627,30.007778359969006,29.689933518443567,29.37283336161268,29.05674768397843,28.741932574662364,28.428630726190374,28.117071446334418,27.807470920853472,27.500032814430853,27.194948303497274,26.892396049638144,26.592542784490863,26.295543867757548,26.00154314325613,25.710673422059195,25.423056916817355,25.138806018908845,24.858023232698933,24.580801146528607,24.307223347965987,24.03736488351182,23.77129203494873,23.509062953124307,23.250728170298,22.996331276719175,22.745908725248807,22.499489900587687,22.25709814930527,22.01875086717044,21.784459486428286,21.554229975051992,21.328063391080466,21.105956336817208,20.88790069791893,20.67388381991954,20.46388945207734,20.257897520416684,20.055884344517132,19.857822930856283,19.663683504623954,19.473433755022672,19.287038574182137,19.104460288163615,18.925659409805277,18.750594278598395,18.579221365749003,18.411495430538288,18.247369963708028,18.08679729741482,17.929728374358056,17.776112967355353,17.625900239526548,17.479038379425333,17.33547488287387,17.195156634025142,17.05803024067535,16.924042079674585,16.793138099203393,16.66526397966289,16.540365549414147,16.41838847363239,16.299278457850725,16.182981291802932,16.06944308454258,15.958610294054637,15.850429557894724,15.74484777419482,15.641812417192638,15.541271311928389,15.443172729023564,15.347465424621474,15.254098784872255,15.163022867552156,15.074188261962899,14.987546090776668,14.90304823864139,14.82064725080638,14.740296288126745,14.661949204501306,14.585560600156219,14.511085885452236,14.438481179654744,14.36770325242355,14.298709655620193,14.231458757643345,14.165909582972965,14.102021921717188,14.039756311833418,13.979074111147744,13.919937447516945,13.862309133911882,13.806152701779778,13.751432500409916,13.698113564177081,13.646161643290638,13.595543197480781,13.546225431047654,13.498176297344866,13.4513644283134,13.405759096815933,13.361330275725546,13.31804865070164,13.275885511154167,13.234812806547142,13.194803121234486,13.15582970510863,13.117866447947737,13.080887822363657,13.044868871994456,13.009785259159907,12.975613234290947,12.942329573870165,12.90991163524684],\"thickness\":2,\"color\":\"#636EFA\",\"width\":0,\"type\":\"data\",\"opacity\":0.1},\"mode\":\"lines\",\"x\":[0.0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.5,9.0,9.5,10.0,10.5,11.0,11.5,12.0,12.5,13.0,13.5,14.0,14.5,15.0,15.5,16.0,16.5,17.0,17.5,18.0,18.5,19.0,19.5,20.0,20.5,21.0,21.5,22.0,22.5,23.0,23.5,24.0,24.5,25.0,25.5,26.0,26.5,27.0,27.5,28.0,28.5,29.0,29.5,30.0,30.5,31.0,31.5,32.0,32.5,33.0,33.5,34.0,34.5,35.0,35.5,36.0,36.5,37.0,37.5,38.0,38.5,39.0,39.5,40.0,40.5,41.0,41.5,42.0,42.5,43.0,43.5,44.0,44.5,45.0,45.5,46.0,46.5,47.0,47.5,48.0,48.5,49.0,49.5,50.0,50.5,51.0,51.5,52.0,52.5,53.0,53.5,54.0,54.5,55.0,55.5,56.0,56.5,57.0,57.5,58.0,58.5,59.0,59.5,60.0,60.5,61.0,61.5,62.0,62.5,63.0,63.5,64.0,64.5,65.0,65.5,66.0,66.5,67.0,67.5,68.0,68.5,69.0,69.5,70.0,70.5,71.0,71.5,72.0,72.5,73.0,73.5,74.0,74.5,75.0,75.5,76.0,76.5,77.0,77.5,78.0,78.5,79.0,79.5,80.0,80.5,81.0,81.5,82.0,82.5,83.0,83.5,84.0,84.5,85.0,85.5,86.0,86.5,87.0,87.5,88.0,88.5,89.0,89.5,90.0,90.5,91.0,91.5,92.0,92.5,93.0,93.5,94.0,94.5,95.0,95.5,96.0,96.5,97.0,97.5,98.0,98.5,99.0,99.5,100.0,100.5,101.0,101.5,102.0,102.5,103.0,103.5,104.0,104.5,105.0,105.5,106.0,106.5,107.0,107.5,108.0,108.5,109.0,109.5,110.0,110.5,111.0,111.5,112.0,112.5,113.0,113.5,114.0,114.5,115.0,115.5,116.0,116.5,117.0,117.5,118.0,118.5,119.0,119.5,120.0,120.5,121.0,121.5,122.0,122.5,123.0,123.5,124.0,124.5,125.0,125.5,126.0,126.5,127.0,127.5,128.0,128.5,129.0,129.5,130.0,130.5,131.0,131.5,132.0,132.5,133.0,133.5,134.0,134.5,135.0,135.5,136.0,136.5,137.0,137.5,138.0,138.5,139.0,139.5,140.0,140.5,141.0,141.5,142.0,142.5,143.0,143.5,144.0,144.5,145.0,145.5,146.0,146.5,147.0,147.5,148.0,148.5,149.0,149.5,150.0,150.5,151.0,151.5,152.0,152.5,153.0,153.5,154.0,154.5,155.0,155.5,156.0,156.5,157.0,157.5,158.0,158.5,159.0,159.5,160.0,160.5,161.0,161.5,162.0,162.5,163.0,163.5,164.0,164.5,165.0,165.5,166.0,166.5,167.0,167.5,168.0,168.5,169.0,169.5,170.0,170.5,171.0,171.5,172.0,172.5,173.0,173.5,174.0,174.5,175.0,175.5,176.0,176.5,177.0,177.5,178.0,178.5,179.0,179.5,180.0,180.5,181.0,181.5,182.0,182.5,183.0,183.5,184.0,184.5,185.0,185.5,186.0,186.5,187.0,187.5,188.0,188.5,189.0,189.5,190.0,190.5,191.0,191.5,192.0,192.5,193.0,193.5,194.0,194.5,195.0,195.5,196.0,196.5,197.0,197.5,198.0,198.5,199.0,199.5,200.0],\"opacity\":0.8,\"y\":[99.99,99.98983243415007,99.9893958825842,99.98876517541031,99.98799099619028,99.98710754734742,99.98613777817407,99.98509695026361,99.98399506892984,99.9828385411261,99.98163130578843,99.98037560433234,99.97907250568538,99.97772226390836,99.9763245616127,99.97487867545293,99.97338358848128,99.97183806622758,99.97024070801885,99.96858998140064,99.96688424501141,99.96512176355749,99.96330071738537,99.96141920836624,99.959475263185,99.95746683492051,99.95539180335896,99.95324797448157,99.95103307933317,99.94874477243621,99.94638062990214,99.94393814727405,99.94141473718754,99.93880772686397,99.93611435546384,99.93333177131592,99.93045702903198,99.92748708650649,99.9244188018571,99.92124893015684,99.91797412009045,99.91459091060756,99.91109572740766,99.90748487920123,99.90375455400756,99.89990081529886,99.89591959800538,99.89180670426705,99.88755779922353,99.88316840677614,99.87863390500974,99.87394952140485,99.86911032820488,99.86411123757155,99.85894699631886,99.85361218037269,99.84810118964711,99.84240824280744,99.8365273713384,99.83045241325303,99.8241770074924,99.81769458778615,99.81099837608348,99.80408137504566,99.79693636160447,99.78955588079943,99.7819322386025,99.77405749355319,99.7659234492234,99.75752164727632,99.74884335967951,99.73987957872833,99.73062100762246,99.72105805340765,99.71118081940003,99.70097909523213,99.69044234540355,99.67955970074985,99.66831994975405,99.65671152884347,99.64472250750156,99.63234057660662,99.61955304123947,99.6063468118818,99.59270839106125,99.57862385766018,99.56407885707114,99.54905859142997,99.53354780797288,99.51753077765898,99.50099127916516,99.48391259285688,99.46627749232498,99.44806822756456,99.42926650308999,99.40985346515998,99.38980969398568,99.3691151893641,99.34774934382543,99.3256909162663,99.30291802858079,99.27940816150654,99.25513813607313,99.2300840833081,99.20422142430357,99.17752487065685,99.14996840478132,99.12152525456118,99.09216784640772,99.06186780390394,99.0305959549063,98.99832231656703,98.96501605548121,98.93064545419801,98.89517792522867,98.85857998881455,98.82081725547053,98.78185435164289,98.7416549144366,98.70018161937185,98.65739617915527,98.61325929558541,98.56773060579206,98.5207687109509,98.47233116734783,98.42237447337688,98.37085397117222,98.31772382826708,98.26293709768719,98.20644574523818,98.1482005962727,98.08815125498208,98.02624615501406,97.96243258111794,97.89665665748137,97.8288632283183,97.7589958255171,97.68699677891517,97.61280728925783,97.53636736892477,97.45761572766955,97.37648987688199,97.29292618456911,97.20685987203058,97.1182248612944,97.02695375270885,96.93297801818494,96.83622813222105,96.73663348716212,96.63412224720783,96.52862159067371,96.42005775187567,96.30835605236894,96.193440681765,96.07523475931852,95.9536606610691,95.82864019051765,95.70009440813033,95.56794353107058,95.43210740367326,95.29250545236026,95.14905672966303,95.00167964488972,94.85029225529524,94.69481275657064,94.53515957401332,94.37125102999192,94.20300564446465,94.03034258296667,93.85318165876842,93.67144314854895,93.48504774590447,93.29391723589019,93.09797499723021,92.89714572829907,92.69135526091657,92.48053155313937,92.26460459818631,92.04350654059313,91.817171277273,91.5855351053408,91.34853762401612,91.10612167397352,90.85823275311185,90.60482019202301,90.3458372385833,90.0812412759963,89.81099325158571,89.53505818038808,89.25340634938476,88.96601343188195,88.67285959688533,88.3739307505434,88.06921877671097,87.75872169662198,87.44244297008893,87.12039190478478,86.79258504604161,86.45904623133963,86.11980541243769,85.77490013026066,85.42437553486509,85.06828447811823,84.70668657397121,84.33964869882608,83.96724639520401,83.58956346460448,83.20669067155426,82.81872753485997,82.42578175664974,82.02796914574698,81.62541246568796,81.2182422258895,80.80659774616768,80.39062588871687,79.9704803122293,79.54632295712358,79.1183230588627,78.68665655409278,78.2515051419706,77.81305732731364,77.3715085921663,76.92705938696311,76.47991578396781,76.0302893509712,75.57839652478444,75.12445729765415,74.66869502032587,74.21133721808233,73.75261452260973,73.29275915761623,72.83200609671502,72.37059181866614,71.90875371076528,71.44672890033375,70.98475464894167,70.52306834962599,70.06190580249225,69.60150134589527,69.14208763596596,68.68389491616783,68.2271500873404,67.77207635963445,67.31889357548022,66.86781744575968,66.41905854404038,65.97282291489846,65.52931119401345,65.08871829570676,64.65123283752823,64.21703721958053,63.78630759030774,63.35921312265215,62.93591603438979,62.516571561215706,62.10132758039166,61.69032451663009,61.28369523972482,60.88156509040622,60.48405182030253,60.09126546033466,59.70330848708316,59.3202756663213,58.94225405489435,58.569323411177976,58.201556185521696,57.839017302926344,57.4817643409378,57.12984805348903,56.783312159998104,56.4421935273475,56.1065222633442,55.77632232083648,55.451611700779345,55.132402128834855,54.81869926812143,54.51050356746022,54.20780994186596,53.91060802814104,53.618882386764064,53.33261315326136,53.05177625629845,52.776343070805694,52.506280705509326,52.24155289782585,51.98211955583921,51.72793714238202,51.478958851572955,51.2351352344633,50.99641431032842,50.762741249190334,50.53405874467577,50.31030774984613,50.0914269477317,49.877353220529194,49.66802176320038,49.463366616006674,49.26332064000839,49.06781527032713,48.87678094397322,48.690147559047176,48.507844010857326,48.32979862925832,48.15593926353567,47.98619367066843,47.82048939204642,47.65875359820645,47.50091351352743,47.346896585261575,47.19663019341013,47.05004195601533,46.90705982276528,46.76761230886898,46.63162833017622,46.49903713225058,46.36976865524829,46.24375348830599,46.12092276384279,46.001208309111405,45.88454275370075,45.770859638040875,45.66009325146421,45.552178618809116,45.447051774454565,45.3446496132138,45.244909898659365,45.14777130910275,45.053173538581945,44.96105732638321,44.87136431939886,44.784037085332336,44.6990192974917,44.61625556846979,44.53569149445832,44.45727365447744,44.38094968675387,44.30666828042986,44.23437906576097,44.164032630450855,44.09558063792565,44.02897568255538,43.96417133020987,43.90112210170011,43.83978352270952,43.78011210391777,43.72206525460749,43.66560128935316,43.61067950519689,43.55726006856781,43.5053040380744,43.45477334578807,43.40563082553455,43.35784019519846,43.31136598856985,43.2661735480617,43.222229077582256,43.17949956336214,43.13795277348657,43.09755724523948,43.058282295663204,43.02009801190862,42.9829751985388,42.94688535727328,42.91180072113107,42.877694212988395,42.84453941668321,42.81231057848882,42.780982600813765,42.7505310414167,42.72093207587992,42.69216246897044,42.66419958914563,42.63702140274482,42.61060642427739,42.58493372825923,42.559982931525845,42.53573419672496,42.512168210481654,42.489266153557935,42.46700969647531,42.44538101032453,42.42436272809012,42.403937941128596,42.384090188180714,42.36480345270427,42.346062155307614,42.32785113056423,42.310155610382445,42.29296122785697,42.276254012266776,42.26002035859867,42.24424703199425,42.22892115487135,42.21403020608591,42.199562009388494,42.18550471536962,42.17184679244605,42.158577030239556,42.1456845276936,42.13315867458286,42.12098915686162]},{\"name\":\"Exposed\",\"line\":{\"color\":\"#EF553B\"},\"error_y\":{\"array\":[0.0,0.0001886403326875823,0.00028858664408732895,0.000337333586646729,0.00036031073185689195,0.00037580176311879335,0.0003971875382719728,0.00043317470737726607,0.0004876592767630588,0.0005607924978943448,0.0006509003835549963,0.0007559933633316721,0.0008744460240113286,0.001005139899883315,0.001147398803485505,0.001300882339829848,0.0014654931661160823,0.0016413084081969896,0.00182853202920973,0.0020274625947346004,0.00223847168512936,0.0024619895036101895,0.0026984953185525953,0.002948511158650374,0.0032125977241672433,0.00349135180586018,0.0037854047622191958,0.004095421733505345,0.004422101390167082,0.004766176070370133,0.005128412208441495,0.005509610987054152,0.005910609160031219,0.006332280037814948,0.0067755345721994525,0.007241322546763318,0.007730633884239245,0.008244500011898382,0.008783995252752887,0.009350238455288597,0.00994439464283158,0.010567676554522261,0.011221346359434317,0.011906717634759527,0.01262515715274609,0.01337808679851996,0.014166985596640735,0.014993392047924771,0.015858906234358774,0.016765191818568757,0.01771397849714025,0.01870706466206767,0.019746319612565937,0.02083368589783271,0.021971182377996,0.023160907583570502,0.024405041967906414,0.025705850174125494,0.027065684490020524,0.028486988769401454,0.029972300697852616,0.03152425473977315,0.03314558590507218,0.03483913536152771,0.03660785311179946,0.03845479973163407,0.04038315014611364,0.04239619976557196,0.04449736828433913,0.04669020175713188,0.04897837574895115,0.05136570443968558,0.05385614735387519,0.056453809387343956,0.05916294187171494,0.06198794935791127,0.06493339960995359,0.06800402547544304,0.07120472660608451,0.07454057236427897,0.07801682060586372,0.08163892532203927,0.08541253070670532,0.08934346963317247,0.09343777463710184,0.09770169454970201,0.1021416935218878,0.10676444936500903,0.11157685417734632,0.11658604863436697,0.12179943598351664,0.1272246633071948,0.13286961058895588,0.1387424056576168,0.14485145355083343,0.15120543571778244,0.1578132939832079,0.16468422871609503,0.17182774666358033,0.17925370258599901,0.18697225885632138,0.1949938485192953,0.20332918800817276,0.21198932832223258,0.2209856681090883,0.23032989838695808,0.24003400736890393,0.25011031538265105,0.2605715883228991,0.27143097442434244,0.2827019109952235,0.29439811503176994,0.3065336647163433,0.31912305359700766,0.3321810699585985,0.3457228040259411,0.3597636388380131,0.37431947812818356,0.389406684303601,0.4050418859936684,0.421241905909075,0.4380238757384576,0.45540536930275693,0.4734042077266084,0.49203841358842987,0.5113261683810318,0.5312861634464673,0.5519375889780593,0.5732997899109814,0.5953920699976817,0.6182338416119818,0.6418448887094977,0.666245072669258,0.6914541661489552,0.7174918034102041,0.7443779696499497,0.7721330723988608,0.8007773717369713,0.8303305922842421,0.8608121382646182,0.892241555104251,0.9246380131077047,0.958020020864551,0.9924053724149652,1.027811874996342,1.0642574346993063,1.1017591293208766,1.1403325953111632,1.1799924477057724,1.2207529945488766,1.2626271345594335,1.3056262021760972,1.3497598555026253,1.3950372732982577,1.4414669541965899,1.489055228833411,1.5378055669797488,1.5877195812287863,1.6387977037509125,1.6910370971535797,1.7444320709365926,1.7989741256455822,1.8546536298077023,1.911458676631415,1.9693729612706083,2.0283757047315567,2.0884437499974595,2.149550507935488,2.21166419251417,2.2747482841770186,2.338763056271775,2.4036664484559767,2.4694112820309426,2.5359433800265143,2.603203694450791,2.671130049568844,2.7396529166387795,2.808696738188421,2.878180204558575,2.9480192664375995,3.0181248927311866,3.0883995373526867,3.158738516050434,3.229034119680226,3.2991708704431475,3.3690263458243255,3.438471300867073,3.507373742738103,3.5755978614465196,3.6429994700779935,3.7094267831112284,3.7747262144863964,3.8387377740989153,3.901295405216149,3.9622277030476147,4.021362488715252,4.078526520026028,4.1335405696419,4.186220563441491,4.236384462832995,4.283846978408747,4.328421025010572,4.369918708497109,4.408156384426563,4.442954073160981,4.474130939515537,4.501508059807979,4.524914914761328,4.544183130653595,4.559150154489957,4.569660225663878,4.575569151416188,4.576742625628167,4.573053291314507,4.56438556285855,4.55063877916582,4.531722577725683,4.507561191243703,4.478094705441152,4.4432819059095285,4.403098183732457,4.357535223903829,4.306605938255687,4.250343034460773,4.188799492945479,4.1220504529903845,4.050194696648704,3.973355619030728,3.891680820509606,3.8053437631583122,3.714546223480391,3.6195177628133117,3.5205189656301656,3.417842650918221,3.311815921256209,3.202803678283321,3.09121229743948,2.97749321264449,2.8621486090363586,2.745738184915156,2.6288874569424774,2.5122952106001293,2.396745067756863,2.28311989821415,2.172413770666541,2.065742893886123,1.964357051835763,1.8696403755192148,1.7830980491024793,1.7063202347914843,1.6409183179576872,1.5884228940715215,1.550146477232216,1.52703433059424,1.519532008064011,1.5275078390935646,1.5502584386466625,1.5865970397790707,1.6349950029953924,1.6937399157904363,1.7610793144775039,1.8353236477111952,1.9149117402716693,1.9984426003033233,2.0846878658677213,2.1725850700059355,2.261219316685006,2.3498068493033926,2.437683852457892,2.5242849206520446,2.609129711832418,2.691811711039928,2.771989372925096,2.8493776554861205,2.9237376583353583,2.994870418171984,3.062615579485011,3.1268437639297493,3.187453293703134,3.2443676528244274,3.297533438104687,3.3469180897695976,3.3925062621453983,3.434298079035946,3.472309329667817,3.5065680825380308,3.5371139884726364,3.563997216734005,3.587277400869695,3.6070226342758507,3.6233081341987035,3.6362154346344973,3.6458319796728067,3.652249796079489,3.65556519252383,3.655878055132903,3.6532908907146777,3.647908458008849,3.63983751224778,3.6291860748834504,3.6160627687765694,3.6005767931685404,3.5828374911991907,3.5629538897683144,3.541033869391548,3.517184343616712,3.4915114538752143,3.464119697834082,3.4351115869436057,3.4045881284232284,3.372648369567619,3.3393890496826706,3.3049040415672923,3.269284905235817,3.232621144684901,3.1949992591793754,3.1565029655949255,3.1172135689271787,3.0772097081854346,3.0365670041879014,2.9953578171169917,2.9536519508990207,2.911516801245667,2.8690164843233887,2.8262124836851217,2.7831637273894634,2.739926565939497,2.696554409594599,2.653097726141429,2.609604726881212,2.5661213941064083,2.52269078486055,2.479353821682565,2.4361491894057252,2.393113427604887,2.3502806096304085,2.307682457923438,2.265348931905949,2.2233081937263184,2.1815860839682624,2.1402068622777315,2.0991930543009683,2.0585655695785667,2.018343446253013,1.9785439836362717,1.93918321753334,1.900275888574338,1.8618350346728187,1.8238725967482432,1.7863992976812255,1.7494247403514063,1.7129572195982712,1.677003811754569,1.6415707488937659,1.6066634326773732,1.5722860989775669,1.5384422485619025,1.5051346177696796,1.4723652225462658,1.4401352421621698,1.4084450385760818,1.3772944393505675,1.3466828136041273,1.3166088088206402,1.2870705598289465,1.2580658159097018,1.22959188449254,1.201645605816493,1.1742233007402254,1.1473209603106718,1.1209343732881243,1.09505896755135,1.0696897880130996,1.0448217631201728,1.0204495682195611,0.9965676768788607,0.9731702703977864,0.9502513259155452,0.9278047587221836,0.9058243861011306,0.8843037866786554,0.8632365063018337,0.8426160185212344,0.8224357392619954,0.802688976788455,0.7833689223941034,0.7644687554993433,0.7459817001835741,0.7279009324506315,0.7102195543720523,0.6929307548366412,0.676027717102261,0.6595036513307398,0.6433517381651733,0.6275651565601551,0.6121371615264602,0.5970610929390452,0.582330290813497,0.5679381293071414,0.5538781013725381,0.5401437218117594],\"thickness\":2,\"color\":\"#EF553B\",\"width\":0,\"type\":\"data\",\"opacity\":0.1},\"mode\":\"lines\",\"x\":[0.0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.5,9.0,9.5,10.0,10.5,11.0,11.5,12.0,12.5,13.0,13.5,14.0,14.5,15.0,15.5,16.0,16.5,17.0,17.5,18.0,18.5,19.0,19.5,20.0,20.5,21.0,21.5,22.0,22.5,23.0,23.5,24.0,24.5,25.0,25.5,26.0,26.5,27.0,27.5,28.0,28.5,29.0,29.5,30.0,30.5,31.0,31.5,32.0,32.5,33.0,33.5,34.0,34.5,35.0,35.5,36.0,36.5,37.0,37.5,38.0,38.5,39.0,39.5,40.0,40.5,41.0,41.5,42.0,42.5,43.0,43.5,44.0,44.5,45.0,45.5,46.0,46.5,47.0,47.5,48.0,48.5,49.0,49.5,50.0,50.5,51.0,51.5,52.0,52.5,53.0,53.5,54.0,54.5,55.0,55.5,56.0,56.5,57.0,57.5,58.0,58.5,59.0,59.5,60.0,60.5,61.0,61.5,62.0,62.5,63.0,63.5,64.0,64.5,65.0,65.5,66.0,66.5,67.0,67.5,68.0,68.5,69.0,69.5,70.0,70.5,71.0,71.5,72.0,72.5,73.0,73.5,74.0,74.5,75.0,75.5,76.0,76.5,77.0,77.5,78.0,78.5,79.0,79.5,80.0,80.5,81.0,81.5,82.0,82.5,83.0,83.5,84.0,84.5,85.0,85.5,86.0,86.5,87.0,87.5,88.0,88.5,89.0,89.5,90.0,90.5,91.0,91.5,92.0,92.5,93.0,93.5,94.0,94.5,95.0,95.5,96.0,96.5,97.0,97.5,98.0,98.5,99.0,99.5,100.0,100.5,101.0,101.5,102.0,102.5,103.0,103.5,104.0,104.5,105.0,105.5,106.0,106.5,107.0,107.5,108.0,108.5,109.0,109.5,110.0,110.5,111.0,111.5,112.0,112.5,113.0,113.5,114.0,114.5,115.0,115.5,116.0,116.5,117.0,117.5,118.0,118.5,119.0,119.5,120.0,120.5,121.0,121.5,122.0,122.5,123.0,123.5,124.0,124.5,125.0,125.5,126.0,126.5,127.0,127.5,128.0,128.5,129.0,129.5,130.0,130.5,131.0,131.5,132.0,132.5,133.0,133.5,134.0,134.5,135.0,135.5,136.0,136.5,137.0,137.5,138.0,138.5,139.0,139.5,140.0,140.5,141.0,141.5,142.0,142.5,143.0,143.5,144.0,144.5,145.0,145.5,146.0,146.5,147.0,147.5,148.0,148.5,149.0,149.5,150.0,150.5,151.0,151.5,152.0,152.5,153.0,153.5,154.0,154.5,155.0,155.5,156.0,156.5,157.0,157.5,158.0,158.5,159.0,159.5,160.0,160.5,161.0,161.5,162.0,162.5,163.0,163.5,164.0,164.5,165.0,165.5,166.0,166.5,167.0,167.5,168.0,168.5,169.0,169.5,170.0,170.5,171.0,171.5,172.0,172.5,173.0,173.5,174.0,174.5,175.0,175.5,176.0,176.5,177.0,177.5,178.0,178.5,179.0,179.5,180.0,180.5,181.0,181.5,182.0,182.5,183.0,183.5,184.0,184.5,185.0,185.5,186.0,186.5,187.0,187.5,188.0,188.5,189.0,189.5,190.0,190.5,191.0,191.5,192.0,192.5,193.0,193.5,194.0,194.5,195.0,195.5,196.0,196.5,197.0,197.5,198.0,198.5,199.0,199.5,200.0],\"opacity\":0.8,\"y\":[0.01,0.009210340905781135,0.008751087966253792,0.008519818265730252,0.008446761271884453,0.008484420137631734,0.008600492787714313,0.0087730437768663,0.008987211329763876,0.009232961493906094,0.00950355647092887,0.009794510054500664,0.010102875323814587,0.010426758925111428,0.010764989908183632,0.011116894002642519,0.011482139776360475,0.011860633845289402,0.012252449544769782,0.012657778417467897,0.01307689727108019,0.013510145866398227,0.013957911853137005,0.014420620630345831,0.014898728650354232,0.015392718963447091,0.015903098403346968,0.016430395813080065,0.016975161029949063,0.017537964403922024,0.0181193966414067,0.018720068925840157,0.019340613194849605,0.019981682551688185,0.020643951771076627,0.02132811787500581,0.022034900762186997,0.022765043889488107,0.02351931492557686,0.024298506576488604,0.025103437399908963,0.02593495250629141,0.02679392436711615,0.027681253801653864,0.028597870786385905,0.029544735340204874,0.030522838462599712,0.031533203275224575,0.032576885967895784,0.03365497663477075,0.03476860041904407,0.03591891878517513,0.037107130420491026,0.03833447225807511,0.03960222090032963,0.040911694239720416,0.04226425233558445,0.043661298259821665,0.04510427969435175,0.04659469082028334,0.048134073072544456,0.049724016418921914,0.05136616101078301,0.053062199889052454,0.05481388002556448,0.05662300275968093,0.05849142537341759,0.06042106403933594,0.062413895400835355,0.06447195709818607,0.06659734918296956,0.0687922382364327,0.0710588604721295,0.07339952136124876,0.07581659567742267,0.07831253047669876,0.08088984981173768,0.08355115519550582,0.08629912597514948,0.08913652076587734,0.09206618559439352,0.09509105735371425,0.09821416087612529,0.10143860784911822,0.10476760156117777,0.10820444447300842,0.11175253751859572,0.1154153789503993,0.11919656535886514,0.12309980551993993,0.12712892661143244,0.1312878665415659,0.1355806691911714,0.14001149060360069,0.14458461166735548,0.14930443808012678,0.15417549317510185,0.15920241926762124,0.16438999553048542,0.16974315486843458,0.17526696925145277,0.18096663570807975,0.18684748145136554,0.19291498457392844,0.1991747803593814,0.20563263961298844,0.21229447392080128,0.21916634820701442,0.2262545223164895,0.233565430526257,0.2411056492320794,0.2488818942537353,0.2569010516450663,0.2651701996952067,0.2736965662862573,0.28248753519245173,0.2915506456501865,0.30089366905153936,0.3105245920107016,0.32045155445543205,0.3306828269015506,0.3412268513779429,0.35209229024974875,0.3632879632537632,0.3748228357500879,0.3867060125651575,0.39894684808968817,0.4115549485111324,0.4245400678552906,0.4379120488006985,0.45168087345189656,0.46585675239592317,0.48045003626417654,0.49547116740334285,0.5109306774768281,0.5268393326309012,0.543208162397997,0.5600482959265863,0.5773708498217827,0.5951869973336413,0.6135081145874782,0.6323456318423385,0.6517109535598826,0.6716154594069714,0.6920707109065118,0.7130884850776227,0.7346805170186672,0.7568583291046788,0.7796333570943259,0.8030171639782129,0.8270211292520582,0.8516564141716039,0.8769339445318158,0.9028647398860751,0.9294598669873009,0.9567300349079525,0.9846854068977322,1.0133358831408892,1.042691294980428,1.0727608270523088,1.1035531465769097,1.1350764166560492,1.1673387467186653,1.200347886763506,1.2341106535791444,1.2686329080010483,1.3039201202960942,1.339977080940016,1.3768074167671047,1.4144137208955183,1.4527979475224633,1.4919616325759106,1.5319051350486472,1.5726271183688956,1.614125103280934,1.6563959135352215,1.6994345179832941,1.7432343592612487,1.787787407108966,1.8330849333927282,1.8791168632350461,1.9258707789852125,1.9733322502815998,2.021485895242411,2.0703140393802086,2.119796870383718,2.1699124133456738,2.2206376037126474,2.2719478953532253,2.3238159009995303,2.3762115301154463,2.429103517860371,2.4824580307637727,2.536238640737534,2.59040640514087,2.6449211377379918,2.6997411596301846,2.754821683587225,2.8101150281436706,2.865572532797052,2.9211428154398758,2.9767720140894,3.032403913508093,3.087981498279526,3.1434465101712257,3.198737726412667,3.253791720296374,3.308544844031848,3.362930927418015,3.4168822055854453,3.470329540561204,3.523204125144455,3.5754364684491833,3.626954958423403,3.6776876333965265,3.7275632140660284,3.7765090074239107,3.824452193913383,3.871320547151506,3.9170436180556885,3.9615511193387056,4.004772477882922,4.046639399812799,4.087084707682763,4.126042218651156,4.163447281962826,4.199238259712986,4.233356427307043,4.265744414498623,4.2963472499401005,4.32511401751548,4.35199575441665,4.3769466718481285,4.399924455422421,4.420891362853313,4.439813109424139,4.456658286204425,4.471400190209168,4.484016051071966,4.494486736272353,4.502797164915133,4.5089370120844325,4.512900600949801,4.514685844518488,4.514294724220537,4.511734127203396,4.5070144206677085,4.500150129788391,4.49115983621529,4.480066471869764,4.46689670463205,4.451680501842594,4.434451696143336,4.415247526669723,4.394108269484068,4.371077388854381,4.346201320327454,4.319529294253488,4.291113005341906,4.261006433686097,4.229265798632887,4.195949119123202,4.161116261865464,4.124828798392583,4.087149303858729,4.048141281062826,4.007869415783309,3.9663992958623746,3.9237966573702447,3.8801277055167107,3.835458902070691,3.789856904455403,3.7433877928657515,3.6961168863476814,3.6481093394612167,3.59942999190997,3.5501423190276737,3.500309068568034,3.449992092939602,3.399252272514766,3.3481488017138488,3.2967391023427726,3.24507956347547,3.193225380167068,3.1412295212031185,3.089143643562915,3.037017806707031,2.9849004883211983,2.93283795274344,2.8808743577119844,2.829052483479956,2.777413468732874,2.725996018545899,2.674837430801963,2.6239731863104345,2.57343704683482,2.5232605424660757,2.473473256452068,2.424103429012383,2.3751775830290063,2.326720095791056,2.278754095971056,2.2313010572968364,2.1843808929882558,2.1380116033386147,2.092209655095177,2.0469904021489738,2.002367660968242,1.9583536461735749,1.914959562739875,1.8721953324628453,1.830069618071324,1.7885896360349292,1.747761539391151,1.7075906589256624,1.668081106633667,1.629235964893487,1.591057556717946,1.5535473381205602,1.5167058471181338,1.480532644298492,1.44502663940939,1.4101861976984427,1.376008823994855,1.3424914532186616,1.3096305084777402,1.2774218996625357,1.2458609370661855,1.2149423433504336,1.1846605036058468,1.1550094928159405,1.125982850196969,1.097573857921733,1.0697755114403633,1.04258055146071,1.0159813804453557,0.9899700983310389,0.9645386826095448,0.9396789827426353,0.9153825637596977,0.8916409284197069,0.8684454685448824,0.8457874967722573,0.8236581795397182,0.802048569121539,0.7809497303978621,0.7603527308720621,0.7402485266062547,0.7206281224357083,0.7014825338521877,0.6828028076933919,0.6645799732855296,0.6468050590590868,0.6294691814171847,0.6125635443385973,0.5960793506938729,0.5800079042754158,0.564340596982676,0.5490689130093142,0.5341843986687552,0.5196786609391206,0.5055434280602349,0.491770562647649,0.47835199541900264,0.4652797682504194,0.4525460587926229,0.44014316078588406,0.428063475429264,0.4162994945395153,0.40484383695584497,0.3936892719886296,0.38282868015214905,0.3722550433318584,0.3619614987027918,0.35194130334976786,0.34218784178577866,0.33269460276229323,0.32345519294949227,0.31446336237994316,0.3057129930472104,0.2971980655709294,0.2889126978742561,0.28085113300743914,0.27300773799705874,0.2653769907938068,0.2579534745248865,0.2507318946567802,0.24370708686941556,0.23687399540224885,0.23022766447991205,0.22376326698042703,0.21747608263400284,0.21136150162966702,0.20541501097258172,0.19963219664009213,0.1940087554603871,0.18854049411766613,0.18322331040630346,0.17805319690545723,0.1730262545142265,0.16813867162121457]},{\"name\":\"Infected\",\"line\":{\"color\":\"#00CC96\"},\"error_y\":{\"array\":[0.0,0.0002021238950485171,0.00033525759460007067,0.00042787335278550963,0.0004975448323519434,0.0005550105939707433,0.0006067665007783324,0.0006567063835051738,0.0007071490588835963,0.0007594731601660082,0.0008145046125232409,0.000872750373787064,0.0009345379198614708,0.0010000976173675583,0.0010696108042718303,0.0011432374540462761,0.001221131805087411,0.0013034509663700322,0.0013903594923488777,0.0014820316937712286,0.0015786527207121259,0.0016804190081434606,0.0017875384313175773,0.001900230357256884,0.0020187256580338573,0.002143266785240297,0.0022741078742771407,0.002411514923026296,0.0025557660187163008,0.0027071516146261335,0.0028659748577001196,0.0030325519532351493,0.0032072125749852596,0.003390300287787532,0.0035821730222395944,0.0037832035760224474,0.003993780118385968,0.004214306748149868,0.004445204125143432,0.004686909968030411,0.004939879640011761,0.00520458692306903,0.00548152471570686,0.005771205582432515,0.006074162573923301,0.006390950015749187,0.0067221442844198395,0.007068344411718846,0.00743017299770052,0.007808277299862832,0.008203330020524115,0.00861603002303199,0.00904710354031693,0.009497305369481582,0.009967419526093207,0.01045825980947138,0.010970671417928953,0.011505532622515179,0.012063755554528984,0.012646286750171862,0.0132541091863566,0.013888243873366903,0.014549750817734072,0.01523972865839186,0.01595931692092463,0.016709699081034972,0.01749210404280567,0.018307805875512166,0.019158125626923293,0.020044434615849774,0.020968157005114348,0.021930767516191708,0.02293379151315131,0.023978810614511775,0.025067467405678275,0.026201465666601385,0.0273825683135145,0.028612601998816656,0.029893461848340488,0.03122711542267324,0.032615593838106624,0.034060992529818486,0.03556548283717647,0.03713131982631741,0.03876084027554956,0.04045645659495367,0.04222066482764717,0.044056052991950194,0.04596530793062228,0.04795119495816133,0.05001655472567535,0.05216432589937715,0.054397561050989245,0.056719422075293666,0.05913316478556096,0.06164214743640086,0.06424985049028997,0.06695988582954225,0.06977596562567691,0.07270187752399253,0.0757415244269853,0.07889896033712805,0.08217838669163642,0.08558411904390913,0.08912058395516284,0.09279236793849356,0.09660421985750846,0.10056102799078366,0.10466773650388897,0.10892940091176351,0.11335126509843031,0.11793877129300322,0.12269749906084856,0.12763312604235222,0.13275152323023479,0.1380587496139116,0.14356105814863288,0.1492647157184465,0.15517605068383902,0.1613015996706795,0.16764815779558148,0.17422268186185227,0.18103217911542097,0.18808384964957817,0.19538510956066255,0.20294361028392102,0.21076694791449146,0.21886265532696103,0.22723845117488295,0.23590236959949612,0.24486261712798707,0.25412733911366236,0.2637048186034153,0.2736035700875578,0.283832339675104,0.29439968035262176,0.3053138504249479,0.31658320982240085,0.32821647085501837,0.3402224714138583,0.35260974903388237,0.3653868782191318,0.37856262074254937,0.392145887583242,0.40614508591470316,0.42056795796606083,0.4354222134965127,0.45071591480633794,0.4664570390499402,0.4826527961840732,0.4993103787118967,0.5164369532276617,0.5340396151736944,0.5521243055004659,0.5706958073066595,0.5897587699647506,0.6093181073704618,0.6293780301635219,0.6499413208311762,0.6710108192779549,0.6925888918718306,0.7146772153848329,0.7372752282756426,0.7603808136959276,0.7839918027785738,0.8081058371667942,0.8327184481482696,0.857823674285837,0.8834152629402202,0.9094860633117376,0.9360265955621808,0.9630240654352515,0.9904643943783601,1.0183335714178106,1.0466157043288504,1.0752913519462746,1.104340803225598,1.1337427782966893,1.1634740818807812,1.1935069119638482,1.2238105147269334,1.254354046176086,1.285105357319161,1.316027433385962,1.3470823183484697,1.3782303839564016,1.409430299913314,1.440635624439285,1.4717956893518014,1.502859664140019,1.5337761282589706,1.564488264790618,1.5949380768546788,1.6250663990759024,1.6548127248783313,1.6841116468069905,1.7128934555252922,1.741089079358189,1.7686297715100971,1.7954416156477753,1.8214509475161442,1.8465838338827194,1.870766149563064,1.8939198673021567,1.9159644289945272,1.936822020377526,1.956416184626652,1.9746668767802895,1.9914974663014167,2.0068325435222096,2.020598390562683,2.0327196058503962,2.043121994371557,2.0517369080375816,2.0584979349601435,2.0633391281930815,2.066200960143623,2.0670275360431494,2.06576668979482,2.0623682853564986,2.0567878392321823,2.048988302197572,2.0389360610735583,2.0266037861914534,2.011971233003358,1.9950245861629787,1.9757558115523752,1.9541629149293214,1.930252093627886,1.9040371575458952,1.875538009100139,1.8447833821245596,1.8118090370729398,1.776658490326471,1.7393830546370745,1.7000416437436545,1.6587008450856138,1.6154350634109673,1.5703264536875743,1.523464779347059,1.4749467440120951,1.4248780021692802,1.3733728755891585,1.320552535223191,1.2665463577802591,1.211494067961656,1.1555441372806807,1.0988552676769046,1.0415988127095064,0.9839634682030369,0.9261555521561826,0.8684018162144949,0.8109598204872639,0.7541252059004716,0.698242868365658,0.6437243323642835,0.5910741332837313,0.5409205845990935,0.49404919941235337,0.45144231080075586,0.41430561035833857,0.3840340402613205,0.36207420133103363,0.34963777453319134,0.347326858008475,0.3548686657887664,0.37116534103692483,0.3946284846323043,0.423565189726279,0.45644516091819964,0.492007194627722,0.5292618516986533,0.567449022906125,0.6059879208120874,0.644436779481542,0.682458526309613,0.7197902287887769,0.7562281335800326,0.7916135001631063,0.8258219694922122,0.8587552277491001,0.8903354614961001,0.9205034841578443,0.9492155421170924,0.9764383687370709,1.0021499796224418,1.0263373398635758,1.048994997535519,1.0701237921258657,1.089730046708484,1.1078256051148923,1.124427039245927,1.1395543273486466,1.1532314506064252,1.1654853264202905,1.176345498557114,1.1858440474609264,1.1940151252977809,1.2008945077859041,1.2065194879907017,1.210928747428831,1.2141619196946272,1.2162592918417026,1.2172617411177926,1.2172110923568122,1.2161494576121772,1.21411859174328,1.2111604112648753,1.2073169971026747,1.2026297749507853,1.19713966894728,1.1908872386199694,1.1839130967230584,1.176257059285605,1.1679576574953758,1.159053087090514,1.1495808227104438,1.1395770848868332,1.1290770318134482,1.1181151255643718,1.106725394471196,1.094940545458784,1.0827917660364421,1.0703097983142815,1.0575241676163374,1.044463121877599,1.0311536892118125,1.017622190777113,1.0038943173220036,0.9899943340526117,0.9759451219530622,0.9617691483259314,0.9474875596476159,0.9331204110205891,0.9186866424991148,0.9042046011056555,0.8896920073725759,0.8751653044804228,0.8606398129370523,0.8461305260447352,0.8316512653774217,0.817214994913217,0.8028337775223092,0.7885192267706345,0.7742824507902474,0.7601335378759606,0.7460817079651668,0.7321359613213734,0.7183043877581194,0.7045944327659802,0.6910128683371247,0.6775661460305078,0.6642603796106715,0.6511009412586103,0.6380925358873598,0.6252397417131956,0.6125465232393151,0.6000163567295522,0.5876522523667477,0.5754569914857369,0.5634331800808963,0.551582941608744,0.5399078855918787,0.5284095329840035,0.5170891007065905,0.5059473941106049,0.49498494359038625,0.4842020976450952,0.4735991514892198,0.463176143171483,0.4529327307922655,0.44286845776379535,0.4329828301779735,0.4232749983146583,0.413743985392381,0.40438865743235913,0.39520788618848496,0.3862004654627581,0.3773649503922022,0.3686997396700412,0.36020329983208477,0.3518739122895216,0.3437097554891451,0.3357089106597123,0.32786945541666174,0.3201895003899297,0.3126670664140609,0.3053000270376066,0.29808625578691283,0.29102368015196145,0.2841100769668562,0.27734321589690114,0.2707208292262782,0.2642407038981874,0.2579006561874321,0.25169843610223597,0.2456317262671644,0.2396982696407684,0.233895832078176,0.2282220940224403,0.22267479283796357],\"thickness\":2,\"color\":\"#00CC96\",\"width\":0,\"type\":\"data\",\"opacity\":0.1},\"mode\":\"lines\",\"x\":[0.0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.5,9.0,9.5,10.0,10.5,11.0,11.5,12.0,12.5,13.0,13.5,14.0,14.5,15.0,15.5,16.0,16.5,17.0,17.5,18.0,18.5,19.0,19.5,20.0,20.5,21.0,21.5,22.0,22.5,23.0,23.5,24.0,24.5,25.0,25.5,26.0,26.5,27.0,27.5,28.0,28.5,29.0,29.5,30.0,30.5,31.0,31.5,32.0,32.5,33.0,33.5,34.0,34.5,35.0,35.5,36.0,36.5,37.0,37.5,38.0,38.5,39.0,39.5,40.0,40.5,41.0,41.5,42.0,42.5,43.0,43.5,44.0,44.5,45.0,45.5,46.0,46.5,47.0,47.5,48.0,48.5,49.0,49.5,50.0,50.5,51.0,51.5,52.0,52.5,53.0,53.5,54.0,54.5,55.0,55.5,56.0,56.5,57.0,57.5,58.0,58.5,59.0,59.5,60.0,60.5,61.0,61.5,62.0,62.5,63.0,63.5,64.0,64.5,65.0,65.5,66.0,66.5,67.0,67.5,68.0,68.5,69.0,69.5,70.0,70.5,71.0,71.5,72.0,72.5,73.0,73.5,74.0,74.5,75.0,75.5,76.0,76.5,77.0,77.5,78.0,78.5,79.0,79.5,80.0,80.5,81.0,81.5,82.0,82.5,83.0,83.5,84.0,84.5,85.0,85.5,86.0,86.5,87.0,87.5,88.0,88.5,89.0,89.5,90.0,90.5,91.0,91.5,92.0,92.5,93.0,93.5,94.0,94.5,95.0,95.5,96.0,96.5,97.0,97.5,98.0,98.5,99.0,99.5,100.0,100.5,101.0,101.5,102.0,102.5,103.0,103.5,104.0,104.5,105.0,105.5,106.0,106.5,107.0,107.5,108.0,108.5,109.0,109.5,110.0,110.5,111.0,111.5,112.0,112.5,113.0,113.5,114.0,114.5,115.0,115.5,116.0,116.5,117.0,117.5,118.0,118.5,119.0,119.5,120.0,120.5,121.0,121.5,122.0,122.5,123.0,123.5,124.0,124.5,125.0,125.5,126.0,126.5,127.0,127.5,128.0,128.5,129.0,129.5,130.0,130.5,131.0,131.5,132.0,132.5,133.0,133.5,134.0,134.5,135.0,135.5,136.0,136.5,137.0,137.5,138.0,138.5,139.0,139.5,140.0,140.5,141.0,141.5,142.0,142.5,143.0,143.5,144.0,144.5,145.0,145.5,146.0,146.5,147.0,147.5,148.0,148.5,149.0,149.5,150.0,150.5,151.0,151.5,152.0,152.5,153.0,153.5,154.0,154.5,155.0,155.5,156.0,156.5,157.0,157.5,158.0,158.5,159.0,159.5,160.0,160.5,161.0,161.5,162.0,162.5,163.0,163.5,164.0,164.5,165.0,165.5,166.0,166.5,167.0,167.5,168.0,168.5,169.0,169.5,170.0,170.5,171.0,171.5,172.0,172.5,173.0,173.5,174.0,174.5,175.0,175.5,176.0,176.5,177.0,177.5,178.0,178.5,179.0,179.5,180.0,180.5,181.0,181.5,182.0,182.5,183.0,183.5,184.0,184.5,185.0,185.5,186.0,186.5,187.0,187.5,188.0,188.5,189.0,189.5,190.0,190.5,191.0,191.5,192.0,192.5,193.0,193.5,194.0,194.5,195.0,195.5,196.0,196.5,197.0,197.5,198.0,198.5,199.0,199.5,200.0],\"opacity\":0.8,\"y\":[0.0,0.0008455031117415567,0.0014502430103823813,0.0018917025172627147,0.0022227592611833874,0.002479510003376981,0.002686607246639186,0.002860899080955654,0.0030139117653341925,0.0031535429883859023,0.0032852167876498413,0.0034126712992884117,0.0035384960661823013,0.003664498556835804,0.0037919541935749783,0.003921776913080675,0.004054635555123207,0.004191033289589258,0.004331361833836574,0.004475938484848574,0.004625031429345478,0.004778877055624554,0.004937691817448102,0.005101680401667877,0.005271041316509547,0.005445970807718829,0.005626665555303207,0.005813324604003714,0.006006150740062214,0.006205351484957823,0.0064111398635024915,0.006623734983422448,0.006843362517758079,0.0070702551073635374,0.00730465271424258,0.007546802944738671,0.007796961355538625,0.008055391744289476,0.008322366485821985,0.00859816676386036,0.008883082837141308,0.009177414417483971,0.00948147099436949,0.009795572052875848,0.010120047454103274,0.010455237787981056,0.010801494716324758,0.011159181193478775,0.011528671866224811,0.011910353589141576,0.012304625740584921,0.012711900476551262,0.013132603299074633,0.01356717356891155,0.014016064752637732,0.014479744558049254,0.014958695669083866,0.01545341654350915,0.015964421683077244,0.016492241723984013,0.017037424425014686,0.017600535302059416,0.018182158025642263,0.01878289406527754,0.019403363634037236,0.02004420713586015,0.020706085799727523,0.02138968132328834,0.022095696596135507,0.022824857267501872,0.023577912690874385,0.02435563487870167,0.02515881826917953,0.025988282169291572,0.02684487293465174,0.027729463982808015,0.02864295454425293,0.029586271676017586,0.03056037239514687,0.03156624506055033,0.03260490574358789,0.03367739817792112,0.03478479858482214,0.03592821916479759,0.037108807230551946,0.03832774224226765,0.03958623914425422,0.04088555209733934,0.042226976601894416,0.0436118419877883,0.045041509678367286,0.04651738199905922,0.04804090884585077,0.04961358610578749,0.05123694916897042,0.052912576088146396,0.05464209619291887,0.05642719223328205,0.05826959009459282,0.06017104920367758,0.06213337679641463,0.06415844175631823,0.06624817397331638,0.06840455183252861,0.07062960054160579,0.0729254117182117,0.0752941424405289,0.07773800882980275,0.080259257489932,0.08286018379596838,0.0855431592286154,0.08831063623685656,0.09116512745450933,0.0941091913407522,0.0971454669356066,0.10027667119776144,0.10350560136109474,0.10683507858029061,0.11026796202819164,0.11380719722626767,0.11745583462046999,0.12121699929566121,0.1250938540121464,0.12908964725467342,0.13320772195948716,0.13745151945781406,0.14182449493351745,0.14633011348444067,0.15097192705679566,0.15575361743801877,0.16067895456710987,0.16575172422483264,0.17097579098834384,0.17635513017070673,0.18189382341166443,0.18759594189400383,0.1934655153575054,0.19950664833752216,0.20572359749346578,0.21212070863969867,0.218702292099062,0.22547272393989184,0.23243649377340164,0.23959818847599829,0.24696231869238355,0.2545332726487602,0.2623154940758513,0.27031359479611206,0.27853223598979016,0.28697593740636584,0.2956492917674418,0.3045569640300433,0.31370367610209876,0.32309392308525625,0.33273197144291855,0.3426221374523588,0.3527688995627389,0.36317663987055265,0.373849448599639,0.38479153197390237,0.39600706384532663,0.40750013236465515,0.4192743368317102,0.43133296717311953,0.44367940122891497,0.4563170707940275,0.4692489562981569,0.4824777501933385,0.4960061758526362,0.5098368191720074,0.5239717592588905,0.5384123133281009,0.5531595624137442,0.5682146988736998,0.5835785162509267,0.5992509731434763,0.6152320413483245,0.6315213634444136,0.6481181477073478,0.6650204632100362,0.6822256684838056,0.6997311445146331,0.7175339625015308,0.7356299457076801,0.7540146784444232,0.772683307480054,0.79163050897494,0.8108495525754282,0.8303325342789961,0.850071438154985,0.8700579869940223,0.8902823337681143,0.9107341616854001,0.9314026687692705,0.952276493148971,0.9733426467603122,0.9945866775994986,1.0159940234668012,1.0375498622210937,1.0592375187636751,1.0810399491846996,1.1029395751249709,1.1249182577065304,1.1469560468242082,1.1690315967024456,1.1911237409874618,1.2132109695078084,1.2352698351759541,1.2572770560026743,1.2792088601300209,1.301040994915952,1.3227473976623443,1.3443012356321964,1.365676391647969,1.3868461376380667,1.4077824350007575,1.4284580129469986,1.448845488634463,1.468917019604628,1.488643463404153,1.5079960927960006,1.5269473116787347,1.5454686209607622,1.5635319446843265,1.5811100259895006,1.5981762620946347,1.6147036337656586,1.6306650400461513,1.646035044921768,1.6607892042454582,1.6749027747985077,1.6883529304640852,1.7011178724319946,1.7131768130572929,1.7245091164241393,1.7350955560415378,1.744919087278582,1.7539632548189688,1.7622130752001592,1.7696554468594237,1.7762788790239434,1.7820728821818799,1.7870281054294814,1.7911374341812905,1.7943955402092204,1.7967980248725015,1.7983428052429133,1.7990293815375937,1.7988588706636406,1.7978335833574208,1.7959575201741684,1.7932366836537132,1.7896783246167998,1.7852912229475346,1.7800858663591446,1.7740740769827013,1.767268998662804,1.7596850268945161,1.7513378973999034,1.7422446050376517,1.7324231685499476,1.7218928102716944,1.7106736194844139,1.698786390235535,1.6862530883974163,1.6730966502473683,1.659340388695003,1.6450079940894542,1.6301240852096794,1.6147135609160412,1.5988015588855864,1.5824132320337474,1.5655743502057715,1.548311277649226,1.530650034072804,1.5126162142836357,1.4942359784887396,1.475535107278922,1.4565389991538658,1.4372725548371317,1.4177608371015913,1.3980290372596176,1.3781014462344854,1.3580014989274731,1.337752888188771,1.3173783727626212,1.2969000277889453,1.2763391283849526,1.2557168478093022,1.2350540908429357,1.2143705552232693,1.1936850121615772,1.1730162588273803,1.1523818525596066,1.131798612737444,1.1112824934372965,1.0908492425656677,1.0705140825637822,1.0502909815667365,1.0301931552547468,1.0102336529581761,0.9904242848378018,0.9707761868759912,0.9512997534615075,0.9320051575164955,0.9129019414403114,0.8939985468055446,0.8753029294553379,0.856822721917032,0.8385645547304689,0.8205344845493685,0.8027380402074501,0.785180553590107,0.7678667473640675,0.7508005004993996,0.733985446438001,0.7174248107127951,0.7011211407150246,0.6850765237667397,0.6692927321824065,0.6537713842121289,0.6385135907160612,0.6235198878838436,0.6087907286403282,0.5943261715626478,0.5801258743030718,0.5661891613107742,0.5525152047563963,0.5391030754130643,0.5259514704005332,0.5130587350300169,0.5004232229324808,0.4880429790635062,0.47591583298087403,0.46403940572841973,0.4524112716721241,0.44102895901128636,0.4298897512953972,0.41899073716512253,0.40832906311753886,0.397901672223015,0.3877054070402285,0.3777370007711139,0.3679932018639615,0.3584707628642728,0.34916629724434123,0.34007632063605964,0.3311974330756074,0.3225261254492219,0.3140588548892888,0.30579203782118203,0.2977221374406832,0.2898456606302923,0.2821590536977076,0.27465871918007007,0.26734115312907086,0.260202819264096,0.2532401797244839,0.24644970108915892,0.23982790700777448,0.23337139072832952,0.22707674067574476,0.22094053052530158,0.2149594183601637,0.20913009407891875,0.20344925147131404,0.1979136207020028,0.19251998489900243,0.18726520785507872,0.18214618715229766,0.17715982451788242,0.17230308279306727,0.16757300168629313,0.16296662449790936,0.15848104840031862,0.15411341463724929,0.14986094127851607,0.14572090433496535,0.1416906020198122,0.1377673700249707,0.1339486271819263,0.13023182051896784,0.12661444093346755,0.12309402322857031,0.1196681625907445,0.11633452081017323,0.11309080026682963,0.10993473068026235,0.10686409701996095,0.10387674906072973,0.10097055874697186,0.09814344800747456,0.09539338091680807,0.0927183799782788,0.09011652025765128,0.0875859097904022,0.08512468794912623,0.08273104866726545,0.08040323223727093,0.07813950324818847,0.07593817664100634]},{\"name\":\"Recovered\",\"line\":{\"color\":\"#AB63FA\"},\"error_y\":{\"array\":[0.0,2.8963076827327683e-5,0.00010101036789693495,0.000200670787242356,0.0003187837196531538,0.0004501270156426686,0.000591920125006965,0.0007428850239997427,0.0009026612085244097,0.001071444426246207,0.0012497660338555668,0.0014383601811956157,0.0016380854223769206,0.0018498797126937317,0.0020747356423096884,0.002313687747414446,0.00256780688084419,0.002838198612805556,0.0031260038518691052,0.0034324006378955094,0.003758606512561153,0.0041058811557196035,0.004475529117273329,0.004868902574621228,0.005287404123878239,0.005732489556799135,0.00620567068639499,0.006708518199421542,0.007242664576080406,0.007809807085355723,0.008411710861295113,0.009050212079464316,0.00972722123016132,0.010444726518238426,0.011204797363794351,0.012009588026066408,0.012861341371844423,0.013762392754295276,0.014715173995932914,0.015722217627478552,0.01678616122212961,0.01790975176831715,0.019095850274077633,0.02034743665453752,0.021667614614402437,0.023059616747572644,0.02452680985041579,0.02607270055515098,0.02770094095957363,0.029415334364686466,0.031219841450601676,0.03311858673372234,0.0351158649329781,0.03721614759990188,0.039424090403013805,0.041744540707664556,0.04418254472438922,0.04674335493294189,0.04943243840342404,0.05225548557095167,0.05521841833508181,0.05832739877698935,0.06158883869037625,0.0650094103031864,0.0685960555600427,0.0723559952940267,0.07629673986347718,0.08042610130272156,0.0847522044752134,0.08928349769666422,0.09402876423851315,0.0989971376206249,0.10419811557070872,0.10964157079993797,0.11533776297800434,0.12129735416511363,0.12753142614443577,0.13405149387417223,0.14086951943954434,0.14799792700806286,0.1554496270041626,0.16323803405690296,0.17137707847371672,0.17988122101281284,0.18876547470314797,0.19804542971551703,0.2077372696052459,0.2178577881318576,0.22842440750563978,0.23945521558189864,0.2509689916268636,0.26298521588231855,0.27552408468888057,0.28860653971278855,0.30225430453120955,0.3164899061141321,0.3313366901037615,0.34681884314700895,0.36296144318674933,0.37979050513879803,0.3973329847822432,0.41561678664838303,0.4346707985744169,0.45452494565604695,0.4752102246372409,0.4967587057773749,0.5192035649306004,0.5425791338095544,0.5669209891923458,0.5922659509125913,0.6186520673670883,0.6461186457602388,0.674706328235726,0.7044571531297329,0.7354145297951168,0.7676232788184802,0.8011296655788532,0.8359815546377145,0.8722284134286008,0.9099212525319579,0.9491126298258148,0.9898567492346373,1.0322095666916569,1.076228731123996,1.121973602826018,1.1695052732232858,1.2188867858738046,1.270183168207328,1.3234612960819776,1.378789836331204,1.4362393642761488,1.4958825355616094,1.5577939745917935,1.6220502301315682,1.6887297885462331,1.7579133610157067,1.8296839516591081,1.9041265994696848,1.9813282135126151,2.0613777136862983,2.1443662930203926,2.230387177820655,2.3195355056928566,2.41190832074233,2.5076049613378553,2.6067271146938715,2.709378349377441,2.8156638039116904,2.925690401674087,3.0395672121103594,3.1574048689496377,3.279315475007653,3.405412522612915,3.5358114734343324,3.6706296182563216,3.8099852571236816,3.953997277212288,4.102785606978927,4.25647149319036,4.415176318617139,4.579021729044273,4.7481295364925975,4.922622468065201,5.102623439555453,5.2882542775581545,5.479635499190749,5.676887239536567,5.880128491431583,6.089475947338758,6.305044020078868,6.526945367492084,6.755291107531977,6.990189035865453,7.231742271372535,7.480050055831479,7.735208346460902,7.997307126165336,8.266430738777315,8.542657561068602,8.826061203922947,9.116708838249,9.414658708279031,9.719960333813107,10.032656257808162,10.352778814144045,10.68035000597202,11.015380905033329,11.357873281728729,11.707818402764568,12.065193712152478,12.429962516849352,12.802076611777235,13.181472881534711,13.568072763377037,13.961781848550874,14.362491762419824,14.770079316717116,15.184402773172764,15.605301682527173,16.03260026674636,16.466103476607532,16.90559715341321,17.35084782355434,17.801605115961127,18.257600828439404,18.718545400679606,19.184128998950236,19.654025110647538,20.127886057154726,20.605344914411216,21.086015660980166,21.56949607433623,22.055366417279643,22.543187204766433,23.03250235464013,23.522841360219633,24.01371620561266,24.504624447042197,24.995050364639503,25.484467465925864,25.972337326792804,26.45810980196792,26.941227387967352,27.421124796611068,27.89723005283637,28.368966661486034,28.835755846503698,29.297018138745294,29.752173611820353,30.200644144908654,30.641856373470766,31.07524150120823,31.50023843516149,31.916295090420473,32.32287017345186,32.71943499275696,33.10547507572309,33.48049181122757,33.84400404574471,34.19554971407811,34.534687849617406,34.860998635661396,35.174084986699874,35.47357518862048,35.759123344548726,36.030409276500244,36.287141095739536,36.529055822543214,36.75591952673527,36.967526094926214,37.16369983098936,37.34429712510094,37.50920364426783,37.658335602594356,37.791640705955764,37.909098014595216,38.01071519363589,38.09652779248652,38.16660231138819,38.221035178275,38.25994799304831,38.2834908204603,38.291840579573005,38.28520063358503,38.26379531319021,38.227869829680394,38.17769397406249,38.113560182388,38.035776262096896,37.944669826247484,37.84058603032287,37.723885392722586,37.59494103403721,37.454136970862166,37.301869733016474,37.13854711989476,36.96458318234533,36.7804000326956,36.58642615039833,36.38309460888718,36.17084115927748,35.9501028564834,35.72131845737025,35.48492725127216,35.24136614883556,34.99107055267927,34.73447278271502,34.4720010646211,34.20407853825874,33.9311224135886,33.653543696134015,33.371746426016394,33.086126550230226,32.7970720124014,32.50496181190443,32.210165605865306,31.913043556817044,31.613945792094988,31.313211899757853,31.011170859219067,30.70814096177536,30.40442935676273,30.100331918852312,29.796133263855534,29.4921071403219,29.188515967171792,28.88561042841806,28.583630090958952,28.28280357705473,27.983348055568687,27.685469610967946,27.389363580419833,27.095215119526195,26.803198741090068,26.513478178368928,26.226207434172476,25.941530724602664,25.659582321751333,25.38048700413239,25.10436063807258,24.831310662398373,24.561435654923002,24.294825468095997,24.031562382724967,23.77172076375284,23.515367300012755,23.2625613391095,23.01335557514859,22.76779637232946,22.52592339903396,22.287769932393033,22.053363889747736,21.82272735549518,21.595877016615557,21.372824392514964,21.153576483804564,20.938135967011288,20.726500904748388,20.518665090713434,20.314618885384515,20.114348751346554,19.91783770124141,19.725065459070844,19.536008997034244,19.35064266146144,19.168937941900303,18.99086375820697,18.816387122458476,18.64547274904815,18.478083409531646,18.314180052560577,18.15372220990522,17.996668103539694,17.84297445431827,17.692596658523726,17.545489313692478,17.401605944681855,17.260899201393954,17.123320972279462,16.98882265587077,16.857355280492428,16.72886934775383,16.603314886444604,16.480641847515706,16.3608000030532,16.243738928005474,16.1294081634193,16.01775734320436,15.908736337980256,15.802295145993645,15.698383846142836,15.596952839509234,15.497952942360223,15.401335181260386,15.307050996964744,15.21505225281728,15.125291380661157,15.03772133901652,14.95229551507751,14.868967806665198,14.787692804841813,14.708425619437124,14.63112195384273,14.55573812132365,14.482231124263276,14.410558686074069,14.340679165891673,14.272551522362233,14.206135425922664,14.14139129895435,14.078280166906683,14.016763763475021,13.956804508872164,13.898365574077884,13.841410857288494,13.785904910511263,13.73181293535998,13.679100870448249,13.62773535698349,13.577683654793102,13.52891373860627],\"thickness\":2,\"color\":\"#AB63FA\",\"width\":0,\"type\":\"data\",\"opacity\":0.1},\"mode\":\"lines\",\"x\":[0.0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.5,9.0,9.5,10.0,10.5,11.0,11.5,12.0,12.5,13.0,13.5,14.0,14.5,15.0,15.5,16.0,16.5,17.0,17.5,18.0,18.5,19.0,19.5,20.0,20.5,21.0,21.5,22.0,22.5,23.0,23.5,24.0,24.5,25.0,25.5,26.0,26.5,27.0,27.5,28.0,28.5,29.0,29.5,30.0,30.5,31.0,31.5,32.0,32.5,33.0,33.5,34.0,34.5,35.0,35.5,36.0,36.5,37.0,37.5,38.0,38.5,39.0,39.5,40.0,40.5,41.0,41.5,42.0,42.5,43.0,43.5,44.0,44.5,45.0,45.5,46.0,46.5,47.0,47.5,48.0,48.5,49.0,49.5,50.0,50.5,51.0,51.5,52.0,52.5,53.0,53.5,54.0,54.5,55.0,55.5,56.0,56.5,57.0,57.5,58.0,58.5,59.0,59.5,60.0,60.5,61.0,61.5,62.0,62.5,63.0,63.5,64.0,64.5,65.0,65.5,66.0,66.5,67.0,67.5,68.0,68.5,69.0,69.5,70.0,70.5,71.0,71.5,72.0,72.5,73.0,73.5,74.0,74.5,75.0,75.5,76.0,76.5,77.0,77.5,78.0,78.5,79.0,79.5,80.0,80.5,81.0,81.5,82.0,82.5,83.0,83.5,84.0,84.5,85.0,85.5,86.0,86.5,87.0,87.5,88.0,88.5,89.0,89.5,90.0,90.5,91.0,91.5,92.0,92.5,93.0,93.5,94.0,94.5,95.0,95.5,96.0,96.5,97.0,97.5,98.0,98.5,99.0,99.5,100.0,100.5,101.0,101.5,102.0,102.5,103.0,103.5,104.0,104.5,105.0,105.5,106.0,106.5,107.0,107.5,108.0,108.5,109.0,109.5,110.0,110.5,111.0,111.5,112.0,112.5,113.0,113.5,114.0,114.5,115.0,115.5,116.0,116.5,117.0,117.5,118.0,118.5,119.0,119.5,120.0,120.5,121.0,121.5,122.0,122.5,123.0,123.5,124.0,124.5,125.0,125.5,126.0,126.5,127.0,127.5,128.0,128.5,129.0,129.5,130.0,130.5,131.0,131.5,132.0,132.5,133.0,133.5,134.0,134.5,135.0,135.5,136.0,136.5,137.0,137.5,138.0,138.5,139.0,139.5,140.0,140.5,141.0,141.5,142.0,142.5,143.0,143.5,144.0,144.5,145.0,145.5,146.0,146.5,147.0,147.5,148.0,148.5,149.0,149.5,150.0,150.5,151.0,151.5,152.0,152.5,153.0,153.5,154.0,154.5,155.0,155.5,156.0,156.5,157.0,157.5,158.0,158.5,159.0,159.5,160.0,160.5,161.0,161.5,162.0,162.5,163.0,163.5,164.0,164.5,165.0,165.5,166.0,166.5,167.0,167.5,168.0,168.5,169.0,169.5,170.0,170.5,171.0,171.5,172.0,172.5,173.0,173.5,174.0,174.5,175.0,175.5,176.0,176.5,177.0,177.5,178.0,178.5,179.0,179.5,180.0,180.5,181.0,181.5,182.0,182.5,183.0,183.5,184.0,184.5,185.0,185.5,186.0,186.5,187.0,187.5,188.0,188.5,189.0,189.5,190.0,190.5,191.0,191.5,192.0,192.5,193.0,193.5,194.0,194.5,195.0,195.5,196.0,196.5,197.0,197.5,198.0,198.5,199.0,199.5,200.0],\"opacity\":0.8,\"y\":[0.0,0.00011172183240664272,0.00040278643916231147,0.0008233038066961078,0.0013394832766589367,0.0019285225115751085,0.0025751217915787167,0.003269106878576718,0.004003807975062088,0.0047749543916170934,0.005579920952997113,0.006417214313879602,0.007286122924627986,0.008186478609691959,0.009118494285544813,0.010082653631349869,0.01107963618723163,0.01211026663754326,0.013175480602544766,0.014276301697051382,0.015413826288165962,0.016589213520492724,0.017803678944048107,0.019058490601737636,0.0203549668481389,0.021694475308312495,0.023078432682382202,0.024508305101341662,0.025985608896815338,0.027511911674901263,0.02908883359295593,0.030718048816675586,0.03240128709984281,0.03414033547696918,0.03593704005083173,0.037793307864333596,0.039711108850286184,0.04169247785973185,0.043739516731508304,0.0458543965028108,0.04803935967250089,0.05029672246865837,0.05262887723085496,0.05503829494423062,0.05752752775194497,0.06009921157294899,0.06275606881569074,0.06550091126423938,0.06833664294235184,0.07126626299994428,0.07429286883062214,0.07741965933342299,0.08064993807554235,0.08398711660145981,0.08743471802816476,0.09099638082952849,0.09467586234822045,0.0984770423892277,0.10240392728416456,0.1064606542026867,0.11065149501002837,0.11498086049286001,0.11945330488008334,0.12407353100000347,0.12884639473593187,0.13377690930501987,0.13887025022434463,0.1441317610841767,0.14956695877962997,0.1551815383579946,0.16098137844663332,0.1669725481565287,0.173161313636231,0.17955414306181727,0.18615771198789724,0.19297891030836212,0.2000248502404561,0.2073028723786281,0.21482055187565732,0.22258570533008923,0.23060640116045317,0.2388909678617319,0.2474479992995785,0.25628636110427816,0.26541520014701697,0.27484395562454467,0.2845823662660146,0.294640477522299,0.30502865006635504,0.3157575748332908,0.3268382845450319,0.3382821586024934,0.35010092963800654,0.36230669572604196,0.3749119360736851,0.3879295206717532,0.4013727166462894,0.4152551991350049,0.4295910705494968,0.4443948796615906,0.4596816253713403,0.4754667610290652,0.49176620850218833,0.5085963802854475,0.5259741947954398,0.5439170780119483,0.5624429788573513,0.5815703884020165,0.6013183737858536,0.6217065817738382,0.642755236633011,0.6644851529423887,0.6869177654192119,0.7100751547660348,0.7339800415494703,0.7586558047952361,0.7841264975181897,0.8104169007252735,0.8375525315245111,0.8655596289464487,0.8944651593227005,0.9242968537409897,0.9550832499460528,0.986853678540663,1.0196382749425796,1.053467994600147,1.088374685804565,1.1243911097373462,1.1615509074007198,1.1998885885230883,1.2394395757082874,1.2802402683971619,1.3223280177334058,1.365741121308014,1.4105188416301235,1.4567014971567902,1.5043304967273872,1.553448276820718,1.6040982634269174,1.6563249251018815,1.7101738656438978,1.7656917673357728,1.822926368097608,1.8819264800864588,1.9427421091066999,2.005424489564751,2.0700259707205384,2.1365999438781467,2.2052009197537488,2.2758846514075994,2.348707988306785,2.4237288699226682,2.501006326997138,2.5806006552636673,2.6625734022512537,2.7469871665705847,2.833905503021876,2.923393068858227,3.0155157253493465,3.110340237300529,3.2079343372174933,3.308366721316258,3.411707271559901,3.5180268907681325,3.627397188621294,3.7398904471916086,3.85557989341382,3.9745395244019868,4.096843824413595,4.222567801164042,4.351787144669688,4.484578308191513,4.621018066647412,4.7611831855271936,4.9051506521690635,5.052997852404738,5.204801887529019,5.36063967910803,5.520587904590552,5.684723326124229,5.853122362940353,6.025860452484029,6.2030121132433536,6.384651405938045,6.570851090152351,6.761682583552926,6.9572158016830725,7.157519592126205,7.362661389979685,7.572706311460722,7.787717051008585,8.007754551486181,8.232877057007439,8.463139913782225,8.698595405088188,8.939293245412767,9.185280257985541,9.436599246904377,9.693288878295604,9.955384536001583,10.222917105114771,10.495912875920531,10.774393350667145,11.058375880925057,11.347873194300238,11.642892137395853,11.943433845591333,12.249494649237946,12.561064481719345,12.878127177634799,13.200660318775862,13.52863601150524,13.862020070029118,14.200770903760946,14.544840340248545,14.894174038703916,15.248710022505524,15.608379258589455,15.973105879151085,16.34280777656957,16.71739546055166,17.096771618272058,17.48083259226333,17.869467563665108,18.262558404388148,18.659979931158105,19.061600808867222,19.467283512320947,19.876883322497278,20.29024902320472,20.707224050069797,21.127645218404258,21.551343637053748,21.978145020755015,22.40787062038881,22.840336685592668,23.27535427689103,23.712730752479622,24.15226952783263,24.593770180902272,25.037029039893106,25.481840018393303,25.927994933986277,26.37528314582002,26.823492289810574,27.272409303883727,27.721819859190944,28.171509294660595,28.62126299741433,29.070867107244595,29.520108555613266,29.968775224195966,30.416656856587732,30.863545215992964,31.309234302941096,31.753520953771268,32.19620516437966,32.637090439127185,33.07598400685198,33.51269714097374,33.94704557248251,34.37884958352195,34.80793445232883,35.23413075647754,35.65727419656589,36.077205883168126,36.49377289259535,36.90682836911038,37.31623120393105,37.72184657356916,38.123546011696234,38.521207600166655,38.914715536092004,39.30396013522376,39.68883849763113,40.06925452568498,40.445118135023385,40.8163458822871,41.18286087976551,41.54459278588405,41.901477207923215,42.253455604099166,42.60047591948437,42.94249241539615,43.27946469278228,43.61135842783527,43.938145023122026,44.25980153172091,44.57630996498398,44.88765724111668,45.19383571210646,45.49484277442979,45.790679972780616,46.08135376890676,46.36687498042294,46.64725869652753,46.922523598961604,47.19269202097579,47.45779031909377,47.71784831774304,47.972898692203614,48.222977608333835,48.468124126568874,48.70838009001459,48.943789568476475,49.17439901141811,49.40025745283905,49.62141589604901,49.837927046647835,50.04984568911954,50.25722822697249,50.460132518955966,50.658617501506,50.85274338306858,51.04257170832438,51.22816479168005,51.409585736087735,51.58689853872425,51.76016782900131,51.92945866699872,52.09483633344851,52.25636651841036,52.41411529560861,52.56814867291026,52.71853276200491,52.86533371855984,53.00861762992395,53.14845031959548,53.284897254853306,53.418023706594774,53.54789468682172,53.67457462937887,53.79812759454499,53.91861716112045,54.03610638833345,54.15065766112866,54.26233266222783,54.37119250033411,54.4772976496414,54.58070773519713,54.68148171680192,54.77967779420503,54.87535340075653,54.96856509588681,55.05936856409643,55.14781871775032,55.23396965913873,55.31787453512127,55.39958568354728,55.47915457318414,55.556631808697375,55.63206706373926,55.70550908511217,55.77700577631528,55.84660418841965,55.914350418594815,55.98028971309837,56.04446644980629,56.10692414066206,56.167705398660296,56.22685193642395,56.28440463272524,56.340403549553784,56.394887865089785,56.44789592468229,56.49946527305288,56.54963264002332,56.59843393885799,56.64590425618873,56.69207790001196,56.73698843452306,56.780668647909174,56.823150552237045,56.86446545252193,56.9046439199907,56.943715812051146,56.98171025923424,57.0186556922339,57.05457988204232,57.08950994045252,57.12347229692263,57.15649275351667,57.18859648493051,57.21980805059367,57.25015139391119,57.27964984935734,57.30832617451218,57.3362025720679,57.36330067972083,57.389641574192595,57.41524581567394,57.440133437364295,57.464323962582185,57.48783640296325,57.51068927371378,57.53290061937961,57.55448802548718,57.57546861068688,57.5958590431637,57.61567556765475,57.63493399487618]}],\"layout\":{\"showlegend\":true,\"xaxis\":{\"autorange\":true,\"title\":\"Time (Days)\",\"type\":\"linear\"},\"annotations\":[],\"title\":\"Covid-19 SEIR Model with Error Bars\",\"yaxis\":{\"autorange\":false,\"range\":[0,100],\"title\":\"%\",\"type\":\"linear\"},\"shapes\":[],\"legend\":{}}},\"1.0\":{\"config\":{\"responsive\":true},\"data\":[{\"name\":\"Susceptible\",\"line\":{\"color\":\"#636EFA\"},\"error_y\":{\"array\":[0.0,5.544589074136565e-5,0.0001965198101525329,0.0003986085780574703,0.0006490433123689035,0.0009422949336916057,0.001277095352443464,0.001654737282480039,0.0020780886299404397,0.0025510355647096828,0.0030781798877208204,0.0036646856045203964,0.004316212140507906,0.00503889745775685,0.0058393698361370976,0.0067247762449851416,0.007702820625090001,0.00878180851341229,0.009970696216388408,0.011279143756786066,0.012717571369395858,0.014297219621598143,0.016030213269271728,0.01792962948253304,0.020009570373523692,0.022285240581255764,0.024773030036080702,0.027490602470862012,0.030456990070322546,0.03369269465645352,0.037219795905511444,0.0410620670836574,0.04524509868794345,0.04979643066995667,0.05474569377114562,0.060124760333651134,0.06596790542314254,0.07231197944347532,0.07919659092172679,0.0866643016693019,0.09476083630697126,0.10353530531679185,0.11304044120632127,0.12333284983163206,0.13447327993944452,0.14652690768051496,0.1595636395143319,0.17365843293960725,0.18889163860559044,0.20534936300104045,0.22312385042820362,0.24231388834978185,0.26302523738414035,0.2853710849173713,0.30947251897663236,0.33545903102606683,0.36346904939896163,0.3936504966462589,0.42616136860358306,0.4611703463657157,0.4988574379427323,0.5394146436446391,0.5830466462812376,0.6299715279243071,0.6804215202593058,0.7346437768111364,0.7929011575026087,0.8554730369050672,0.9226561372265493,0.994765351050291,1.0721346093376476,1.1551177213698733,1.2440892021170848,1.3394451020895541,1.4416038211735902,1.5510068779510602,1.6681196416406585,1.7934319131534247,1.9274586171454604,2.070740386586135,2.2238438060441235,2.3873615611631314,2.5619125837328394,2.748142029887164,2.9467208412644217,3.158344933561036,3.3837343412017433,3.623632746913904,3.878805412775046,4.150036470771845,4.438126535083799,4.743890321940912,5.068152571192988,5.411743194985201,5.775491870428471,6.160225190740154,6.566759300158709,6.99588982099755,7.448383678036487,7.924972692906536,8.42634183326531,8.953116384388716,9.50584901438708,10.085014401309513,10.690993043413604,11.324048679930137,11.984314241757927,12.671783924747778,13.386289064810738,14.127479332639147,14.894807840972854,15.687529794702245,16.50467548832242,17.345021499854358,18.2070910273028,19.089149315940322,19.9891763664263,20.904863071482325,21.83362595368996,22.772613723216082,23.718682333456236,24.668408596622214,25.61813453513545,26.56395475768972,27.501749349608772,28.427224619542685,29.335967771341835,30.223455661217045,31.085096277565704,31.916314679150464,32.71256999188297,33.46942213289403,34.18259398198262,34.84803922479247,35.46197344676325,36.02092817339076,36.521819720523794,36.96196634791473,37.339141040653345,37.65159984384401,37.89810478822567,38.07793227671867,38.19088135331864,38.237269790043186,38.217919856375005,38.1341428634296,37.98770176663515,37.780782656397946,37.515958894222294,37.19613662754515,36.82451488017826,36.404536067680176,35.93983006487361,35.43415874334975,34.89138053760173,34.31539558025118,33.71009944919903,33.07935026200538,32.42692937480282,31.756501723071384,31.07159370163114,30.375576710641045,29.671637053072935,28.96277062820761,28.251771336637425,27.541224118898512,26.83349609588238,26.130743028850862,25.43491568304456,24.74775562531817,24.070809304489618,23.405434404515653,22.752807960866217,22.11393762389785,21.489672435089943,20.88071415218387,20.287628451714628,19.710856322161867,19.150724393764673,18.607456069902682,18.08118272519611,17.571951790778318,17.079736113898967,16.60444387735977,16.145924923574658,15.703978585803307,15.278361123701536,14.868792430898651,14.474959988586205,14.096524900885846,13.733127118387348,13.384388324528551,13.04991616760996,12.729308286026445,12.422155205070853,12.128041749943756,11.846550472736132,11.5772635049109,11.319763812211493,11.07363699077696,10.838473198208778,10.613868039737776,10.399422859264423,10.194746486297069,9.999455557863337,9.813174977165241,9.63553850977288,9.466189593315862,9.304781413221562,9.150976735915156,9.004448687964947,8.864880577039193,8.731965899819032,8.605408419623977,8.484922395727537,8.370232392188036,8.261072911656694,8.157188624465803,8.058334106808049,7.964273563906206,7.874780707110289,7.7896386747452295,7.7086397860397895,7.631585109513458,7.558284371313791,7.4885557622690575,7.422225498572573,7.359127659813103,7.299103949313624,7.242003475110921,7.187682358116082,7.136003474572905,7.086836323194916,7.0400566123156025,6.995546067781552,6.953192168197868,6.912887956810214,6.874531757590753,6.838026884512237,6.80328148445882,6.770208313149902,6.73872446457509,6.7087512001848575,6.6802137554205,6.653041168139199,6.627166053154071,6.602524413020408,6.579055520763275,6.5567017213517955,6.535408273917614,6.515123210149917,6.495797205314206,6.477383448617724,6.459837489618925,6.44311711294011,6.427182253295767,6.411994861348489,6.397518798110008,6.383719740053471,6.370565090823818,6.3580238964839495,6.346066746729305,6.334665688768146,6.323794168011609,6.3134269527926445,6.303540052212239,6.294110662553893,6.285117104061191,6.276538769420224,6.268356063705534,6.260550345047679,6.253103879655265,6.24599980467093,6.2392220712094435,6.232755407247496,6.226585277983094,6.220697851096816,6.215079962998228,6.209719081144659,6.20460326921041,6.199721160798355,6.195061935551976,6.190615283760921,6.186371384788194,6.18232088237947,6.178454863367044,6.174764836884861,6.171242711564708,6.1678807739454635,6.164671671268505,6.1616083972718085,6.158684272486199,6.155892927149099,6.153228288459001,6.15068456590388,6.148256238957858,6.145938043636856,6.143724958855157,6.141612194354798,6.139595181053763,6.137669562015187,6.13583117980397,6.134076067638356,6.1324004410255855,6.130800689334086,6.129273368194066,6.127815191326584,6.12642302241454,6.1250938678010085,6.1238248704043245,6.12261330427962,6.12145656785577,6.120352177139661,6.119297761505217,6.118291058163476,6.117329907672339,6.116412249103814,6.115536115125737,6.114699627378816,6.113900992404388,6.11313849812464,6.11241051049575,6.111715469485112,6.111051885182272,6.110418335281674,6.109813461851819,6.109235968742804,6.108684618692988,6.1081582303986774,6.107655675780959,6.107175877550878,6.106717807052787,6.106280482255945,6.105862965666272,6.105464361911314,6.105083815922888,6.104720511236108,6.104373668330688,6.104042543168915,6.103726425455386,6.1034246369140055,6.1031365297354405,6.102861485223148,6.10259891258358,6.102348247766371,6.1021089522630545,6.1018805118182975,6.101662435212742,6.101454253449111,6.10125551856083,6.101065803006976,6.100884698808278,6.10071181648219,6.100546784034052,6.100389246107848,6.100238863291036,6.100095311503697,6.099958281382521,6.099827477595289,6.099702618091164,6.099583433408542,6.099469666323814,6.099361071069591,6.0992574128961685,6.099158468054174,6.0990640232169016,6.098973874731428,6.098887827969039,6.098805696870792,6.098727303661621,6.0986524786359375,6.098581059899394,6.098512892985262,6.098447830349736,6.098385730888416,6.098326459818923,6.098269888660204,6.098215893873393,6.098164357798369,6.098115169128417,6.0980682222250655,6.098023416186278,6.097980654171105,6.097939843144659,6.0979008939682435,6.097863721620521,6.097828245297037,6.09779438819679,6.097762076966307,6.097731241033501,6.097701812425579,6.097673726747612,6.0976469230536665,6.097621343067598,6.09759693113525,6.097573634119609,6.097551401286536,6.097530184189746,6.097509936567672,6.097490614256908,6.097472175106984],\"thickness\":2,\"color\":\"#636EFA\",\"width\":0,\"type\":\"data\",\"opacity\":0.1},\"mode\":\"lines\",\"x\":[0.0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.5,9.0,9.5,10.0,10.5,11.0,11.5,12.0,12.5,13.0,13.5,14.0,14.5,15.0,15.5,16.0,16.5,17.0,17.5,18.0,18.5,19.0,19.5,20.0,20.5,21.0,21.5,22.0,22.5,23.0,23.5,24.0,24.5,25.0,25.5,26.0,26.5,27.0,27.5,28.0,28.5,29.0,29.5,30.0,30.5,31.0,31.5,32.0,32.5,33.0,33.5,34.0,34.5,35.0,35.5,36.0,36.5,37.0,37.5,38.0,38.5,39.0,39.5,40.0,40.5,41.0,41.5,42.0,42.5,43.0,43.5,44.0,44.5,45.0,45.5,46.0,46.5,47.0,47.5,48.0,48.5,49.0,49.5,50.0,50.5,51.0,51.5,52.0,52.5,53.0,53.5,54.0,54.5,55.0,55.5,56.0,56.5,57.0,57.5,58.0,58.5,59.0,59.5,60.0,60.5,61.0,61.5,62.0,62.5,63.0,63.5,64.0,64.5,65.0,65.5,66.0,66.5,67.0,67.5,68.0,68.5,69.0,69.5,70.0,70.5,71.0,71.5,72.0,72.5,73.0,73.5,74.0,74.5,75.0,75.5,76.0,76.5,77.0,77.5,78.0,78.5,79.0,79.5,80.0,80.5,81.0,81.5,82.0,82.5,83.0,83.5,84.0,84.5,85.0,85.5,86.0,86.5,87.0,87.5,88.0,88.5,89.0,89.5,90.0,90.5,91.0,91.5,92.0,92.5,93.0,93.5,94.0,94.5,95.0,95.5,96.0,96.5,97.0,97.5,98.0,98.5,99.0,99.5,100.0,100.5,101.0,101.5,102.0,102.5,103.0,103.5,104.0,104.5,105.0,105.5,106.0,106.5,107.0,107.5,108.0,108.5,109.0,109.5,110.0,110.5,111.0,111.5,112.0,112.5,113.0,113.5,114.0,114.5,115.0,115.5,116.0,116.5,117.0,117.5,118.0,118.5,119.0,119.5,120.0,120.5,121.0,121.5,122.0,122.5,123.0,123.5,124.0,124.5,125.0,125.5,126.0,126.5,127.0,127.5,128.0,128.5,129.0,129.5,130.0,130.5,131.0,131.5,132.0,132.5,133.0,133.5,134.0,134.5,135.0,135.5,136.0,136.5,137.0,137.5,138.0,138.5,139.0,139.5,140.0,140.5,141.0,141.5,142.0,142.5,143.0,143.5,144.0,144.5,145.0,145.5,146.0,146.5,147.0,147.5,148.0,148.5,149.0,149.5,150.0,150.5,151.0,151.5,152.0,152.5,153.0,153.5,154.0,154.5,155.0,155.5,156.0,156.5,157.0,157.5,158.0,158.5,159.0,159.5,160.0,160.5,161.0,161.5,162.0,162.5,163.0,163.5,164.0,164.5,165.0,165.5,166.0,166.5,167.0,167.5,168.0,168.5,169.0,169.5,170.0,170.5,171.0,171.5,172.0,172.5,173.0,173.5,174.0,174.5,175.0,175.5,176.0,176.5,177.0,177.5,178.0,178.5,179.0,179.5,180.0,180.5,181.0,181.5,182.0,182.5,183.0,183.5,184.0,184.5,185.0,185.5,186.0,186.5,187.0,187.5,188.0,188.5,189.0,189.5,190.0,190.5,191.0,191.5,192.0,192.5,193.0,193.5,194.0,194.5,195.0,195.5,196.0,196.5,197.0,197.5,198.0,198.5,199.0,199.5,200.0],\"opacity\":0.8,\"y\":[99.99,99.98977635174764,99.98919131635547,99.98833925762085,99.98728103147172,99.98605516700441,99.98468527420532,99.98318494896286,99.98156101803272,99.9798156827123,99.97794793176963,99.97595446927266,99.9738303201933,99.97156922176531,99.96916387212428,99.96660608366355,99.96388687248923,99.96099650475257,99.95792451358716,99.95465969571727,99.95119009367231,99.9475029674712,99.94358475856163,99.93942104703926,99.93499650389627,99.93029483825384,99.92529874038685,99.91998982040082,99.9143485426531,99.90835415588799,99.90198461890566,99.8952165216178,99.88802500125769,99.8803836535105,99.87226443829668,99.86363757992213,99.85447146127355,99.84473251204732,99.8343850897535,99.82339135397889,99.81171113386694,99.79930178774494,99.7861180541631,99.77211189444985,99.75723232702668,99.74142525169236,99.72463326412387,99.70679545973556,99.68784722761086,99.66772003305135,99.64634118735424,99.62363360577493,99.59951555359179,99.57390037863604,99.54669622626257,99.51780574358799,99.48712577124579,99.45454701735099,99.41995371255017,99.38322325257072,99.34422582620984,99.3028240257626,99.25887242874825,99.21221717298391,99.16269552313824,99.11013541299069,99.05435495968963,98.99516196950249,98.93235343717515,98.86571503099093,98.79502052177727,98.72003122252832,98.64049545564293,98.55614799388077,98.46670945428346,98.37188569417694,98.27136725519591,98.16482880629518,98.0519285089698,97.93230736985069,97.80558877398232,97.67137803545755,97.52926185174589,97.37880774969105,97.21956376886489,97.05105817094208,96.87279913670866,96.68427422829234,96.48495044407454,96.27427452647758,96.05167304290654,95.81655232382764,95.56829910376723,95.30628133750535,95.02984911584883,94.73833478552535,94.43105445415353,94.1073104824719,93.76639334748498,93.40758282535099,93.03015106714115,92.63336600726274,92.21649480711088,91.77880534964825,91.31957087773382,90.83807686515405,90.33362560678849,89.80553911585109,89.25316726341464,88.67589452075356,88.07314615870028,87.44439095770608,86.78915162430953,86.10701653285244,85.39764363984605,84.66076633916397,83.89620669254084,83.1038827671854,82.28381099173157,81.43611154264863,80.56102442753973,79.65891465533159,78.73026850023047,77.77570792016151,76.79599249462582,75.792017895675,74.76480961539899,73.71553436391035,72.64549950073854,71.55613548014522,70.44900327323415,69.32578445078761,68.18826831004827,67.03833422101707,65.8779531842478,64.70917327756638,63.5340931879785,62.35486114276752,61.173653391921434,59.992652778455636,58.814030392012974,57.63994034830444,56.472495344504416,55.3137505354378,54.165694725471944,53.03023315802341,51.9091707888431,50.80420578191983,49.71692385824779,48.648783166734376,47.60111523223554,46.57511831337249,45.57185426457329,44.59224685240773,43.637085759807526,42.70702703504725,41.80259613991353,40.92419421029766,40.07210212004843,39.24648712655354,38.44740997088192,37.67483247146116,36.92862495274859,36.20857465346616,35.51439274010122,34.845722476939436,34.202148701353266,33.583203625619326,32.988373150352295,32.41710612530366,31.86881898543153,31.34290197989079,30.838724883952306,30.355643288325325,29.893002076636314,29.450139033230453,29.02639037275778,28.62109254303618,28.233585614681378,27.86321605593935,27.50933977209445,27.171322808141614,26.848543068222092,26.54039275309743,26.24627813702649,25.965621027148185,25.69785964071848,25.442449394607213,25.198862425711212,24.96658822439289,24.745134030235707,24.534024185049084,24.33280032884267,24.141021448972584,23.958263633655985,23.78411929336996,23.61819724824042,23.460122283989193,23.30953453392269,23.166089156792516,23.029456078558695,22.89931944784203,22.775376919297365,22.65733949243629,22.544930905703307,22.43788711743878,22.33595587898682,22.238896403824278,22.14647884522182,22.058483720506157,21.97470167363959,21.89493296176959,21.818987028542335,21.746682128868162,21.67784502215369,21.61231056613537,21.549921275148446,21.490527083841034,21.433984982833934,21.380158667160444,21.32891825238138,21.28014001800701,21.233706121293647,21.18950426850174,21.147427501331126,21.107373968579935,21.069246634857937,21.032953085396358,20.998405316159012,20.965519542559527,20.934215966175543,20.904418588153842,20.876055068285847,20.849056508818904,20.823357309947845,20.798895009548257,20.7756101513353,20.753446131188575,20.732349045348933,20.7122675816287,20.69315289593018,20.674958478374595,20.657640052125892,20.64115546806481,20.62546460944801,20.610529283712985,20.596313126578323,20.582781529167818,20.56990154422176,20.5576418055778,20.545972454222365,20.53486506929678,20.52429260098104,20.51422929793578,20.50465064383668,20.495533306706427,20.48685507573122,20.47859480706974,20.470732373867246,20.463248618940213,20.456125309735462,20.449345090260103,20.442891437252584,20.436748624679353,20.43090168474403,20.425336367620627,20.420039109941005,20.41499700115425,20.41019775395285,20.405629673063153,20.401281624762344,20.397143010877837,20.393203745584923,20.38945422737025,20.385885316886778,20.382488314659245,20.379254940550304,20.376177314094242,20.37324793422045,20.370459660125263,20.367805694850944,20.365279569971104,20.36287512758715,20.360586506370147,20.358408127144237,20.35633467968254,20.35436111005645,20.35248260776902,20.350694593480544,20.348992708172815,20.347372803413958,20.345830930476534,20.34436333036145,20.34296642524702,20.341636809619228,20.3403712422991,20.33916663841815,20.338020061534507,20.336928716338665,20.335889942179875,20.334901206960684,20.33396010028455,20.33306432772293,20.33221170539558,20.33140015464867,20.33062769713414,20.32989244989841,20.329192620603838,20.32852650307601,20.327892473282866,20.327288985609044,20.32671456891946,20.326167822700157,20.325647413972554,20.325152073950555,20.324680595059085,20.324231827981826,20.323804678769843,20.32339810609335,20.32301111870115,20.32264277309464,20.3222921713256,20.32195845869884,20.32164082155355,20.321338485462764,20.32105071329691,20.320776803499456,20.32051608836448,20.3202679323556,20.320031730512238,20.319806906967283,20.3195929135758,20.31938922862763,20.31919535558738,20.31901082178913,20.31883517729781,20.318667993857247,20.318508863851488,20.318357399354138,20.31821323115762,20.318076007833767,20.317945394854263,20.3178210737775,20.31770274149281,20.317590109504064,20.31748290323187,20.31738086131767,20.317283734951452,20.317191287318987,20.317103292990815,20.317019537430582,20.316939816483195,20.316863935844086,20.31679171055356,20.316722964534193,20.316657530170804,20.316595247921093,20.316535965941174,20.31647953971343,20.31642583167476,20.316374710861613,20.316326052624742,20.316279738299077,20.316235654920376,20.316193695026133,20.316153756379897,20.316115741676953,20.316079558273042,20.31604511795114,20.316012336722462,20.31598113464695,20.315951435655183,20.3159231673587,20.31589626084797,20.315870650497963,20.315846273831546,20.315823071413256,20.315800986556244,20.31577996533844,20.315759956571107,20.315740911616874,20.31572278417787,20.3157055301209,20.315689107361866,20.31567347580005,20.31565859727436,20.31564443550821,20.315630956017447,20.315618125976435,20.315605914071487,20.31559429041763,20.31558322662826,20.315572695755435,20.315562672139194,20.315553131352615,20.31554405014416,20.31553540638111,20.315527178994913,20.31551934793001,20.3155118940965,20.315504799324845]},{\"name\":\"Exposed\",\"line\":{\"color\":\"#EF553B\"},\"error_y\":{\"array\":[0.0,0.00017593208488275256,0.0002466304597900952,0.00025972560952231455,0.0002522368251356075,0.00026092382528859076,0.0003150797880309863,0.0004188944952451496,0.0005624217418427617,0.0007378897593616203,0.0009418984149176841,0.001173711777979018,0.0014340393241688888,0.0017244251425150028,0.002046954334835081,0.0024041112738382433,0.0027987124700528717,0.0032338779736522964,0.003713023796424843,0.004239866490585275,0.0048184352374195365,0.005453088951748368,0.006148536920536742,0.006909862557036605,0.007742549488637297,0.008652510169990295,0.009646116711862602,0.010730234100439169,0.011912255872548187,0.013200142295639362,0.01460246123729528,0.01612843189888493,0.017787971381098274,0.019591744522792172,0.02155121715480971,0.023678712614421293,0.02598747212096073,0.02849172014857289,0.03120673149439665,0.034148903256733074,0.03733583374751103,0.040786405785216154,0.04452087286914697,0.04856095061989439,0.05292991707282102,0.05765271560457903,0.06275606468027062,0.06826857250411225,0.07422086101625118,0.0806456964454771,0.08757812324043127,0.0950556066843493,0.10311818500942332,0.1118086277251318,0.12117259310463036,0.1312587995180555,0.1421192103699666,0.15380922048978182,0.1663878404304837,0.17991789579946843,0.1944662355078364,0.21010393908976094,0.22690652020424806,0.24495413877295324,0.26433182803954647,0.28512971541492116,0.3074432253240356,0.33137328718426157,0.3570265507945686,0.3845155614122338,0.41395895781762837,0.445481625418713,0.47921482690817485,0.5152963181037788,0.5538704290252183,0.5950880942196158,0.6391068573064694,0.6860906955101248,0.7362100011960188,0.7896414772531899,0.8465676792737249,0.907176502163132,0.9716607377350985,1.0402175362733397,1.1130474987031085,1.1903534421408604,1.2723392843979398,1.3592096636385986,1.4511678119234661,1.5484128829742474,1.6511380162691898,1.7595288181869857,1.8737601245244193,1.9939922379085453,2.120366930523007,2.253007438388969,2.392013338967855,2.5374525215471735,2.6893563646233503,2.8477181403311698,3.012485353804296,3.1835515486278263,3.3607487749816425,3.543851221737998,3.732565816498959,3.926515065917739,4.125232091770252,4.328164982706484,4.534660575758552,4.743955868762976,4.955174958949867,5.1673452457793605,5.379379715605402,5.59005605940373,5.798034712769475,6.0018702410621465,6.199991075552671,6.3907087279942125,6.572250472534738,6.74278009860963,6.900372288180917,7.043035513042685,7.168773931874561,7.2755684158837095,7.361414116987213,7.424364007619117,7.462588611405552,7.474367844396504,7.458122152144937,7.4125011506456175,7.336375633898337,7.228893755592012,7.089529708253224,6.918142123160509,6.714984724191075,6.480753674465049,6.216665635253929,5.924483222244287,5.606612414678004,5.266205588806628,4.9073162997436794,4.535123756828115,4.156288960443173,3.7794877700173397,3.4161798542245694,3.0815929539087468,2.7955455825250506,2.581985747660076,2.465090948725978,2.4609381642181636,2.5693799798786134,2.7740642833668545,3.0506494388832337,3.375226617385956,3.7282450752065857,4.094957225070253,4.464536250824773,4.829035617648697,5.1825738607945935,5.520771459104144,5.840356813606141,6.138895869794759,6.414628489397513,6.6663298610346935,6.893218509913581,7.0948859245153955,7.271248995586312,7.422492454776922,7.549022384682772,7.6514453964949745,7.730525376280202,7.787157908662895,7.82234664893852,7.837179334832384,7.832806133075784,7.810420244059935,7.7712422688769,7.716504060464188,7.647436909747482,7.56525968770134,7.471168103899862,7.366328171454777,7.251869253086491,7.128877228457596,6.998391820788376,6.861403065134721,6.718848184661072,6.57160949000504,6.4205156903150655,6.2663407163837,6.109803421050659,5.951570004331584,5.792254737517164,5.632420629252776,5.472581298604357,5.313204545222153,5.154713083839304,4.997487008964299,4.84186678879371,4.688155317830532,4.536619464702415,4.387492737130285,4.240978514439408,4.097251066158663,3.9564582215731843,3.818723638582,3.6841486675808097,3.5528136695135952,3.4247801362897117,3.3000929736631157,3.1787812648443743,3.0608601856185,2.94633250154908,2.8351898117813317,2.7274134045364415,2.622975573338571,2.521841072615377,2.423967578906563,2.3293067455175316,2.2378051832301407,2.1494051201339466,2.064044894015673,1.9816596070746595,1.902181997623276,1.8255427276499179,1.7516707540045018,1.6804940276994966,1.6119397202227053,1.54593452131072,1.4824048588406809,1.421277363133393,1.3624790938331042,1.3059375372289062,1.251581031038171,1.1993388209833766,1.1491412205028346,1.1009196293213306,1.0546067008531692,1.0101365200363965,0.967444555338314,0.9264677172962104,0.8871444977621694,0.8494149445840035,0.8132206762623254,0.77850486051965,0.7452122922257836,0.7132894175417132,0.6826842391364352,0.6533463683287052,0.625227016304693,0.5982789656415205,0.5724565271631478,0.5477155049638053,0.5240132143482933,0.5013084595430686,0.47956144720397087,0.4587337963052594,0.43878850681735876,0.4196899178549327,0.40140366200342587,0.3838966203416065,0.36713691221274236,0.351093870659329,0.3357379758401824,0.3210408247751575,0.3069751219623643,0.29351462413563056,0.2806341099657349,0.2683093335023771,0.2565170001512643,0.2452347481625439,0.23444110901441156,0.2241154580841771,0.2142380084090173,0.20478977236252716,0.19575253314794225,0.18710881163024967,0.17884183528234496,0.17093551942268173,0.16337444756191305,0.1561438391911857,0.1492295164052943,0.1426178966934883,0.13629596256632856,0.13025124061557855,0.12447177712464738,0.11894611531148634,0.11366327966074012,0.1086127609348305,0.10378449519733242,0.0991688392208512,0.09475655917583296,0.0905388167278264,0.08650714854824161,0.08265345200045394,0.07896996776266711,0.0754492666121255,0.07208423864441747,0.06886808119922193,0.06579428351156535,0.0628566115482951,0.060049101734666065,0.05736604860284405,0.05480199270728437,0.05235171018345477,0.05001020161020277,0.04777268322253307,0.0456345793252485,0.04359151420048585,0.04163930253454741,0.039773939408352,0.03799159395169716,0.03628860416074274,0.034661467096596545,0.03310683280192309,0.031621496777611995,0.03020239378850802,0.028846592627829837,0.027551291054779416,0.026313810283715572,0.025131588908128413,0.02400217698840409,0.02292323213683248,0.02189251602362379,0.020907888372635963,0.01996730309543295,0.019068803539836383,0.018210518694926597,0.01739065993186048,0.016607517818530208,0.01585945875142801,0.015144921372824818,0.01446241298542652,0.013810506440115836,0.013187838110275617,0.012593105004071733,0.012025061751819553,0.011482517999872335,0.010964335585900833,0.010469426468393455,0.009996750889017325,0.00954531547085733,0.009114171168245313,0.008702411133483006,0.008309168652217702,0.00793361532252845,0.00757495961289667,0.007232445564368795,0.006905350740334199,0.00659298507696043,0.006294688880043335,0.006009831360096923,0.005737809663133464,0.0054780479459712855,0.0052299963034061975,0.004993129540472742,0.004766945895876827,0.004550965862478256,0.004344731217423426,0.0041478042681370435,0.003959767136930281,0.0037802205503319015,0.003608783296261446,0.003445091358905788,0.003288796380574344,0.003139565079487344,0.0029970790189523555,0.0028610342927569148,0.0027311409660615384,0.0026071223047647914,0.002488713939208119,0.0023756631401571954,0.002267728336229193,0.002164678872289332,0.0020662947978185996,0.0019723661610461145,0.0018826921016968277,0.0017970819773955714,0.001715353339204193,0.0016373305039669847,0.0015628447869194518,0.0014917351255894704,0.0014238483896148785,0.0013590391404766265,0.0012971689370102801,0.0012381054768538676,0.0011817219206483503,0.0011278966647801792,0.0010765136096994165,0.0010274626143108219,0.0009806393325680418,0.0009359434905883045,0.0008932785845621258,0.0008525525693862538,0.0008136775808545057,0.0007765697295621469,0.0007411489222508477,0.0007073386991870152,0.0006750660704893094,0.0006442613443663156,0.0006148579661128619],\"thickness\":2,\"color\":\"#EF553B\",\"width\":0,\"type\":\"data\",\"opacity\":0.1},\"mode\":\"lines\",\"x\":[0.0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.5,9.0,9.5,10.0,10.5,11.0,11.5,12.0,12.5,13.0,13.5,14.0,14.5,15.0,15.5,16.0,16.5,17.0,17.5,18.0,18.5,19.0,19.5,20.0,20.5,21.0,21.5,22.0,22.5,23.0,23.5,24.0,24.5,25.0,25.5,26.0,26.5,27.0,27.5,28.0,28.5,29.0,29.5,30.0,30.5,31.0,31.5,32.0,32.5,33.0,33.5,34.0,34.5,35.0,35.5,36.0,36.5,37.0,37.5,38.0,38.5,39.0,39.5,40.0,40.5,41.0,41.5,42.0,42.5,43.0,43.5,44.0,44.5,45.0,45.5,46.0,46.5,47.0,47.5,48.0,48.5,49.0,49.5,50.0,50.5,51.0,51.5,52.0,52.5,53.0,53.5,54.0,54.5,55.0,55.5,56.0,56.5,57.0,57.5,58.0,58.5,59.0,59.5,60.0,60.5,61.0,61.5,62.0,62.5,63.0,63.5,64.0,64.5,65.0,65.5,66.0,66.5,67.0,67.5,68.0,68.5,69.0,69.5,70.0,70.5,71.0,71.5,72.0,72.5,73.0,73.5,74.0,74.5,75.0,75.5,76.0,76.5,77.0,77.5,78.0,78.5,79.0,79.5,80.0,80.5,81.0,81.5,82.0,82.5,83.0,83.5,84.0,84.5,85.0,85.5,86.0,86.5,87.0,87.5,88.0,88.5,89.0,89.5,90.0,90.5,91.0,91.5,92.0,92.5,93.0,93.5,94.0,94.5,95.0,95.5,96.0,96.5,97.0,97.5,98.0,98.5,99.0,99.5,100.0,100.5,101.0,101.5,102.0,102.5,103.0,103.5,104.0,104.5,105.0,105.5,106.0,106.5,107.0,107.5,108.0,108.5,109.0,109.5,110.0,110.5,111.0,111.5,112.0,112.5,113.0,113.5,114.0,114.5,115.0,115.5,116.0,116.5,117.0,117.5,118.0,118.5,119.0,119.5,120.0,120.5,121.0,121.5,122.0,122.5,123.0,123.5,124.0,124.5,125.0,125.5,126.0,126.5,127.0,127.5,128.0,128.5,129.0,129.5,130.0,130.5,131.0,131.5,132.0,132.5,133.0,133.5,134.0,134.5,135.0,135.5,136.0,136.5,137.0,137.5,138.0,138.5,139.0,139.5,140.0,140.5,141.0,141.5,142.0,142.5,143.0,143.5,144.0,144.5,145.0,145.5,146.0,146.5,147.0,147.5,148.0,148.5,149.0,149.5,150.0,150.5,151.0,151.5,152.0,152.5,153.0,153.5,154.0,154.5,155.0,155.5,156.0,156.5,157.0,157.5,158.0,158.5,159.0,159.5,160.0,160.5,161.0,161.5,162.0,162.5,163.0,163.5,164.0,164.5,165.0,165.5,166.0,166.5,167.0,167.5,168.0,168.5,169.0,169.5,170.0,170.5,171.0,171.5,172.0,172.5,173.0,173.5,174.0,174.5,175.0,175.5,176.0,176.5,177.0,177.5,178.0,178.5,179.0,179.5,180.0,180.5,181.0,181.5,182.0,182.5,183.0,183.5,184.0,184.5,185.0,185.5,186.0,186.5,187.0,187.5,188.0,188.5,189.0,189.5,190.0,190.5,191.0,191.5,192.0,192.5,193.0,193.5,194.0,194.5,195.0,195.5,196.0,196.5,197.0,197.5,198.0,198.5,199.0,199.5,200.0],\"opacity\":0.8,\"y\":[0.01,0.00926455236534429,0.008942079599844536,0.008903805249044758,0.009064986751152741,0.009370121246939624,0.0097831377851458,0.010280896389737644,0.010848880128389388,0.011478341586434388,0.01216441391432744,0.012904861698989387,0.013699256303536623,0.014548432872955349,0.015454134373949576,0.016418779878044916,0.017445315505650354,0.018537120458342552,0.019697949880017537,0.020931902440716767,0.02224340466920285,0.023637206789110306,0.025118386232394464,0.02669235732127219,0.028364884643108407,0.03014210000618664,0.03203052172600445,0.03403707623484497,0.03616912168995008,0.03843447340638602,0.04084143112636035,0.04339880808139228,0.04611596190349271,0.04900282743079438,0.05206995148147489,0.05532852968361153,0.05879044547771028,0.062468310984853004,0.06637551106089785,0.07052624955545046,0.07493559744716898,0.07961954387846829,0.08459505066772152,0.08988010973687628,0.09549380267751474,0.10145636437910363,0.10778924990847509,0.11451520528942831,0.12165834072155951,0.129244207634419,0.13729988088447706,0.14585404426798237,0.15493707889090305,0.16458115598521433,0.17482033891242263,0.18569068475148282,0.1972303471610113,0.20947968696162061,0.22248139136956127,0.23628059280769148,0.2509249894642445,0.266464971055097,0.28295376405470374,0.3004475668221161,0.3190056766297491,0.3386906291793296,0.3595683553471963,0.38170832921612335,0.4051837045495035,0.4300714502875626,0.4564525407090674,0.4844121126635095,0.5140395677696409,0.5454286919092649,0.5786778209860757,0.6138899895081922,0.6511730029060171,0.6906395007337375,0.73240711533839,0.7765986440712987,0.8233419816225894,0.8727700329487494,0.9250207636771073,0.9802372778998739,1.0385676035445948,1.1001644728613682,1.1651851565783178,1.2337916618515183,1.3061502036428425,1.3824304081511856,1.4628049021703635,1.5474491950391231,1.636540742006265,1.7302579056621243,1.8287789288419596,1.9322821484803188,2.04094456470303,2.154939295057068,2.2744341014406717,2.3995910981896595,2.5305642248789195,2.667496580093365,2.810518022834925,2.9597457744070104,3.1152812221497634,3.2772040952645596,3.4455701144275555,3.6204113903637536,3.801730253094356,3.9894953807013382,4.183639085302494,4.3840598596995655,4.590614992828435,4.803111707450102,5.021309272137596,5.244918920542069,5.4735940703031405,5.706928606514422,5.944462123801504,6.185681298637438,6.430006481660391,6.676792854761001,6.925343566518352,7.174897746281082,7.424634733472998,7.673682306480635,7.921130850766671,8.166022108118783,8.40735294786052,8.644101386713784,8.875216984986393,9.099633303370867,9.316282885176529,9.52411760141679,9.7221005679812,9.90921856036288,10.084509673942064,10.247054300915545,10.395992866224534,10.530542402501332,10.650008049282757,10.753775082615014,10.841327223450406,10.912253148299204,10.966242466816556,11.003093474702256,11.022720775607223,11.0251490429807,11.010506161631046,10.97903084867178,10.931058658648363,10.867019861167144,10.787433736923719,10.692902296474998,10.584097268441317,10.461753634801173,10.326660968318325,10.179651555212903,10.021593016215187,9.853378538483328,9.675917635694622,9.490127278035404,9.296924241646776,9.097216902283499,8.891899774873027,8.681847036910463,8.467904583057333,8.250887858091307,8.031579275766862,7.810721462260728,7.589017366194012,7.367128082399434,7.1456713825646805,6.925219262274583,6.70629945475427,6.4893965676093455,6.274950123798536,6.063357811418634,5.854976111927986,5.650121524440597,5.449071057103591,5.25206585325885,5.059312994405973,4.8709858992929504,4.687228343339922,4.508155681380157,4.333856628892548,4.164394874653062,3.9998123072772276,3.840130328073073,3.6853512618420727,3.535461086888695,3.390430696531304,3.250217173948998,3.1147653152305277,2.9840097746998118,2.857875760133224,2.7362803699598577,2.6191340579209457,2.5063415355728034,2.39780246831045,2.2934124978524353,2.1930644341158625,2.096648537895143,2.004053395187453,1.915166600155076,1.8298752453164466,1.7480662195830547,1.6696267499999047,1.5944449880587186,1.522410059422403,1.4534124997831144,1.3873445401122935,1.324100297472525,1.2635758493556515,1.2056694457764612,1.150281767127605,1.0973158693900797,1.0466773176903426,0.9982743000416671,0.952017640698222,0.9078207749880244,0.8655997721317569,0.8252734268437407,0.7867631844954476,0.7499930950861355,0.714889869056261,0.6813827974426623,0.6494037026591233,0.6188868703953119,0.5897690538192832,0.5619894174846409,0.5354894225347662,0.5102128344636991,0.4861056334701389,0.4631159582964669,0.44119401732290436,0.4202920421380769,0.4003642480046093,0.3813667394155913,0.36325744700778667,0.3459960892561826,0.32954409419574715,0.313864536156129,0.29892206610286404,0.28468286960314654,0.2711146145054594,0.2581863720067324,0.24586857669632758,0.23413297414538992,0.22295256582369988,0.21230155352615757,0.20215528767899843,0.19249023026991002,0.1832839103907375,0.17451486660452897,0.16616261384884556,0.15820760243100862,0.15063117607531776,0.14341553110958452,0.1365436771815037,0.1299994072598045,0.12376726583392193,0.11783250900275263,0.112181073975212,0.10679955449465113,0.10167516699476732,0.09679572362289203,0.09214960269516861,0.08772572497776819,0.08351353210989765,0.07950296139887403,0.07568441937582511,0.07204876541940934,0.06858728925372504,0.06529169124979707,0.06215406255481767,0.05916686627659868,0.0563229218330736,0.053615389730189374,0.05103775433462969,0.04858380694699201,0.04624763477410175,0.04402360562405068,0.0419063549909378,0.039890772947259366,0.037971991756867454,0.03614537529018986,0.03440650896261603,0.03275118886186458,0.031175410508577004,0.029675360558548414,0.02824740831346338,0.026888096208108336,0.02559413183488171,0.02436237963412194,0.023189853625247725,0.022073710844741485,0.021011244775313596,0.01999987837866983,0.01903715737095894,0.018120745373925877,0.017248418110157978,0.016418057815449843,0.015627648159391976,0.014875269188162807,0.014159092847309583,0.01347737887138521,0.012828470724397351,0.012210791406459755,0.011622839307214687,0.011063184840626236,0.010530467407714588,0.010023391622783177,0.009540724327297459,0.009081291445342364,0.008643975160303007,0.008227711347725342,0.007831487124546965,0.007454338402234874,0.007095347418524185,0.006753640369390191,0.006428385455517629,0.006118791069973036,0.005824103605896472,0.005543605702768183,0.0052766143983491946,0.005022479490811623,0.004780582041465361,0.0045503329395521225,0.004331171483849739,0.004122563972797786,0.003924002335502257,0.003735002880334239,0.0035551052620414595,0.0033838713429588455,0.0032208840612099957,0.003065746409135286,0.0029180804038068703,0.002777526205793517,0.0026437413032975978,0.0025163997134807843,0.002395191186084751,0.00227982041800204,0.002170006301258774,0.002065481230936149,0.0019659904938809734,0.001871291701384732,0.0017811541187773296,0.0016953581544711168,0.0016136947385870196,0.001535964797358309,0.0014619788180640948,0.001391556435625314,0.0013245260109507712,0.0012607241991673802,0.0011999955229438331,0.0011421919722199806,0.0010871726467865475,0.0010348034423163723,0.000984956753048524,0.0009375111098422286,0.0008923509238500824,0.0008493661959870131,0.0008084521345532267,0.0007695089205060112,0.0007324415319061872,0.0006971595634855328,0.0006635770173992328,0.0006316120695519196,0.0006011868324181806,0.0005722271400159901,0.0005446623736384223,0.0005184253281000984,0.0004934520876171927,0.00046968183485401096,0.0004470566336396682,0.00042552150995815816,0.00040502408658366144,0.0003855143055274895,0.0003669443917377897,0.00034926887650133355,0.0003324445794916478,0.0003164305154774292,0.00030118773912962514,0.00028667916914461235,0.000272869441034313,0.0002597248264225814,0.0002472132255302822,0.00023530418872889334,0.00022396885259217325,0.0002131796558534485,0.00020291025809920498,0.00019313560295534411,0.00018383184555654944,0.00017497629157035982,0.00016654734172513285,0.0001585244401554135,0.00015088802407211183,0.00014361947368322158,0.0001367010649503098]},{\"name\":\"Infected\",\"line\":{\"color\":\"#00CC96\"},\"error_y\":{\"array\":[0.0,0.00020298217579717688,0.00034098946151260486,0.00044423423102532013,0.0005307740527725018,0.0006113430725100287,0.0006923325936013927,0.000777607964127706,0.000869599136618131,0.0009699451759614882,0.0010798703097426613,0.00120040136656508,0.001332492882452405,0.0014770990881668065,0.0016352156767497931,0.001807904646729074,0.0019963098868614974,0.002201667906356947,0.0024253162268708505,0.002668700847943785,0.002933383571961165,0.0032210496190324305,0.003533515871679835,0.0038727396089953776,0.004240828160219186,0.004640049212334838,0.005072842038121633,0.005541829548579626,0.006049831232692061,0.006599877061390595,0.0071952223685155395,0.00783936375187626,0.008536056146310641,0.009289330995844608,0.010103515609530786,0.010983253948970002,0.011933528720083368,0.012959684379108166,0.01406745285634982,0.015262980710040754,0.016552856781773324,0.01794414181589191,0.01944440110003238,0.02106173915650743,0.022804834760421753,0.02468297979580732,0.026706119933372977,0.028884898422658453,0.031230700883676285,0.03375570266407911,0.036472920667156156,0.039396267066422117,0.04254060466301879,0.04592180556468001,0.049556816750482936,0.05346372575646793,0.05766182585002261,0.06217168679112103,0.0670152332437623,0.07221582171723813,0.07779831878865302,0.08378918532494668,0.09021656544241739,0.0971103774112859,0.10450239999292465,0.11242636238154745,0.12091804326323531,0.13001536687514942,0.13975849210409103,0.150189919530223,0.16135456575840168,0.17329985833120243,0.18607583350243975,0.1997352163047796,0.21433348713814282,0.22992894765953548,0.24658276940862012,0.2643591035692358,0.28332502038431484,0.3035504316977625,0.32510818087723037,0.34807407448653094,0.3725267439301045,0.39854744024351507,0.42621995526846007,0.4556305860544463,0.4868678473447591,0.5200214821958293,0.5551824209532809,0.5924428906843744,0.631895755253524,0.6736332548754821,0.7177466204157671,0.7643256893640779,0.8134583399402997,0.8652268772903817,0.9197073569011915,0.9769706036685073,1.037080676992587,1.100090600450144,1.1660418692758945,1.234963902970012,1.3068728054241239,1.3817621377774287,1.4596019262450612,1.5403434063496246,1.6239152890639472,1.7102130876151251,1.799103269197299,1.8904221586250793,1.983972304176825,2.0795047889431877,2.176726445153634,2.275312204940158,2.37489013368974,2.4750323611341916,2.5752720347964937,2.6751011086195335,2.7739540615190603,2.871200199217426,2.9661776496111036,3.05819419184043,3.146498863501353,3.230321725057353,3.30887273950246,3.381340999845311,3.446878764049284,3.5046484008496277,3.553840770548723,3.5936427888093974,3.623291472940051,3.6420739042980848,3.64933444910655,3.6444684179173485,3.626967323530919,3.5964302990817694,3.552545195934246,3.495134885398609,3.4241464114899465,3.339657842880267,3.2418801882206076,3.131174856095386,3.00804739595318,2.8731477161212102,2.7272763485131817,2.571376642367902,2.4065463219217613,2.2340390170739166,2.055275683696695,1.8718829755302677,1.6857448453746389,1.4991078377558107,1.3147860906231,1.136534478721428,0.9696942843575368,0.8223062277067774,0.7064306743701689,0.6376785339513804,0.6284621767706424,0.6771363595690019,0.7684170713321985,0.8848684863047782,1.0136686169337477,1.14674752104229,1.279176035848506,1.407888167778974,1.5309081244880778,1.6469407479667382,1.7551427642671682,1.8549627174224192,1.946073284160367,2.0283133401077906,2.1016484076804653,2.1661441226340656,2.2219485908876053,2.269278197019324,2.3084015230211112,2.339631984834116,2.363316489189519,2.379827991852596,2.3895595305477584,2.3929166989189463,2.390312411880782,2.382163382674048,2.368884696744532,2.350886154477955,2.3285703666182442,2.3023311328035416,2.2725486170876352,2.239589021083936,2.20380422890717,2.165528759163355,2.125079609012994,2.0827571656680113,2.0388449345139747,1.9936070985317338,1.9472907675620474,1.9001259227830365,1.8523247571819723,1.8040825144791737,1.755579350438249,1.706980410433433,1.6584349040614308,1.610078769247103,1.5620345417922805,1.514411758569651,1.4673078522826712,1.4208098786422978,1.374994689350607,1.329928613189485,1.2856695897109827,1.2422671196936115,1.199762745668726,1.1581907643882978,1.1175794691481329,1.077951382157472,1.0393230409049763,1.0017064024003508,0.9651090146593634,0.9295341595223905,0.8949814125408975,0.8614473774246256,0.8289259862251723,0.7974082614063525,0.7668830350956864,0.7373374019556134,0.7087564571265432,0.6811238065290985,0.654421855936477,0.6286321625440514,0.6037352437219001,0.5797107574244119,0.5565380487364563,0.5341958276200142,0.51266248294435,0.49191614792238325,0.47193498798483213,0.45269716057672926,0.43418071332830077,0.4163638772764089,0.39922512394872134,0.38274303808268545,0.36689647711375645,0.3516646305210305,0.3370271273863075,0.3229639324193429,0.3094553276755532,0.29648210831552074,0.28402548127862176,0.2720670691870163,0.2605889411419956,0.2495736629370737,0.23900432354846912,0.22886445162676078,0.21913800383429657,0.20980947280325074,0.2008638037101401,0.19228638723295086,0.1840630698913237,0.17618016966392194,0.16862448862253326,0.1613832564391501,0.15444410087957078,0.147795099786912,0.14142476211559948,0.13532196837640695,0.1294760008947364,0.12387652603149477,0.1185136090841531,0.11337768613065757,0.10845952619075938,0.10375023593842607,0.09924128482957312,0.09492444740923833,0.09079180992080217,0.08683575928501434,0.08304898287147874,0.07942446584294986,0.07595546610359392,0.0726354926929334,0.06945831052380887,0.06641794914338361,0.06350866191783926,0.06072493232740406,0.058061463451304696,0.05551317589289253,0.053075204162389686,0.05074288076167739,0.0485117205170904,0.04637741822164665,0.04433585490286489,0.04238307951210385,0.04051529715172495,0.03872887164440875,0.037020317357883255,0.03538629838970964,0.0338236208832997,0.03232922182180758,0.03090016158782968,0.029533624145834988,0.028226918014335155,0.026977460885392643,0.025782777265064526,0.024640496627848608,0.023548349351431963,0.022504164992307965,0.02150586688095924,0.020551465261039407,0.019639052295805485,0.018766800826910682,0.017932964802524813,0.017135873284012233,0.016373922919063744,0.015645580216549795,0.014949377210698006,0.01428391062550984,0.013647839070652453,0.013039878971994942,0.012458800757186994,0.011903426495497737,0.011372629199203097,0.010865332331115207,0.010380505891588652,0.009917162166386247,0.009474356876416965,0.009051186573510448,0.008646788207780302,0.008260337226811793,0.007891045017749478,0.007538156584921438,0.007200948952145847,0.006878730337339434,0.006570839667510004,0.006276645484760996,0.005995543023678781,0.005726953280524204,0.005470322610357909,0.005225121797732624,0.004990845816977509,0.004767012357447975,0.004553160129681154,0.004348847526908181,0.0041536517980348305,0.003967168594153899,0.0037890115809343355,0.0036188117638855212,0.0034562162525575775,0.003300886918376798,0.003152500701344664,0.0030107483062728913,0.0028753347352454234,0.002745978908096379,0.0026224124489877595,0.0025043785215105585,0.002391631085827684,0.0022839345855138805,0.0021810638497497554,0.002082803918425972,0.0019889495635438885,0.0018993044900840546,0.0018136805611584747,0.0017318980944237127,0.0016537849331707277,0.0015791762418914414,0.001507915711061016,0.0014398549582112711,0.0013748523134144452,0.001312771843415221,0.0012534829278673817,0.0011968603195594923,0.00114278439819443,0.0010911412642486045,0.0010418224157222706,0.0009947240062327203,0.0009497460979436141,0.000906792940194183,0.0008657736932523906,0.0008265991898041863,0.0007891849564690232,0.0007534530999323994,0.0007193309594170865,0.0006867490269552537,0.0006556395250936931,0.0006259361056890527,0.0005975744789120369,0.0005704933985388099,0.000544635318023455,0.0005199461917901141,0.0004963743277844419,0.0004738689006343711,0.00045237970987609577,0.00043186003946538745,0.00041226673754765023,0.00039355836567391803,0.0003756952765639685,0.0003586395710709681,0.0003423550210177548,0.0003268069795352209,0.00031196231177084394,0.00029778935904230415,0.000284257898467057],\"thickness\":2,\"color\":\"#00CC96\",\"width\":0,\"type\":\"data\",\"opacity\":0.1},\"mode\":\"lines\",\"x\":[0.0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.5,9.0,9.5,10.0,10.5,11.0,11.5,12.0,12.5,13.0,13.5,14.0,14.5,15.0,15.5,16.0,16.5,17.0,17.5,18.0,18.5,19.0,19.5,20.0,20.5,21.0,21.5,22.0,22.5,23.0,23.5,24.0,24.5,25.0,25.5,26.0,26.5,27.0,27.5,28.0,28.5,29.0,29.5,30.0,30.5,31.0,31.5,32.0,32.5,33.0,33.5,34.0,34.5,35.0,35.5,36.0,36.5,37.0,37.5,38.0,38.5,39.0,39.5,40.0,40.5,41.0,41.5,42.0,42.5,43.0,43.5,44.0,44.5,45.0,45.5,46.0,46.5,47.0,47.5,48.0,48.5,49.0,49.5,50.0,50.5,51.0,51.5,52.0,52.5,53.0,53.5,54.0,54.5,55.0,55.5,56.0,56.5,57.0,57.5,58.0,58.5,59.0,59.5,60.0,60.5,61.0,61.5,62.0,62.5,63.0,63.5,64.0,64.5,65.0,65.5,66.0,66.5,67.0,67.5,68.0,68.5,69.0,69.5,70.0,70.5,71.0,71.5,72.0,72.5,73.0,73.5,74.0,74.5,75.0,75.5,76.0,76.5,77.0,77.5,78.0,78.5,79.0,79.5,80.0,80.5,81.0,81.5,82.0,82.5,83.0,83.5,84.0,84.5,85.0,85.5,86.0,86.5,87.0,87.5,88.0,88.5,89.0,89.5,90.0,90.5,91.0,91.5,92.0,92.5,93.0,93.5,94.0,94.5,95.0,95.5,96.0,96.5,97.0,97.5,98.0,98.5,99.0,99.5,100.0,100.5,101.0,101.5,102.0,102.5,103.0,103.5,104.0,104.5,105.0,105.5,106.0,106.5,107.0,107.5,108.0,108.5,109.0,109.5,110.0,110.5,111.0,111.5,112.0,112.5,113.0,113.5,114.0,114.5,115.0,115.5,116.0,116.5,117.0,117.5,118.0,118.5,119.0,119.5,120.0,120.5,121.0,121.5,122.0,122.5,123.0,123.5,124.0,124.5,125.0,125.5,126.0,126.5,127.0,127.5,128.0,128.5,129.0,129.5,130.0,130.5,131.0,131.5,132.0,132.5,133.0,133.5,134.0,134.5,135.0,135.5,136.0,136.5,137.0,137.5,138.0,138.5,139.0,139.5,140.0,140.5,141.0,141.5,142.0,142.5,143.0,143.5,144.0,144.5,145.0,145.5,146.0,146.5,147.0,147.5,148.0,148.5,149.0,149.5,150.0,150.5,151.0,151.5,152.0,152.5,153.0,153.5,154.0,154.5,155.0,155.5,156.0,156.5,157.0,157.5,158.0,158.5,159.0,159.5,160.0,160.5,161.0,161.5,162.0,162.5,163.0,163.5,164.0,164.5,165.0,165.5,166.0,166.5,167.0,167.5,168.0,168.5,169.0,169.5,170.0,170.5,171.0,171.5,172.0,172.5,173.0,173.5,174.0,174.5,175.0,175.5,176.0,176.5,177.0,177.5,178.0,178.5,179.0,179.5,180.0,180.5,181.0,181.5,182.0,182.5,183.0,183.5,184.0,184.5,185.0,185.5,186.0,186.5,187.0,187.5,188.0,188.5,189.0,189.5,190.0,190.5,191.0,191.5,192.0,192.5,193.0,193.5,194.0,194.5,195.0,195.5,196.0,196.5,197.0,197.5,198.0,198.5,199.0,199.5,200.0],\"opacity\":0.8,\"y\":[0.0,0.0008472604522309291,0.0014622201489341755,0.001926475998485438,0.002294343064958091,0.0026020590764093627,0.0028738887169260266,0.0031261722014055224,0.0033700107772758423,0.0036130484203526145,0.003860654304481224,0.004116707980725102,0.0043841211873659365,0.004665185105082663,0.004961801924828268,0.005275639801917394,0.0056082370862881445,0.005961073011228503,0.006335616234817446,0.006733358805342692,0.007155840555122524,0.007604667233638986,0.008081524810998901,0.008588190945005849,0.009126545209104813,0.009698578211935996,0.010306400450311086,0.010952250967600531,0.011638506090500501,0.012367688426771724,0.013142476194678222,0.013965712993300452,0.014840418064009507,0.01576979710448208,0.016757253682874663,0.017806401294372463,0.018921076089034747,0.020105350566888867,0.021363547529656232,0.02270025500651797,0.02412034248014481,0.025628977896949463,0.027231645219566527,0.02893416299695891,0.030742704570011315,0.032663818837895035,0.034704452224706195,0.036871971569536074,0.039174188983918855,0.04161938793720433,0.044216349875961944,0.046974382640105866,0.04990335107765174,0.053013708976062036,0.056316529450434825,0.05982353984218696,0.0635471601720344,0.06750054116530471,0.07169760127129413,0.07615306835061908,0.08088252464258328,0.08590245277512608,0.09123027380270501,0.0968843954772268,0.10288426939279426,0.10925044381874281,0.11600460878020032,0.12316964916981525,0.13076970716091293,0.13883024652640225,0.1473780834303122,0.15644143696486723,0.16605001276605924,0.17623507317244447,0.18702947373778037,0.19846770410920314,0.21058596899580176,0.22342226406904794,0.2370163799990354,0.2514098804614985,0.2666462119523313,0.2827708050216271,0.29983106174665314,0.31787629306827486,0.3369578061527422,0.3571289524519644,0.3784450979980364,0.40096330612808195,0.42474241527704915,0.44984322825003914,0.4763283812315555,0.5042619338610087,0.5337093918404001,0.5647376920999133,0.5974150771350177,0.631810049413183,0.6679912206463295,0.7060277746135963,0.7459890971928672,0.7879434506939755,0.8319579413439044,0.8780984037803194,0.926428965724532,0.9770094492703022,1.029894986216382,1.0851373129936241,1.1427836100859372,1.202873248600448,1.2654388183905585,1.3305054568852261,1.3980894754854756,1.4681931200846825,1.540805978671541,1.6159077512018067,1.6934634415856735,1.7734200320752975,1.8557102061968662,1.9402507988743571,2.0269369057760183,2.1156384215408734,2.206208275269259,2.2984810557126396,2.39226322296059,2.4873425382175163,2.583486588362954,2.6804398844513284,2.777916278904026,2.8756122487558806,2.9732104623045537,3.0703666701189394,3.1667251938806533,3.2619185158000956,3.355566340136753,3.447269601137157,3.5366289728080575,3.62324766189249,3.706721103328778,3.78665718091213,3.8626744786865888,3.9344008329693163,4.001474433907286,4.063562242146249,4.12035380085156,4.171563698669926,4.21694212807583,4.256273634927186,4.289373120063492,4.316093143334444,4.33633054270086,4.3500165758269,4.357126420897269,4.357675471771464,4.351717570358185,4.339341999426303,4.3206767471507455,4.295883808691805,4.265155969962944,4.228716685592147,4.18681485764514,4.139722120000768,4.087729799501761,4.031145908406615,3.9702912839617093,3.905497159325831,3.8371003934625483,3.765440630426816,3.690860890123552,3.6137017234827935,3.5342968503894503,3.4529756909207476,3.3700579194312055,3.285852141640851,3.200654543694701,3.1147501974889313,3.0284096381786405,2.9418867065902834,2.855421713611144,2.769237766110567,2.6835414396603903,2.598523050898219,2.514358654765621,2.431207507572406,2.349212570939096,2.268503468038833,2.189193953139467,2.111383778493935,2.035159768004463,1.9605972241508138,1.8877585956629066,1.816695199028583,1.7474487015196252,1.6800502956422876,1.6145221181754332,1.5508785371469613,1.489126858203815,1.4292667493757207,1.3712919806552248,1.3151908791826827,1.260946373831359,1.2085368109606653,1.1579369802050563,1.1091183860995724,1.0620490311100028,1.0166946623135686,0.9730188060243974,0.9309829940290563,0.890547186865399,0.8516704260800266,0.8143109155931354,0.778425897262867,0.7439724052321262,0.7109072104231171,0.6791869478085206,0.6487683279714879,0.6196084918086778,0.5916650351918736,0.5648958782230653,0.539259661131713,0.5147157326098346,0.4912241253907573,0.4687456741708599,0.44724216872379974,0.42667638049042933,0.40701192478810677,0.38821341156401046,0.37024651675315234,0.35307783732512943,0.33667498517718836,0.32100660650354174,0.3060424236331934,0.2917531249735483,0.2781103604263942,0.26508684158244655,0.25265619869784867,0.24079301963031374,0.22947281959461124,0.2186720714424374,0.2083681512728734,0.1985392689999688,0.18916450494056278,0.1802237856751623,0.17169781240886173,0.16356806804102608,0.15581679678693772,0.14842699841863524,0.1413823708909834,0.1346672756119611,0.12826675759744613,0.12216649260671573,0.1163527618023649,0.11081243491589438,0.10553295786774211,0.10050233634285616,0.09570909421667499,0.09114224999764688,0.08679132268663897,0.08264629310963303,0.07869758427201202,0.07493604704668534,0.07135294709419285,0.06793995219847737,0.06468910467735431,0.061592800580746655,0.05864378802570097,0.05583515015313348,0.05316027946423332,0.050612873319876135,0.04818691879598924,0.04587668538285411,0.04367670890779471,0.04158177383689791,0.039586905236146504,0.037687365610524576,0.035878634265249336,0.03415640099126952,0.03251655640669862,0.03095518473958221,0.029468556557966843,0.028053117203218937,0.026705476243682722,0.025422402675961665,0.024200821259272635,0.023037798873323797,0.02193054089364572,0.020876384375352594,0.019872793074089623,0.018917352445237443,0.018007762424984815,0.017141830458699953,0.01631746735529895,0.015532685039340096,0.014785589622278347,0.014074375923873032,0.01339732503950535,0.01275279985450075,0.012139242156669805,0.011555168591032429,0.010999166074622127,0.010469888045785965,0.009966052276838262,0.009486438953725789,0.009029885764385348,0.008595285553612714,0.008181584197054908,0.007787778090676503,0.007412912187104679,0.007056077450215181,0.006716408122258304,0.006393079402834143,0.006085305880809637,0.005792340340174037,0.005513471467331674,0.005248021334397832,0.0049953447407263575,0.004754827384051424,0.004525884711519921,0.004307960486538678,0.004100525183037532,0.003903074467492249,0.0037151279759920107,0.003536228422253014,0.003365940782758012,0.003203850925129388,0.0030495642072718527,0.0029027050646923025,0.0027629159582107507,0.0026298567236885868,0.0025032037124516873,0.002382648849805745,0.0022678987573641514,0.002158674019768488,0.002054708603842398,0.001955749358272377,0.0018615554345698224,0.0017718974224590102,0.0016865568335329066,0.0016053257040672439,0.0015280061059473771,0.001454409793606732,0.001384357672763938,0.001317679249005023,0.0012542121461227133,0.0011938017187063908,0.0011363007372359763,0.0010815690968701737,0.0010294734932347132,0.0009798870198090652,0.0009326887555849471,0.0008877636301978368,0.0008450020443198021,0.0008042997745638544,0.0007655577529814213,0.0007286817283087988,0.000693581941979139,0.0006601728751943503,0.0006283730681406252,0.0005981049788548791,0.0005692948373069724,0.0005418724599548282,0.0005157710213539242,0.0004909268335469755,0.0004672792918469748,0.0004447706494260675,0.0004233458943692454,0.0004029528416180049,0.0003835419653510075,0.00036506614488759123,0.00034748044910580116,0.00033074200524915655,0.00031480994215090296,0.0002996453653315051,0.00028521131212337625,0.0002714726489483043,0.00025839591011520653,0.00024594913802220865,0.0002341018746746125,0.00022282522387209654,0.00021209134221298134,0.0002018738281453235,0.0001921479536858314,0.00018289043495334388,0.00017407909929291119,0.00016569264785450778,0.00015771058008190128,0.00015011325294961864,0.0001428819929592112,0.0001359991628700027,0.0001294481078945694,0.00012321296763510346,0.00011727844037341862,0.00011162972545365537,0.00010625290911544346,0.00010113495860435991,9.626343883164855e-5,9.162650465747932e-5,8.721287765546654e-5,8.301181892596047e-5,7.901310095487461e-5,7.520698312482683e-5,7.158419269878409e-5,6.813590588368963e-5]},{\"name\":\"Recovered\",\"line\":{\"color\":\"#AB63FA\"},\"error_y\":{\"array\":[0.0,2.9018828456440808e-5,0.0001017797985271628,0.00020406329294839196,0.00032820964034639623,0.0004705405176964225,0.0006297929055720995,0.0008061763810567064,0.0010008125706222769,0.0012154078642571105,0.0014520677444467955,0.0017131965637516742,0.0020014485044063486,0.002319708967229718,0.0026710939571178175,0.0030589601112388865,0.0034869211191834487,0.003958868148027231,0.00447899299077778,0.005051813318416245,0.005682199786831897,0.00637540496022555,0.007137094057979964,0.007973377850415147,0.008890847625260108,0.009896612633811275,0.010998340055719605,0.012204297786694431,0.013523400240192896,0.014965257372000197,0.016540227180685402,0.018259471931074987,0.020135018325855524,0.02217982194770762,0.024407836258821498,0.02683408639015909,0.029474748119762355,0.03234723257321304,0.03547027638430917,0.038864038066465725,0.0425502015591936,0.0465520868695506,0.05089476774297455,0.05560519724484591,0.06071234267557106,0.066247328743374,0.07224359054468311,0.07873703629750625,0.08576622145487472,0.09337253424141807,0.10160039233549265,0.11049745258193014,0.12011483456174359,0.13050735811031847,0.14173379397576782,0.1538571308096217,0.1669448602742899,0.18106927822425353,0.19630780131928294,0.2127433041378937,0.2304644762951215,0.24956619788023365,0.27014993582606994,0.2923241597788513,0.3162047830041212,0.3419156257024475,0.3695888973424418,0.39936570291046486,0.431396575535394,0.46584202123921387,0.5028731091643507,0.5426720659745556,0.585432884659465,0.6313619634680055,0.6806787700907085,0.7336165158414035,0.7904228441968997,0.851360486873536,0.9167080261678281,0.9867606555565339,1.0618308137857133,1.1422488325695854,1.2283636586328028,1.3205435695009555,1.4191767439803131,1.524671738311697,1.6374580321508527,1.7579868909825689,1.886731509260766,2.024186913541164,2.170870169265332,2.3273207537345977,2.4941001463387455,2.6717911652540773,2.8609971401107814,3.062342586033077,3.2764717147773825,3.5040455013333536,3.745739876901899,4.002245117280393,4.274262351408644,4.562499572292237,4.867667509727843,5.190479662415316,5.531646674708564,5.891866468648018,6.271818900076273,6.672164009406531,7.093530302583163,7.536505804260098,8.001629868392799,8.489393075035736,9.000221285622237,9.53445594106074,10.092351168452252,10.674067019742951,11.279646363647068,11.909004352840894,12.561926606950834,13.23806322963268,13.936897130866832,14.657734611097997,15.399716281126022,16.161786013826184,16.942688776972194,17.74096995122542,18.554987917480457,19.38288844532945,20.222600689452484,21.071870061025464,21.92823729544161,22.789056938079668,23.651513888796398,24.51265288325537,25.369375493688878,26.218462718631407,27.05662069149178,27.880483030310042,28.68665372658224,29.471738861841366,30.232381700757387,30.965285273472652,31.66725200337658,32.33521682136674,32.96627383990788,33.55771223462564,34.107037881506265,34.61200102357808,35.070619742839746,35.48119326607596,35.84231936162367,36.15290670082773,36.41217667539106,36.61965986827492,36.77520681234658,36.878975029697195,36.931417110309525,36.93327488620615,36.88556247896378,36.78953794386971,36.64668890803179,36.45871916762253,36.2275104709447,35.95510921188183,35.643700852504615,35.29558519237076,34.91314089913139,34.49881294126114,34.05509710168252,33.584502027370306,33.089542170613896,32.572716415561395,32.03648918847309,31.48327549942678,30.915428988816444,30.33523137610456,29.74488041824688,29.1464839555162,28.54205170110245,27.93349059902256,27.32260206594132,26.711078028383046,26.10049975861389,25.49233881245403,24.8879562180036,24.288603971923155,23.695428139888826,23.10947239997608,22.531678813607957,21.962892730002732,21.403867637036647,20.855267541286267,20.3176719193945,19.79158144045311,19.27742249857723,18.77554967822715,18.286252201123173,17.80975811624181,17.346237769421524,16.89580840250396,16.45853941626517,16.034455847614016,15.62354077322891,15.225740662303958,14.840968059503018,14.469104559051976,14.11000402941488,13.76349637062448,13.42938974230227,13.107472220818636,12.797515438688297,12.499276174317247,12.212498283587946,11.936914714082517,11.672249848714829,11.418220868909398,11.174538652013064,10.940909962559786,10.71703849498643,10.50262582379912,10.297372639945433,10.100980057232292,9.91315048199227,9.733587983430784,9.561999411676265,9.398095230415842,9.24158971177172,9.092201728212626,8.94965531200629,8.813680214309574,8.68401198693873,8.560392332886194,8.44256970730986,8.330299184573931,8.223342805946466,8.121469696601052,8.024456321623557,7.932086454706878,7.844151078853702,7.760448568507347,7.68078466103305,7.604972269454796,7.532831497333792,7.464189558540155,7.398880713999109,7.336746038775764,7.277633245467189,7.221396654371959,7.167896934496618,7.117000918641573,7.068581433599723,7.022517139688849,6.9786923485784165,6.936996763493272,6.897325272861685,6.859577828262782,6.823659188343352,6.789478721229458,6.7569502226206595,6.7259917410642185,6.696525403947525,6.668477202096127,6.641776799501714,6.616357403337895,6.592155590514072,6.569111113939568,6.5471667751230065,6.52626827072912,6.506364065522829,6.487405242812123,6.4693453553632,6.452140310110233,6.435748270949915,6.420129513123863,6.405246325240863,6.391062904947908,6.377545266392946,6.364661150103615,6.352379923553066,6.340672488858563,6.32951121130035,6.318869853874978,6.308723484643658,6.299048417613993,6.289822146527489,6.281023287195464,6.272631521452662,6.2646275366911235,6.256992968720762,6.249710355505679,6.242763098411114,6.236135410706463,6.229812272688593,6.22377939745953,6.218023192450003,6.212530726873143,6.207289696742812,6.202288389697679,6.197515653827603,6.192960872478906,6.188613940740038,6.184465233565453,6.180505583103764,6.176726257337387,6.173118938746777,6.169675705076946,6.1663890088849875,6.1632516573207115,6.160256793989582,6.157397883802335,6.154668699444774,6.152063304800577,6.149576038389721,6.147201502982363,6.144934552169682,6.142770279449673,6.140704006549893,6.1387312715990605,6.136847818045484,6.135049584918384,6.133332698427445,6.131693463997547,6.130128356734744,6.128634012240867,6.127207220678985,6.125844919181359,6.124544185779887,6.123302232632959,6.122116399178009,6.120984145763531,6.119903047996593,6.118870791753974,6.117885168546458,6.1169440706971745,6.116045485755377,6.115187492328043,6.114368256177934,6.113586026434865,6.112839132267147,6.112125978890746,6.111445043619454,6.110794872319455,6.1101740763334735,6.109581329743772,6.1090153667493725,6.108474978940964,6.107959012366873,6.107466364771088,6.106995983776872,6.106546864172934,6.106118046593813,6.105708615576866,6.105317697137604,6.104944456475808,6.104588096058548,6.10424785406647,6.103923003036621,6.103612848488658,6.103316727381482,6.10303400641405,6.102764080462256,6.102506371824955,6.102260328432933,6.102025422882629,6.10180115246948,6.101587037878545,6.101382621463661,6.10118746576157,6.101001152469991,6.100823281825693,6.100653472150469,6.100491359289325,6.100336595746179,6.100188849527913,6.10004780303769,6.0999131528432065,6.099784609669627,6.099661895184806,6.099544744292603,6.099432906311589,6.099326143369013,6.099224228201882,6.099126942572501,6.099034076691455,6.0989454294672525,6.0988608090686025,6.098780033192674,6.098702928580439,6.0986293297085865,6.09855907721618,6.098492017493515,6.098428005056957,6.098366902258252,6.09830857743529,6.098252904818818,6.098199764300144,6.098149041175242,6.098100625886158,6.098054413790148,6.098010304967933,6.0979682040342595],\"thickness\":2,\"color\":\"#AB63FA\",\"width\":0,\"type\":\"data\",\"opacity\":0.1},\"mode\":\"lines\",\"x\":[0.0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.5,9.0,9.5,10.0,10.5,11.0,11.5,12.0,12.5,13.0,13.5,14.0,14.5,15.0,15.5,16.0,16.5,17.0,17.5,18.0,18.5,19.0,19.5,20.0,20.5,21.0,21.5,22.0,22.5,23.0,23.5,24.0,24.5,25.0,25.5,26.0,26.5,27.0,27.5,28.0,28.5,29.0,29.5,30.0,30.5,31.0,31.5,32.0,32.5,33.0,33.5,34.0,34.5,35.0,35.5,36.0,36.5,37.0,37.5,38.0,38.5,39.0,39.5,40.0,40.5,41.0,41.5,42.0,42.5,43.0,43.5,44.0,44.5,45.0,45.5,46.0,46.5,47.0,47.5,48.0,48.5,49.0,49.5,50.0,50.5,51.0,51.5,52.0,52.5,53.0,53.5,54.0,54.5,55.0,55.5,56.0,56.5,57.0,57.5,58.0,58.5,59.0,59.5,60.0,60.5,61.0,61.5,62.0,62.5,63.0,63.5,64.0,64.5,65.0,65.5,66.0,66.5,67.0,67.5,68.0,68.5,69.0,69.5,70.0,70.5,71.0,71.5,72.0,72.5,73.0,73.5,74.0,74.5,75.0,75.5,76.0,76.5,77.0,77.5,78.0,78.5,79.0,79.5,80.0,80.5,81.0,81.5,82.0,82.5,83.0,83.5,84.0,84.5,85.0,85.5,86.0,86.5,87.0,87.5,88.0,88.5,89.0,89.5,90.0,90.5,91.0,91.5,92.0,92.5,93.0,93.5,94.0,94.5,95.0,95.5,96.0,96.5,97.0,97.5,98.0,98.5,99.0,99.5,100.0,100.5,101.0,101.5,102.0,102.5,103.0,103.5,104.0,104.5,105.0,105.5,106.0,106.5,107.0,107.5,108.0,108.5,109.0,109.5,110.0,110.5,111.0,111.5,112.0,112.5,113.0,113.5,114.0,114.5,115.0,115.5,116.0,116.5,117.0,117.5,118.0,118.5,119.0,119.5,120.0,120.5,121.0,121.5,122.0,122.5,123.0,123.5,124.0,124.5,125.0,125.5,126.0,126.5,127.0,127.5,128.0,128.5,129.0,129.5,130.0,130.5,131.0,131.5,132.0,132.5,133.0,133.5,134.0,134.5,135.0,135.5,136.0,136.5,137.0,137.5,138.0,138.5,139.0,139.5,140.0,140.5,141.0,141.5,142.0,142.5,143.0,143.5,144.0,144.5,145.0,145.5,146.0,146.5,147.0,147.5,148.0,148.5,149.0,149.5,150.0,150.5,151.0,151.5,152.0,152.5,153.0,153.5,154.0,154.5,155.0,155.5,156.0,156.5,157.0,157.5,158.0,158.5,159.0,159.5,160.0,160.5,161.0,161.5,162.0,162.5,163.0,163.5,164.0,164.5,165.0,165.5,166.0,166.5,167.0,167.5,168.0,168.5,169.0,169.5,170.0,170.5,171.0,171.5,172.0,172.5,173.0,173.5,174.0,174.5,175.0,175.5,176.0,176.5,177.0,177.5,178.0,178.5,179.0,179.5,180.0,180.5,181.0,181.5,182.0,182.5,183.0,183.5,184.0,184.5,185.0,185.5,186.0,186.5,187.0,187.5,188.0,188.5,189.0,189.5,190.0,190.5,191.0,191.5,192.0,192.5,193.0,193.5,194.0,194.5,195.0,195.5,196.0,196.5,197.0,197.5,198.0,198.5,199.0,199.5,200.0],\"opacity\":0.8,\"y\":[0.0,0.00011183543478026277,0.0004043838957486943,0.0008304611316146511,0.001359638712169493,0.0019726526722486223,0.0026576992926115317,0.00340798244601379,0.004220091061610943,0.005092927280922035,0.006027000011557529,0.007023961047629611,0.008086302315801965,0.00921716025664929,0.010420191576948274,0.011699496656490503,0.013059574918828507,0.014505301777853257,0.016041920298007113,0.017675043036677655,0.019410661103357905,0.02125515850605665,0.02321533039497983,0.025298404694459906,0.027512066251514904,0.029864483528031924,0.03236433743683454,0.03502085239674066,0.037843829566433985,0.0408436822788461,0.044031473773289864,0.047418957307505144,0.051018618774798845,0.05484372195420955,0.05890835653896042,0.06322748909988005,0.06781701715969357,0.07269382640092412,0.07787585165593382,0.08338214145911751,0.08923292620573689,0.09544969047964207,0.10205524994960581,0.10907383281629722,0.11653116572577259,0.12445456509063027,0.1328730337429472,0.14181736340545442,0.15132024268365382,0.16141637137700895,0.17214258188530907,0.18353796731697186,0.19564401643964838,0.20850475640268223,0.2221669053745661,0.23668003181833291,0.25209672142116296,0.26847275452207625,0.28586729480897216,0.30434308627096374,0.3239666596833263,0.3448085504071658,0.36694353339434205,0.39045086471672874,0.4154145308392049,0.44192351401123753,0.4700720761829679,0.4999600521115674,0.5316931511144093,0.565383272195094,0.6011488540833363,0.639115227843298,0.6794149638213595,0.7221882410375126,0.7675832509926699,0.8157566122056511,0.866873772902254,0.9211094289020233,0.9786479956927819,1.0396841056165012,1.1044230324427475,1.17308112657206,1.2458863228303418,1.3230786793408016,1.4049108214377546,1.4916484037445668,1.58357060871497,1.6809708037280486,1.7841569370055477,1.893451837121183,2.009193673691518,2.1317365472722263,2.2614507623860973,2.3987230647325997,2.543956878174189,2.697573016581146,2.8600097604971055,3.031722447857421,3.213183453881472,3.40488262576537,3.607326766636021,3.8210390088635746,4.0465582043296475,4.2844394266744255,4.535252913900019,4.799581726587752,5.078020668698003,5.371176245184688,5.67966366510044,6.004104641659867,6.345125280511732,6.703356062509666,7.079427404190483,7.473964008495643,7.887583646430661,8.320894708218646,8.774489030959142,9.248937827425816,9.744789978690896,10.262568737173037,10.802760815530611,11.365811434194775,11.952124710290587,12.562051795339894,13.195886183538219,13.853859913393023,14.536143254930309,15.242831279214975,15.973937089096385,16.729396463022063,17.509054547898792,18.312663730041425,19.13988246463844,19.990278576428988,20.863317274962945,21.75836050017825,22.674676034750647,23.6114273754048,24.567679263167445,25.542403986073715,26.53448712479698,27.542722326934292,28.56582363119362,29.602432617593067,30.651120679635667,31.710399732347156,32.778735315486195,33.85455203176503,34.93623943742031,36.02216940876695,37.11069968821884,38.200186353688906,39.28899442814481,40.375508851690974,41.45814022460041,42.535335521459785,43.605586921805205,44.6674375488973,45.719490006091256,46.76041221496237,47.7889425939217,48.80389434209683,49.80415952164293,50.788711284924524,51.756607091563225,52.70698985572329,53.63908582546586,54.55220679280658,55.44575072349141,56.319196721514864,57.17210572894326,58.00411779606893,58.81494918978832,59.60438725191117,60.372288830430776,61.11857769256992,61.84323778983254,62.54631187943461,63.22789683373025,63.88813936872183,64.52723051603634,65.14540383102712,65.74293136643284,66.32011787957079,66.87729956649412,67.41483951297772,67.93312396238451,68.4325585065889,68.91356667134866,69.37658624850546,69.8220660064026,70.25046443241992,70.6622468564506,71.05788283993145,71.43784419290967,71.8026041825545,72.15263501097112,72.48840646686826,72.810385034325,73.11903249667401,73.4148044729258,73.69814966820596,73.96950961547677,74.22931730735499,74.47799689308484,74.71596328837707,74.94362168883133,75.16136695051263,75.36958348918513,75.56864539417225,75.75891586170587,75.94074732802416,76.11448148353685,76.2804492456878,76.43897063668197,76.59035495289629,76.73490107950087,76.87289738563716,77.00462196686587,77.13034290740713,77.25031843274952,77.36479703828115,77.47401772608416,77.57821037986639,77.6775959026094,77.77238641958077,77.86278565876066,77.94898913198378,78.0311843746783,78.10955116341195,78.18426185503161,78.2554816339351,78.32336866759692,78.38807445801955,78.4497440369517,78.50851621256065,78.56452375989934,78.61789367540047,78.66874743764647,78.71720117401514,78.76336587138685,78.80734761996035,78.84924778563732,78.88916319899212,78.92718632603048,78.96340547579287,78.99790498330425,79.03076534122799,79.06206338647517,79.09187245847443,79.12026254503802,79.1473004193093,79.1730497749971,79.19757137757762,79.22092319577492,79.24316050400239,79.26433601731028,79.28450000622722,79.30370040301074,79.32198290285599,79.33939106088455,79.35596639780272,79.37174849633273,79.38677507829217,79.4010820911276,79.41470379842048,79.42767284974434,79.44002035642686,79.4517759579691,79.46296789305126,79.47362306929084,79.48376712248712,79.4934244694287,79.50261837294508,79.51137099286821,79.51970343768424,79.52763581215528,79.53518726307117,79.54237602674324,79.54921947390085,79.55573414813844,79.56193580182261,79.5678394387654,79.57345934711213,79.57880913348944,79.58390175429608,79.58874954574142,79.59336425451579,79.59775706709812,79.60193863561,79.6059191010381,79.60970811934261,79.61331488540118,79.61674815350534,79.62001625869136,79.62312713591008,79.62608833936554,79.6289070615461,79.6315901508402,79.6341441271646,79.6365751967146,79.63888926857712,79.64109196861328,79.64318865259189,79.64518441910123,79.64708412149058,79.64889237980405,79.6506135924025,79.65225194679674,79.65381142942985,79.65529583474354,79.65670877477257,79.6580536885577,79.65933384966391,79.66055237433808,79.66171222878403,79.66281623637131,79.66386708469938,79.66486733231459,79.6658194149206,79.66672565106457,79.66758824752222,79.66840930492049,79.66919082316917,79.66993470586662,79.67064276504209,79.67131672537849,79.67195822843223,79.67256883675311,79.67315003779083,79.67370324752908,79.67422981384755,79.67473101967857,79.6752080860977,79.67566217552634,79.67609439452568,79.67650579637746,79.6768973836334,79.67727011044843,79.67762488496379,79.6779625716139,79.6782839932861,79.67858993331768,79.67888113735192,79.67915831509778,79.67942214204393,79.67967326116862,79.67991228459155,79.68013979493202,79.68035634681037,79.68056246805624,79.68075866096645,79.68094540360951,79.68112315106882,79.68129233657963,79.68145337256186,79.68160665157708,79.68175254724927,79.6818914151798,79.68202359386154,79.68214940555175,79.68226915697355,79.68238314012763,79.68249163298924,79.68259489999767,79.68269319273422,79.68278675064623,79.68287580171433,79.68296056302619,79.68304124126581,79.68311803315528,79.68319112589265,79.68326069761869,79.68332691791379,79.68338994827636,79.68344994245889,79.6835070467292,79.68356140059156,79.6836131367468,79.68366238116965,79.68370925355642,79.6837538678463,79.68379633265172,79.68383675154254,79.68387522320785,79.68391184156351,79.68394669588785,79.68397987104821,79.68401144783037,79.68404150329938,79.6840701110043,79.68409734080674,79.68412325902784,79.68414792881899,79.68417141029714,79.6841937606866,79.68421503445822,79.68423528346395,79.68425455706277,79.6842729022371,79.6842903637043]}],\"layout\":{\"showlegend\":true,\"xaxis\":{\"autorange\":true,\"title\":\"Time (Days)\",\"type\":\"linear\"},\"annotations\":[],\"title\":\"Covid-19 SEIR Model with Error Bars\",\"yaxis\":{\"autorange\":false,\"range\":[0,100],\"title\":\"%\",\"type\":\"linear\"},\"shapes\":[],\"legend\":{}}},\"1.25\":{\"config\":{\"responsive\":true},\"data\":[{\"name\":\"Susceptible\",\"line\":{\"color\":\"#636EFA\"},\"error_y\":{\"array\":[0.0,6.893522097099277e-5,0.0002456741910281244,0.0005028127161605866,0.0008286185145405682,0.00122061850393014,0.0016819170933601443,0.002219136111847456,0.002841308505386648,0.003559327937042022,0.004385720393565584,0.005334602537309167,0.0064217499825699855,0.007664732959374145,0.009083096625112747,0.010698574614130915,0.012535330875218567,0.014620228457555683,0.01698312603980941,0.01965720412989701,0.022679323708603726,0.026090420362515684,0.02993593777668532,0.03426630420378309,0.03913745647428158,0.04461141582636013,0.05075692071397203,0.057650122050480236,0.06537534614648888,0.07402593259249197,0.08370515154416909,0.09452720972092823,0.10661835266904283,0.12011806809712317,0.13518040423438818,0.15197540693189837,0.17069068243554525,0.19153311135092577,0.2147307011187916,0.24053460294888224,0.2692213070856389,0.3010949963389311,0.33649009885332004,0.37577406805237473,0.41935031960235725,0.4676614202900226,0.5211925082248086,0.5804748507266727,0.6460896813088342,0.7186723276219659,0.79891637126784,0.8875781296528906,0.9854813275157803,1.0935216527169762,1.212671517029976,1.343985137967758,1.4886030185393242,1.6477565995806436,1.822772758348995,2.0150773417641767,2.226198058027884,2.457767676578942,2.7115248257678024,2.9893137916476875,3.2930832597372515,3.6248820124827095,3.9868511219007856,4.381216055540831,4.81027311917429,5.276370875287957,5.781889337731595,6.329211767458698,6.920688371853119,7.558597568796935,8.245098798880072,8.982173722693714,9.771564885788973,10.61470164068924,11.512619789415204,12.46587418469622,13.474445247528458,14.537639713433052,15.653991856170348,16.82115382072652,18.035811506702657,19.293602772638685,20.589023150824854,21.91538611161717,23.264798755932276,24.628148222726,25.99514592330287,27.35445768633052,28.693780855191363,30.000022081030576,31.25956404830621,32.45848355821838,33.58287428195973,34.61922535226173,35.55472982749784,36.3776266097903,37.077581923458055,37.64594964398863,38.07605928721179,38.36342743637462,38.505866261031926,38.50353739225649,38.35892652478057,38.076725893365996,37.66365985677482,37.12822923894503,36.48043425974657,35.73144074292035,34.89324628448631,33.97834821556301,32.999408438489205,31.968958241822616,30.899153764865527,29.801538901193204,28.686889388658894,27.565079621375176,26.44499050988153,25.334474062060973,24.24034466238124,23.168392910456,22.1234357373181,21.109373271186993,20.129258674331066,19.18538214080525,18.279354987864092,17.412190246753973,16.584388278350833,15.796010603549822,15.046753827832667,14.336014162595948,13.662945746005267,13.026513585373472,12.425537638348743,11.85873166461949,11.324737671000097,10.822152700634303,10.349550940055904,9.905504088943323,9.488594736408878,9.097428663483006,8.730644703218447,8.386921291958023,8.06498051870358,7.763592869436753,7.481578251888791,7.217807437926964,6.971202686851777,6.7407376089178115,6.52543563511707,6.324369654181656,6.136660281003064,5.961474317705317,5.798023237418635,5.645561794681683,5.503385882701939,5.370830942878631,5.247270492664208,5.132114138757426,5.024806096872201,4.924823745124338,4.831676024248957,4.744901748518404,4.664068414012345,4.588770606628013,4.518628658151844,4.453287325080378,4.392414587122287,4.3357002755990335,4.282854837766846,4.233608287422203,4.187708930127644,4.144922328820852,4.105030257400398,4.0678297309909395,4.033131971985922,4.000761501801617,3.9705553230063932,3.942362012868435,3.916040973020704,3.8914616866249965,3.86850303832308,3.8470526191163783,3.8270061064183376,3.8082667218312514,3.7907446454315123,3.7743565276641937,3.7590250132580847,3.7446783159314254,3.7312497955786257,3.7186775660621922,3.7069041634215054,3.6958762085985786,3.6855440990462585,3.675861732111,3.666786249477435,3.6582777987414232,3.650299301256452,3.6428162477236654,3.6357965197825295,3.629210202411843,3.6230294270689454,3.617228221321172,3.611782374806935,3.6066693114250468,3.60186796673478,3.597358680415618,3.5931231018644065,3.5891440908417374,3.5854056341784157,3.581892766345725,3.5785914978375897,3.5754887479438406,3.5725722796243824,3.5698306407122975,3.567253113206491,3.5648296629366687,3.5625508908343413,3.5604079924113705,3.5583927174390815,3.5564973342086184,3.554714594805744,3.5530377021134685,3.5514602803988353,3.5499763494530043,3.5485802981632055,3.547266859739764,3.5460310907113843,3.5448683499485925,3.5437742799661165,3.5427447887963495,3.541776032667141,3.54086440024112,3.540006498691306,3.539199140427733,3.5384393291655782,3.5377242488058784,3.5370512521582866,3.5364178507179282,3.535821705050002,3.5352606154898583,3.5347325133676812,3.534235453021116,3.533767604626255,3.5333272473579895,3.532912762209793,3.532522626159297,3.5321554063959586,3.5318097549453378,3.5314844036566115,3.5311781593656333,3.530889899301061,3.530618566823089,3.5303631675412914,3.5301227657499377,3.5298964809463187,3.5296834842733604,3.5294829956628746,3.5292942809154093,3.5291166490332984,3.5289494496903377,3.52879207079275,3.528643936172551,3.5285045034409506,3.5283732620100103,3.528249731265375,3.5281334588415194,3.5280240189140595,3.5279210105488126,3.527824056347529,3.5277328010312097,3.5276469101911636,3.527566069065361,3.5274899813557727,3.5274183681173756,3.5273509667299523,3.5272875299492474,3.5272278250243336,3.527171632863401,3.5271187472303707,3.527068973960132,3.527022130243096,3.5269780439918503,3.5269365531921,3.526897505367342,3.526860757019596,3.5268261730752855,3.5267936263666115,3.5267629971596084,3.526734172726329,3.526707046950394,3.526681519952373,3.5266574977242366,3.5266348917703056,3.526613618765851,3.526593600270019,3.526574762449476,3.526557035745465,3.5265403547283434,3.526524657886667,3.5265098873603815,3.526495988678049,3.5264829105283377,3.526470604573226,3.5264590252946446,3.526448129857677,3.526437877971797,3.526428231737131,3.526419155475184,3.526410615563115,3.5264025803172916,3.526395019984818,3.5263879063999894,3.526381212885068,3.526374914575784,3.5263689883613623,3.5263634126267234,3.5263581669822956,3.5263532320779065,3.5263485895282427,3.526344221928123,3.526340112906392,3.52633624715774,3.5263326104019166,3.5263291892499264,3.5263259710066692,3.5263229435091747,3.5263200951892415,3.5263174155635366,3.5263148936623177,3.5263125178717685,3.526310278762938,3.5263081694664273,3.5263061846164527,3.5263043190528394,3.5263025669429746,3.5263009215677883,3.52629937570656,3.526297922354677,3.526296555416428,3.526295270031501,3.526294062319101,3.526292928557405,3.526291864158562,3.526290863250577,3.526289920266965,3.526289032965741,3.5262881881581833,3.5262873688015444,3.5262865709057953,3.526285803509298,3.5262850809121873,3.52628441440572,3.5262838073415543,3.5262832547197793,3.526282746538222,3.5262822729383725,3.5262818287049953,3.5262814149273036,3.526281036609295,3.526280696725622,3.526280389657118,3.5262801001068387,3.5262798177906216,3.526279548218383,3.5262792365131324,3.5262788278376025,3.526278330540982,3.5262778047506798,3.5262773236182343,3.526276938195701,3.526276660811508,3.526276469483941,3.5262763273562157,3.526276206359529,3.526276103309421,3.5262760394163775,3.526276040743758,3.5262761074748723,3.5262761939563863,3.5262762394147065,3.5262762641569267,3.5262761988345783,3.5262758899129825,3.526275317622595,3.526274605342107,3.5262739294310776,3.52627342536665,3.5262731380304264,3.5262730272183163,3.5262730139081566,3.5262730385171817,3.5262730993139186,3.5262732473168126,3.526273533414897,3.5262739340840503,3.526274323945857,3.526274604533122],\"thickness\":2,\"color\":\"#636EFA\",\"width\":0,\"type\":\"data\",\"opacity\":0.1},\"mode\":\"lines\",\"x\":[0.0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.5,9.0,9.5,10.0,10.5,11.0,11.5,12.0,12.5,13.0,13.5,14.0,14.5,15.0,15.5,16.0,16.5,17.0,17.5,18.0,18.5,19.0,19.5,20.0,20.5,21.0,21.5,22.0,22.5,23.0,23.5,24.0,24.5,25.0,25.5,26.0,26.5,27.0,27.5,28.0,28.5,29.0,29.5,30.0,30.5,31.0,31.5,32.0,32.5,33.0,33.5,34.0,34.5,35.0,35.5,36.0,36.5,37.0,37.5,38.0,38.5,39.0,39.5,40.0,40.5,41.0,41.5,42.0,42.5,43.0,43.5,44.0,44.5,45.0,45.5,46.0,46.5,47.0,47.5,48.0,48.5,49.0,49.5,50.0,50.5,51.0,51.5,52.0,52.5,53.0,53.5,54.0,54.5,55.0,55.5,56.0,56.5,57.0,57.5,58.0,58.5,59.0,59.5,60.0,60.5,61.0,61.5,62.0,62.5,63.0,63.5,64.0,64.5,65.0,65.5,66.0,66.5,67.0,67.5,68.0,68.5,69.0,69.5,70.0,70.5,71.0,71.5,72.0,72.5,73.0,73.5,74.0,74.5,75.0,75.5,76.0,76.5,77.0,77.5,78.0,78.5,79.0,79.5,80.0,80.5,81.0,81.5,82.0,82.5,83.0,83.5,84.0,84.5,85.0,85.5,86.0,86.5,87.0,87.5,88.0,88.5,89.0,89.5,90.0,90.5,91.0,91.5,92.0,92.5,93.0,93.5,94.0,94.5,95.0,95.5,96.0,96.5,97.0,97.5,98.0,98.5,99.0,99.5,100.0,100.5,101.0,101.5,102.0,102.5,103.0,103.5,104.0,104.5,105.0,105.5,106.0,106.5,107.0,107.5,108.0,108.5,109.0,109.5,110.0,110.5,111.0,111.5,112.0,112.5,113.0,113.5,114.0,114.5,115.0,115.5,116.0,116.5,117.0,117.5,118.0,118.5,119.0,119.5,120.0,120.5,121.0,121.5,122.0,122.5,123.0,123.5,124.0,124.5,125.0,125.5,126.0,126.5,127.0,127.5,128.0,128.5,129.0,129.5,130.0,130.5,131.0,131.5,132.0,132.5,133.0,133.5,134.0,134.5,135.0,135.5,136.0,136.5,137.0,137.5,138.0,138.5,139.0,139.5,140.0,140.5,141.0,141.5,142.0,142.5,143.0,143.5,144.0,144.5,145.0,145.5,146.0,146.5,147.0,147.5,148.0,148.5,149.0,149.5,150.0,150.5,151.0,151.5,152.0,152.5,153.0,153.5,154.0,154.5,155.0,155.5,156.0,156.5,157.0,157.5,158.0,158.5,159.0,159.5,160.0,160.5,161.0,161.5,162.0,162.5,163.0,163.5,164.0,164.5,165.0,165.5,166.0,166.5,167.0,167.5,168.0,168.5,169.0,169.5,170.0,170.5,171.0,171.5,172.0,172.5,173.0,173.5,174.0,174.5,175.0,175.5,176.0,176.5,177.0,177.5,178.0,178.5,179.0,179.5,180.0,180.5,181.0,181.5,182.0,182.5,183.0,183.5,184.0,184.5,185.0,185.5,186.0,186.5,187.0,187.5,188.0,188.5,189.0,189.5,190.0,190.5,191.0,191.5,192.0,192.5,193.0,193.5,194.0,194.5,195.0,195.5,196.0,196.5,197.0,197.5,198.0,198.5,199.0,199.5,200.0],\"opacity\":0.8,\"y\":[99.99,99.9897201555519,99.98898514024611,99.98790605552898,99.98655027822352,99.98495651095246,99.98314447873942,99.9811211601934,99.97888477430314,99.97642731211857,99.9737361234345,99.97079488790676,99.96758418329928,99.96408178793152,99.96026280548499,99.95609966872524,99.9515620581155,99.94661675802278,99.94122746455236,99.9353545534091,99.92895481242167,99.92198114108857,99.91438221747974,99.90610213219237,99.89707998774944,99.88724946168936,99.87653833077076,99.86486795342037,99.8521527074828,99.83829937933328,99.82320650142955,99.80676363338463,99.78885058215305,99.76933655795956,99.74807925894383,99.72492388119495,99.69970204965063,99.6722306582788,99.64231062169681,99.60972552635309,99.57424017371724,99.53559901889247,99.49352448813114,99.44771516139622,99.39784384045119,99.34355546630961,99.28446488927291,99.22015451598016,99.15017178570679,99.07402646413334,98.99118783398892,98.9010816838466,98.8030871330685,98.69653337689604,98.58069625579485,98.45479459916487,98.31798662356084,98.16936614381143,98.00795869356746,97.83271778219527,97.64252121028866,97.4361671418549,97.21237073820149,96.96976094939032,96.70687748056115,96.42216851223621,96.11398936549797,95.78060109519726,95.42017067453796,95.03077265652205,94.6103915070489,94.15692618212186,93.66819739953462,93.14195581839992,92.57589314565242,91.96765744847879,91.31486990431861,90.61514629625819,89.86612250142143,89.06548327768208,88.21099478474868,87.30054274870155,86.33217290313858,85.30413801895315,84.21494439009854,83.06340192919492,81.84868059944782,80.57036141606856,79.2284879831755,77.82362009169628,76.35687930218307,74.82997529801857,73.24524964582362,71.60569533331679,69.91495216973388,68.17731246772512,66.39769619404277,64.58159224260052,62.73501868269599,60.86445499365367,58.976737515058495,57.07897996726091,55.178458290156826,53.2824784876387,51.398280571212176,49.532919310011806,47.69314722783236,45.88532720727881,44.115336348414516,42.38848611728532,40.709482446529385,39.082376024182636,37.51054805960893,35.99670622406136,34.54289270254487,33.15051050719229,31.820364872109458,30.552703885775696,29.34727577591445,28.20338262141895,27.119939168402045,26.095531826509905,25.128475594009014,24.216867862397248,23.358638734702485,22.55159582728505,21.79346709939644,21.081935007920894,20.41466725382702,19.789344290999043,19.20367927676686,18.65543615619148,18.14244447780637,17.66260911880046,17.213917517323754,16.794446136318182,16.402362412680077,16.035926654071282,15.693492684599372,15.37350636698852,15.074503222200248,14.795106670442838,14.534024067108096,14.290043523763357,14.06203044705435,13.848923587560297,13.649730764298681,13.463525515858999,13.28944281992438,13.126675501731174,12.974470720788101,12.832126571090994,12.698988496547855,12.57444641776339,12.45793162637719,12.348913979422797,12.246899303436756,12.151427027669499,12.062067727489516,11.97842100299232,11.900113541266238,11.826797125523658,11.758146937517964,11.693859974664853,11.63365352100809,11.577263676995292,11.524444142861492,11.474964947000615,11.428611330431918,11.385182705249163,11.344491715633396,11.306363298830636,11.270633840438741,11.23715043976527,11.205770139933467,11.176359276417843,11.148792853609105,11.122953977703474,11.098733293576172,11.07602848583991,11.054743831271727,11.034789737986095,11.016082352960721,10.998543184712114,10.982098759344659,10.966680281223452,10.952223327212375,10.938667575229646,10.925956524171838,10.914037252804984,10.902860187448542,10.892378891534339,10.882549859947154,10.873332326891244,10.864688097545528,10.856581380722469,10.848978633749716,10.841848420641432,10.835161279512608,10.828889598089484,10.823007493171591,10.817490701269968,10.812316479964531,10.807463507738897,10.80291179587625,10.79864260407598,10.794638363108158,10.79088260110602,10.787359872944323,10.78405569602023,10.78095649184099,10.7780495271717,10.775322861809766,10.77276529883548,10.770366338606882,10.768116135384002,10.76600545568441,10.764025639739836,10.762168566650761,10.760426620623246,10.758792658599425,10.757259981515787,10.75582230640902,10.75447374086449,10.753208758564165,10.752022176103571,10.750909131666074,10.749865065534216,10.748885701044193,10.747967026653152,10.747105279824549,10.746296931429795,10.745538671422219,10.744827395185403,10.74416019058809,10.743534325969664,10.74294723913347,10.74239652694694,10.7418799350857,10.741395349032306,10.740940785348926,10.74051438359122,10.740114398722934,10.739739193904972,10.739387233704461,10.73905707779609,10.738747375157347,10.738456858590785,10.738184339338146,10.737928702311066,10.737688901526898,10.737463955830801,10.737252944903231,10.737055005475181,10.736869327757823,10.736695152106442,10.736531765928373,10.736378500810897,10.73623472978825,10.73609986468427,10.735973353771552,10.735854679504708,10.735743356411444,10.73563892911424,10.735540970457743,10.735449079746036,10.735362881093577,10.735282021889876,10.735206171370745,10.735135019278417,10.735068274578992,10.735005664241056,10.734946932154736,10.73489183807313,10.734840156640459,10.73479167647128,10.734746199278753,10.734703539056197,10.734663521312775,10.734625982361155,10.734590768652751,10.734557736154517,10.734526749760306,10.734497682729437,10.734470416162788,10.734444838529267,10.734420845203115,10.734398338047189,10.734377225011581,10.734357419750983,10.734338841265947,10.734321413569395,10.734305065377212,10.734289729819976,10.73427534417234,10.734261849596923,10.734249190900934,10.734237316306213,10.734226177238812,10.734215728135142,10.734205926243751,10.734196731468685,10.734188106210995,10.734180015207933,10.734172425379773,10.734165305689167,10.73415862701402,10.734152362032209,10.734146485114943,10.734140972225253,10.734135800818962,10.734130949747566,10.734126399165723,10.734122130450428,10.734118126142283,10.73411436984169,10.734110846139096,10.734107540613639,10.734104439779694,10.734101531007308,10.734098802443073,10.734096242945288,10.734093842037371,10.734091589876476,10.734089477229931,10.734087495450803,10.734085636445153,10.734083892627856,10.734082256870801,10.734080722457124,10.734079283067807,10.734077932829624,10.734076666105132,10.734075477442978,10.734074361906053,10.734073315105105,10.734072333058684,10.734071412022905,10.73407054837138,10.734069738555284,10.734068979136364,10.73406826686136,10.734067598735123,10.734066972051362,10.734066384354772,10.734065833335947,10.734065316701304,10.734064832113873,10.734064377370736,10.734063950761566,10.734063549539966,10.734063170611115,10.734062812302064,10.734062474373605,10.73406215722054,10.734061861011126,10.73406158516624,10.734061328303516,10.73406108857134,10.734060864172278,10.73406065382508,10.734060456938934,10.73406027337313,10.734060102829838,10.734059944176996,10.734059795322779,10.734059654686872,10.73405952238492,10.734059393047284,10.73405926121321,10.734059127146933,10.734058995867574,10.73405887366337,10.734058764901771,10.734058670493187,10.734058588251964,10.73405851462354,10.734058446811662,10.734058384244099,10.734058328559303,10.734058281880278,10.734058244064974,10.734058210885527,10.734058176694571,10.73405814295228,10.73405810415401,10.734058047732901,10.73405797178594,10.734057885995668,10.734057804454137,10.734057738106191,10.734057690685283,10.73405765906726,10.734057636915347,10.73405761933357,10.73405760598533,10.734057600769598,10.734057607678412,10.73405762488676,10.734057642448976,10.734057652278969]},{\"name\":\"Exposed\",\"line\":{\"color\":\"#EF553B\"},\"error_y\":{\"array\":[0.0,0.00016317535193124917,0.00020426792391161727,0.00018381646636356637,0.00017331466384505107,0.0002552048179946199,0.00042151330196156246,0.000643335430713373,0.0009125959041151517,0.001229784803805046,0.0015986974356505268,0.002024868726187029,0.002515053561927113,0.003077057759804983,0.003719712241352935,0.004452916288408375,0.005287719641222638,0.0062364301113999035,0.00731274085212707,0.00853187490072326,0.009910746550757764,0.011468139840781554,0.013224905560862248,0.015204177838705943,0.017431612382189963,0.01993564789173487,0.022747792985616484,0.025902941056935448,0.029439714864658528,0.03340084484020143,0.03783358106649824,0.04279014471113653,0.04832822197204452,0.05451149954721759,0.061410251990215145,0.06910197758563073,0.0776720829462266,0.08721464031303383,0.09783319140291502,0.10964162138628372,0.12276511065815209,0.13734112756481273,0.15352050432060316,0.17146862202388855,0.19136660251800577,0.21341262056806987,0.23782330052047126,0.2648350669544476,0.2947056267526478,0.3277155954589361,0.36416992754535765,0.4043995325422373,0.44876291297536125,0.4976474386269519,0.5514706954612424,0.6106820975194274,0.675763592873101,0.7472305334208946,0.8256323561636981,0.9115521043586785,1.005605314398214,1.1084396699402925,1.220732026626619,1.3431848451535777,1.4765222036571006,1.6214830609595225,1.77881145021852,1.9492485161732658,2.133519458983229,2.3323166661650823,2.546283271144923,2.7759908836818874,3.021911055402089,3.2843887014764173,3.5636101203468633,3.859561904244494,4.171993453786957,4.5003700041937496,4.843824778349217,5.201109727679781,5.57054594729998,5.9499732261262945,6.336706779960361,6.727484377609988,7.1184499265819,7.505141337316397,7.882459231264042,8.244701437996357,8.585608414189641,8.898408181084678,9.17591755152042,9.410736138762257,9.595340170212024,9.722278110110313,9.78445338442467,9.775307528636104,9.689110157639714,9.521300233541957,9.268715112337674,8.929861543563744,8.50526431274691,7.997710389485676,7.412650714863639,6.758732599338879,6.0486389915160945,5.300736220387935,4.542416278869412,3.816932876131508,3.1960020328956276,2.792122845946628,2.728152891708404,3.030169871251694,3.5971608407997118,4.306944788154381,5.07626083603969,5.855881291391726,6.616227152261834,7.33858651381886,8.010636061440733,8.62419361761056,9.174021003422741,9.657100787761118,10.072168909380776,10.419383850873297,10.70004707477086,10.91638133952165,11.07133954869643,11.168425051085727,11.211538488225708,11.204850353302511,11.152678709413037,11.05939683484896,10.92934889771224,10.76678404678129,10.575803704756236,10.360319992806218,10.12402678803917,9.870379648332696,9.602581618288001,9.323578580129412,9.036060011979023,8.742461151948701,8.444972565757238,8.14554987832987,7.845924944461571,7.547619619644551,7.251961118999861,6.960094835136892,6.673000335819215,6.391505327336816,6.116299186444028,5.847946086662369,5.586898705185146,5.333509154298231,5.088040618256074,4.850677716446156,4.621535886311273,4.400669694357704,4.188081405420217,3.983728060707187,3.7875277060109305,3.599365744318757,3.419100022136986,3.2465653429453574,3.081577740293195,2.9239384806788578,2.773436949426716,2.6298537924468026,2.492963393572863,2.3625360508957334,2.2383397252964583,2.1201418549580477,2.0077107906897775,1.9008167831048959,1.7992332087804102,1.7027373167227002,1.611110913480243,1.5241408590968697,1.4416196335771103,1.363345670324316,1.2891235205168796,1.2187641703670629,1.152085102937966,1.0889103638962154,1.0290705404665887,0.9724028021856457,0.9187508463992395,0.8679647419808445,0.8199008964896684,0.7744218918212067,0.7313963443249688,0.6906987158867733,0.6522091690790396,0.615813413671379,0.5814024838187059,0.548872571269402,0.5181248485454346,0.4890652740003184,0.46160439665903313,0.43565716698155355,0.41114277499139146,0.38798447019346866,0.3661093635913785,0.3454482822493409,0.32593559347116924,0.30750904606478674,0.290109605973825,0.2736813059740918,0.2581711107411349,0.24352877455099878,0.22970669359270926,0.21665979043168782,0.20434538465011906,0.1927230742944347,0.1817546181391919,0.1714038250617291,0.161636454990424,0.15242012102994928,0.14372418757965397,0.13551968064440917,0.12777920714258637,0.12047686747745229,0.11358817859068282,0.10708999668173184,0.10096044726375518,0.09517886048700215,0.08972570679228146,0.08458253226844806,0.0797319027457853,0.07515735123470549,0.07084332319730864,0.06677512800942256,0.06293889078396143,0.05932150833176434,0.05591060848011432,0.05269451059120876,0.04966218623878309,0.04680322255900086,0.0441077912646554,0.041566614744744754,0.03917093610942328,0.03691249005275307,0.03478347532166922,0.032776529425807825,0.030884704926431344,0.02910144645505993,0.027420568181521308,0.02583623277588731,0.024342933450455264,0.022935474779647674,0.02160895529367513,0.020358750969006308,0.019180499483264325,0.0180700856670115,0.017023627921601354,0.01603746527795269,0.015108144866140096,0.01423240984999843,0.013407188354603819,0.012629583772716545,0.01189686436880184,0.0112064540486057,0.010555923479645235,0.009942981722037733,0.009365468474246482,0.008821346803173095,0.008308696239988317,0.007825706162476168,0.007370669451465163,0.006941976503122992,0.006538109799481372,0.006157638935072783,0.005799215375092873,0.00546156788838508,0.005143498043183885,0.004843876049041168,0.00456163690738224,0.004295776783397474,0.004045349549600987,0.003809463481888153,0.003587278112314566,0.003378001259061964,0.0031808862632184886,0.0029952294636051433,0.0028203677829155465,0.0026556763028301443,0.0025005661361881303,0.0023544822532845407,0.0022169015387061434,0.0020873310179405718,0.00196530618190107,0.0018503893756563223,0.00174216824541544,0.0016402542551907857,0.0015442812915579215,0.001453904371524146,0.00136879845477587,0.0012886573374035087,0.0012131925514685899,0.0011421323039407466,0.0010752206351798208,0.0010122163290917712,0.0009528920050028616,0.000897033382907063,0.0008444386132414421,0.0007949176138126066,0.0007482913960683538,0.0007043913904366519,0.0006630587959415121,0.0006241439827563485,0.0005875059677671339,0.0005530119626036368,0.0005205369609455143,0.0004899632870753951,0.0004611799996315569,0.0004340828234033319,0.00040857380231830524,0.00038456033413597105,0.0003619547848605854,0.0003406744187146846,0.00032064137558931945,0.0003017825547655169,0.00028402936243454466,0.00026731735115117264,0.0002515858218403062,0.00023677747334099043,0.00022283817071964358,0.00020971686172616358,0.0001973656008136309,0.00018573954208724408,0.0001747966363147037,0.00016449674247554223,0.0001548033453680492,0.00014568368648876988,0.00013710514462296876,0.00012903458208248357,0.00012143944531173277,0.0001142891845423968,0.00010755618959784784,0.0001012159403073618,9.524644230373485e-5,8.962726236359278e-5,8.433859063239876e-5,7.936073947714797e-5,7.467434097348854e-5,7.026122758692702e-5,6.610557284425722e-5,6.219433089289511e-5,5.85153168421416e-5,5.505349024028482e-5,5.180617071805266e-5,4.877601600191064e-5,4.595318219106868e-5,4.33150623872086e-5,4.083409860294055e-5,3.848630061529196e-5,3.6256505244841746e-5,3.413898513938982e-5,3.213403265357039e-5,3.0242545450319307e-5,2.846122618080065e-5,2.6780730092976816e-5,2.5188056989661488e-5,2.36727150858464e-5,2.2233580933275242e-5,2.0880023095662413e-5,1.961681170504718e-5,1.843222673576428e-5,1.7370933523933107e-5,1.6480641726276988e-5,1.5755194713947806e-5,1.5139829542506825e-5,1.4559763345031498e-5,1.39539848588263e-5,1.329872273315675e-5,1.2608799471939646e-5,1.1918389359282715e-5,1.12543509159108e-5,1.0617451620717521e-5,9.982031874545077e-6,9.317455356848527e-6,8.622741180251823e-6,7.946612415374041e-6,7.350198213867299e-6,6.810707918081681e-6,6.384200602969335e-6,6.212910692206159e-6,6.36506558657532e-6,6.777533703060131e-6,7.2519744197061915e-6,7.575815935850173e-6,7.648225765168001e-6,7.501552297526264e-6,7.236899974624911e-6,6.935156269175903e-6,6.59772353988583e-6,6.15145741768544e-6,5.525180321510189e-6,4.758450054895681e-6,4.032392075377286e-6,3.4769102307645613e-6],\"thickness\":2,\"color\":\"#EF553B\",\"width\":0,\"type\":\"data\",\"opacity\":0.1},\"mode\":\"lines\",\"x\":[0.0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.5,9.0,9.5,10.0,10.5,11.0,11.5,12.0,12.5,13.0,13.5,14.0,14.5,15.0,15.5,16.0,16.5,17.0,17.5,18.0,18.5,19.0,19.5,20.0,20.5,21.0,21.5,22.0,22.5,23.0,23.5,24.0,24.5,25.0,25.5,26.0,26.5,27.0,27.5,28.0,28.5,29.0,29.5,30.0,30.5,31.0,31.5,32.0,32.5,33.0,33.5,34.0,34.5,35.0,35.5,36.0,36.5,37.0,37.5,38.0,38.5,39.0,39.5,40.0,40.5,41.0,41.5,42.0,42.5,43.0,43.5,44.0,44.5,45.0,45.5,46.0,46.5,47.0,47.5,48.0,48.5,49.0,49.5,50.0,50.5,51.0,51.5,52.0,52.5,53.0,53.5,54.0,54.5,55.0,55.5,56.0,56.5,57.0,57.5,58.0,58.5,59.0,59.5,60.0,60.5,61.0,61.5,62.0,62.5,63.0,63.5,64.0,64.5,65.0,65.5,66.0,66.5,67.0,67.5,68.0,68.5,69.0,69.5,70.0,70.5,71.0,71.5,72.0,72.5,73.0,73.5,74.0,74.5,75.0,75.5,76.0,76.5,77.0,77.5,78.0,78.5,79.0,79.5,80.0,80.5,81.0,81.5,82.0,82.5,83.0,83.5,84.0,84.5,85.0,85.5,86.0,86.5,87.0,87.5,88.0,88.5,89.0,89.5,90.0,90.5,91.0,91.5,92.0,92.5,93.0,93.5,94.0,94.5,95.0,95.5,96.0,96.5,97.0,97.5,98.0,98.5,99.0,99.5,100.0,100.5,101.0,101.5,102.0,102.5,103.0,103.5,104.0,104.5,105.0,105.5,106.0,106.5,107.0,107.5,108.0,108.5,109.0,109.5,110.0,110.5,111.0,111.5,112.0,112.5,113.0,113.5,114.0,114.5,115.0,115.5,116.0,116.5,117.0,117.5,118.0,118.5,119.0,119.5,120.0,120.5,121.0,121.5,122.0,122.5,123.0,123.5,124.0,124.5,125.0,125.5,126.0,126.5,127.0,127.5,128.0,128.5,129.0,129.5,130.0,130.5,131.0,131.5,132.0,132.5,133.0,133.5,134.0,134.5,135.0,135.5,136.0,136.5,137.0,137.5,138.0,138.5,139.0,139.5,140.0,140.5,141.0,141.5,142.0,142.5,143.0,143.5,144.0,144.5,145.0,145.5,146.0,146.5,147.0,147.5,148.0,148.5,149.0,149.5,150.0,150.5,151.0,151.5,152.0,152.5,153.0,153.5,154.0,154.5,155.0,155.5,156.0,156.5,157.0,157.5,158.0,158.5,159.0,159.5,160.0,160.5,161.0,161.5,162.0,162.5,163.0,163.5,164.0,164.5,165.0,165.5,166.0,166.5,167.0,167.5,168.0,168.5,169.0,169.5,170.0,170.5,171.0,171.5,172.0,172.5,173.0,173.5,174.0,174.5,175.0,175.5,176.0,176.5,177.0,177.5,178.0,178.5,179.0,179.5,180.0,180.5,181.0,181.5,182.0,182.5,183.0,183.5,184.0,184.5,185.0,185.5,186.0,186.5,187.0,187.5,188.0,188.5,189.0,189.5,190.0,190.5,191.0,191.5,192.0,192.5,193.0,193.5,194.0,194.5,195.0,195.5,196.0,196.5,197.0,197.5,198.0,198.5,199.0,199.5,200.0],\"opacity\":0.8,\"y\":[0.01,0.009318875330868127,0.009134616271439442,0.009294636933409173,0.009702334545354914,0.01029749173692846,0.01104362022451292,0.011919794787337155,0.012915392467205812,0.014026712155066358,0.015254811931808662,0.016604135935848953,0.01808165393979177,0.01969633488595488,0.021458839021716657,0.023381354200155108,0.025477528527612342,0.027762468669120684,0.030252784262065843,0.03296666609048893,0.0359239904341852,0.03914644483051544,0.042657672973454665,0.046483437149731806,0.0506517981480807,0.055193312588507654,0.06014124850384972,0.06553182018935821,0.0714044432247722,0.0778020116357699,0.08477119762249251,0.09236277661853487,0.10063197951492289,0.10963887229302398,0.1194487677494249,0.13013266891779515,0.1417677450836101,0.1544378500837479,0.16823407454233558,0.18325534155895812,0.19960904949834243,0.21741175105281085,0.23678988340765128,0.25788056061048,0.2808323947075904,0.3058063855169579,0.3329768679189692,0.36253247813059813,0.3946771944803071,0.4296314618378266,0.46763329135837634,0.5089394591830856,0.5538267517074787,0.6025931466809056,0.6555590552758578,0.7130686930739699,0.7754912222866828,0.8432219891811865,0.9166837464341666,0.9963275856008144,1.082633707427289,1.1761124584175542,1.2773046297979591,1.386781598449555,1.505145354467339,1.6330277412489955,1.7710887513677034,1.9200153185718236,2.0805185673692552,2.2533298164335145,2.4391965593241927,2.6388765664851768,2.8531297245188254,3.082710191251099,3.3283564865860025,3.590778108103055,3.8706425832894347,4.168558926323347,4.485058755546404,4.820576263196112,5.175426721876433,5.549781203883188,5.943642083606927,6.35681368296731,6.7888774152513,7.239165810501272,7.706731317174443,8.190325029250323,8.688376742596846,9.198973272288026,9.719847188010515,10.248390110966152,10.781639555105164,11.316293353383474,11.848750452967835,12.375129738011339,12.891319896801837,13.393064412468918,13.876008522460767,14.335770575543464,14.768050639903713,15.168691728846095,15.533776937994146,15.859739620273785,16.143414547914286,16.38211376463103,16.57369565421122,16.71659117429529,16.80984328219878,16.853128250753542,16.846727084585122,16.791519318846664,16.688937281277195,16.540917054109894,16.349844316226488,16.11848650808695,15.849915067283915,15.547440018936577,15.21453076833402,14.854750864129706,14.471693030458749,14.068920069151043,13.649913514482586,13.218030282960388,12.776466598448307,12.328231136237633,11.876121191381937,11.422711026765803,10.970344024338697,10.521127807788808,10.076938501992538,9.63942539927384,9.210017966914535,8.789937867914349,8.380212155968568,7.981685059992688,7.595034129356218,7.2207841493642695,6.859320770909819,6.510905327169739,6.175689180595676,5.853725429558425,5.544982437401445,5.24935480352429,4.966673542136016,4.6967159190964525,4.43921483675643,4.193865969903401,3.9603355985235567,3.7382667667286755,3.5272847885096437,3.3270021234502565,3.1370231552589494,2.9569475639541416,2.786373791407162,2.6249018371651185,2.472135565649331,2.327684531990153,2.1911658490250905,2.0622054729434347,1.9404391630197015,1.8255135005274086,1.7170864529337317,1.614827772127037,1.5184193320911943,1.4275554093935219,1.341942615245002,1.2612999596860919,1.185358729289648,1.113862308357311,1.046565902556507,0.9832363247374071,0.9236516993804276,0.8676010618440857,0.8148840758936728,0.7653106329718413,0.7187004713184626,0.674882770284501,0.6336957990124642,0.5949865253909536,0.5586102032007828,0.5244300350071267,0.49231678343505264,0.46214841062512285,0.4338097158227336,0.40719201330792765,0.3821928041503234,0.3587154386007526,0.3366688332013951,0.3159671674952079,0.29652960483275337,0.278280015317614,0.261146725394214,0.24506227891572716,0.22996319223814132,0.21578973677825503,0.20248573025463062,0.18999833349612733,0.17827785763288062,0.16727758208649274,0.15695358845357005,0.14726459795132207,0.1381718119614854,0.12963877339411126,0.12163122693441826,0.1141169900002527,0.10706582836634583,0.1004493407874146,0.0942408526230199,0.08841531256345446,0.08294919261512552,0.0778204002321214,0.07300819105617348,0.06849308800476042,0.0642568041573319,0.060282170584703386,0.056553069965530216,0.05305437337956813,0.049771878884554574,0.046692255448218034,0.04380299133477218,0.041092343113883795,0.03854928919095033,0.03616348520981534,0.03392522290573525,0.0318253918356928,0.02985544278964587,0.028007352638457442,0.026273592499983796,0.02464709795072369,0.023121239970843553,0.021689798406132072,0.020346936585096412,0.01908717781803477,0.017905383549306417,0.016796732651688597,0.01575670158734844,0.014781045902533353,0.013865783626403332,0.013007178740074312,0.012201726097127538,0.011446137117686151,0.010737326364456583,0.010072399091191809,0.009448639598423845,0.008863500196843932,0.008314590692684658,0.007799668571557472,0.007316630165972268,0.006863501934720088,0.006438432418673611,0.006039684686887409,0.005665629219267666,0.005314737289207846,0.004985574784822467,0.0046767963913756155,0.004387140076379904,0.0041154218726090494,0.003860531042982415,0.00362142568587237,0.003397128381439086,0.0031867222149344924,0.0029893470184042888,0.002804195846387803,0.0026305116953268368,0.002467584434564132,0.002314747919818566,0.0021713772676385636,0.0020368862815555566,0.0019107250374820921,0.0017923776571607429,0.0016813602455864358,0.001577218859905679,0.0014795276705412937,0.001387887203290495,0.0013019227055325506,0.0012212826258992265,0.0011456371885594772,0.0010746770500552965,0.001008112032093736,0.0009456699278544191,0.0008870953822006383,0.0008321488477037635,0.0007806056185269702,0.0007322549184007219,0.0006868990209943957,0.0006443524511050766,0.0006044412082312419,0.0005670020554687897,0.0005318818619694811,0.0004989369855721861,0.00046803268857622036,0.0004390425842639736,0.0004118481146959495,0.00038633806149791994,0.00036240809082881733,0.0003399603314782071,0.0003189029810664685,0.0002991499269742682,0.000280620387589192,0.0002632386010063106,0.0002469334861607962,0.00023163834366822622,0.00021729059420943735,0.00020383153666002945,0.00019120611631768907,0.0001793626998542025,0.00016825285799044272,0.0001578311593617043,0.00014805497960795465,0.00013888432838744412,0.00013028169377556886,0.00012221189837018353,0.0001146419543574029,0.00010754090072848628,0.00010087972782425552,9.463126274166594e-5,8.876996284699041e-5,8.327180285113266e-5,7.81142142638309e-5,7.327603549183334e-5,6.873745050025496e-5,6.447990925627752e-5,6.0486034119993245e-5,5.673952293876156e-5,5.322506183869595e-5,4.992825859000263e-5,4.683560095145449e-5,4.393443357459423e-5,4.1212931867650425e-5,3.8660031670241075e-5,3.6265269896879476e-5,3.401902855477691e-5,3.191253632940833e-5,2.993729364210879e-5,2.808495513921939e-5,2.634748338149564e-5,2.47173527143114e-5,2.3187679608016175e-5,2.175223307250507e-5,2.040533607064748e-5,1.9141706181666195e-5,1.795630109790974e-5,1.6844231876650246e-5,1.58007842126233e-5,1.482154534712516e-5,1.3902571585036077e-5,1.3040448753090582e-5,1.2231990540704844e-5,1.1473660198310837e-5,1.0763895974684258e-5,1.0102030144037342e-5,9.48554493994427e-6,8.9100335143231e-6,8.370409994117266e-6,7.862214248483555e-6,7.382395479631795e-6,6.929382003676482e-6,6.502552593947005e-6,6.1014175181765945e-6,5.7248949128207734e-6,5.371030402485756e-6,5.037354890019801e-6,4.721807213320738e-6,4.423764888229572e-6,4.144227433075371e-6,3.883545194222498e-6,3.6395897598935834e-6,3.418787051667781e-6,3.2278164004623923e-6,3.0646614699885005e-6,2.9200951556674837e-6,2.7830326828448574e-6,2.6454301919431615e-6,2.5046412407972132e-6,2.362856711209817e-6,2.224444577751834e-6,2.092674882016547e-6,1.9674620548987316e-6,1.8453814430476071e-6,1.722319523396573e-6,1.5976978316161818e-6,1.4772690864937746e-6,1.369014754008375e-6,1.2700320774833298e-6,1.1881672488981428e-6,1.1421626158016134e-6,1.134401039179401e-6,1.1494866003047742e-6,1.1652754404976051e-6,1.1644920400442943e-6,1.1409759084006383e-6,1.0991359652522683e-6,1.048344841043859e-6,9.957829162065428e-7,9.41642150516741e-7,8.79622627805043e-7,8.033002566045492e-7,7.152122242783186e-7,6.303976007007315e-7,5.610520394900221e-7]},{\"name\":\"Infected\",\"line\":{\"color\":\"#00CC96\"},\"error_y\":{\"array\":[0.0,0.00020384207777135368,0.00034676492637104026,0.0004608764973857928,0.0005650214556311093,0.0006703680741249893,0.000783752825393177,0.0009096533436375515,0.0010513336056520938,0.001211501140751521,0.0013926836556145134,0.0015974476746939005,0.0018285299218143466,0.0020889216249494603,0.0023819284631781193,0.0027112190087863934,0.0030808689469347342,0.003495405267534149,0.003959852852927089,0.004479784986952425,0.005061378736119775,0.00571147606271064,0.006437651109294257,0.007248284484393365,0.008152644954879697,0.009160979433263135,0.010284611826739684,0.01153605144047996,0.012929112107757807,0.014479042188536347,0.01620266792942483,0.01811854963145593,0.02024715174358271,0.02261103029947069,0.025235035073581727,0.02814653143708363,0.03137564493315249,0.0349555187857234,0.03892260178681091,0.04331695681510171,0.04818258879683719,0.05356781489173233,0.059525656011019605,0.06611423747393796,0.07339725535710763,0.0814444466562964,0.09033208150513364,0.10014354563884803,0.11096991104316536,0.12291048049587003,0.13607348091372654,0.15057668250534978,0.16654801421177717,0.18412636158300266,0.20346227643841444,0.22471845563038778,0.24807058208354263,0.27370788344660707,0.30183353095629545,0.3326653263562003,0.3664362943726691,0.40339428261300875,0.44380231007016546,0.4879383845060644,0.5360945132088502,0.5885759824236394,0.6457008927619832,0.707796933849902,0.7751990025961151,0.8482466916311336,0.9272789686156548,1.012629229731436,1.1046207864965356,1.2035578340083115,1.309715829018456,1.4233333960899641,1.5445984303273663,1.673636058428198,1.81049388088619,1.9551254440368069,2.1073721247452526,2.2669450524492167,2.433403923498455,2.606144937615528,2.7843727565030596,2.967077249642232,3.1530360996313407,3.3407915286671384,3.5286393561664005,3.71464194573002,3.8966346373232734,4.07219452356525,4.238712387318714,4.393429900454706,4.533442813005024,4.655804814771617,4.757583115077503,4.835883299038672,4.887975257650166,4.911395970820228,4.903984959772315,4.864022989139778,4.790284554932868,4.682081283123125,4.53934871148969,4.36268014970897,4.153335316084813,3.9132619071009205,3.645074655728881,3.352051248102734,3.0381244611225533,2.707922164759719,2.366895533136953,2.021653879931215,1.6808132217344223,1.3569981985921309,1.0714889167963968,0.8628554755560859,0.7864963439560569,0.864945066739517,1.0502758328989918,1.2835738066136142,1.53043447132537,1.7738051796273424,2.004979336370704,2.219246972563404,2.4139900636370757,2.5878264908356754,2.7401757021647923,2.8710044098750176,2.980689099882323,3.069903797560144,3.139546562499451,3.19068004119897,3.2244834277480203,3.242212366399212,3.2451661469799364,3.234658621903778,3.2119980500178733,3.1784672557410345,3.135307467566263,3.0837096564520072,3.0248033418505864,2.9596509211538797,2.8892454514574477,2.814507963186874,2.736284681879494,2.6553507255121223,2.5724091706630694,2.4880940164056553,2.4029739046547,2.3175560151027637,2.232287574703043,2.1475617357495236,2.0637204612632147,1.9810583556645307,1.8998267803869289,1.820238588541901,1.7424703738194862,1.6666662553379397,1.5929418499999348,1.5213862708693666,1.4520653921671292,1.3850249860970933,1.3202929814577813,1.2578809998201035,1.1977873573877635,1.1399982950813756,1.0844897693041688,1.0312290121290313,0.9801762934860117,0.9312857020918732,0.8845061531429687,0.8397828834028391,0.7970577502221857,0.7562702245065447,0.7173580754518741,0.6802581314097761,0.6449064808189103,0.6112389529949814,0.5791917549632952,0.5487014542378886,0.5197054101385571,0.49214200428680155,0.46595093676276317,0.4410732124739027,0.4174512583594414,0.3950292090606777,0.37375277427770764,0.3535693842369462,0.3344282085891489,0.31628025882322697,0.29907833142037915,0.2827769426703257,0.2673324277886348,0.25270287120575297,0.23884805245225943,0.22572943428057637,0.2133101493355727,0.20155497194928187,0.19043021914177002,0.17990370795084693,0.16994477056536608,0.1605241363466027,0.15161390876961683,0.1431875085775612,0.13521964643282242,0.1276862716085507,0.12056449345420658,0.1138325384519445,0.10746973767831411,0.10145644152272887,0.09577398793714703,0.09040465637316718,0.08533163475254057,0.0805389818731452,0.0760115725794401,0.07173505400896399,0.06769582686072989,0.063881006623695,0.060278373133278815,0.056876351406061613,0.05366397583835707,0.050630867181422984,0.04776720065737952,0.04506367046986491,0.042511463917039055,0.04010224641522829,0.03782813205282634,0.03568165414305481,0.03365575060303223,0.031743740671790664,0.02993930870295444,0.02823648421488901,0.026629619987964377,0.025113373833028987,0.02368269658396256,0.02233281903361941,0.021059229231192623,0.019857663574805035,0.018724092438761043,0.017654708716144704,0.016645916839815096,0.015694320270248537,0.014796709042918445,0.013950049501499107,0.013151476779241575,0.012398286929184058,0.011687924112736088,0.011017974571812292,0.010386158912505841,0.009790324956106846,0.009228441368735848,0.008698590714667968,0.008198962425261719,0.007727846446613008,0.007283628073773003,0.006864783697575505,0.0064698758824351795,0.006097546589120901,0.005746514209481506,0.005415569132291221,0.005103570001105397,0.004809440137117362,0.004532163747896301,0.00427078220087007,0.004024390613586162,0.0037921349086703633,0.0035732093000027066,0.003366853917938215,0.0031723519485823267,0.0029890265089021852,0.002816239220193712,0.0026533878035428717,0.002499904346356857,0.0023552534122482627,0.002218930050699974,0.002090457905035149,0.001969387516801525,0.0018552948431666755,0.0017477799413147931,0.0016464657301140367,0.0015509967145156509,0.0014610375535538643,0.001376271793173161,0.0012964010883303421,0.0012211440218098057,0.0011502354498074464,0.001083425590939263,0.0010204790028428355,0.0009611736238666566,0.000905299953996669,0.0008526603741005891,0.0008030685557751495,0.0007563488955620336,0.0007123359170383971,0.0006708736223193406,0.0006318148407828994,0.0005950207692298317,0.0005603606097555259,0.0005277107883047358,0.0004969550321464459,0.000467984115794095,0.0004406952868538668,0.00041499166234563317,0.00039078174509207933,0.0003679791014455869,0.0003465021663383317,0.0003262740993955919,0.00030722260664189016,0.00028927966614963755,0.0002723811528344721,0.0002564664474811599,0.00024147823840177114,0.00022736280436429357,0.0002140689257180754,0.00020154763305250302,0.00018975373145049674,0.0001786457920857765,0.00016818533490493902,0.00015833593826225287,0.00014906266173700578,0.0001403318961981523,0.0001321115606523324,0.00012437144847222474,0.0001170834861200126,0.00011022170543351858,0.00010376184598865,9.76806969794274e-5,9.1955558410979e-5,8.65645496187378e-5,8.148856314827902e-5,7.670606636548218e-5,7.219229876292507e-5,6.792884026684692e-5,6.390502242003467e-5,6.011451378947666e-5,5.655105311407269e-5,5.320555364981526e-5,5.0065396865067484e-5,4.7115702480991304e-5,4.434170617960717e-5,4.173107639747554e-5,3.927504807444234e-5,3.6967653128020377e-5,3.480309063767695e-5,3.277239460878297e-5,3.0862025937260996e-5,2.9058954876955157e-5,2.7360729686063402e-5,2.5733500173751177e-5,2.4131503619867113e-5,2.254676190692153e-5,2.1008885102278145e-5,1.9561164886900762e-5,1.8236283901006802e-5,1.7043812605435885e-5,1.5971021365035192e-5,1.499266124322085e-5,1.4084182543501973e-5,1.3233012420441273e-5,1.2442728075772512e-5,1.1727058373624024e-5,1.1095200798793554e-5,1.053506764521361e-5,1.0008378754394748e-5,9.48719954330494e-6,8.987125640817317e-6,8.377648397034184e-6,7.552221321715669e-6,6.637682460618275e-6,5.92248598768368e-6,5.575061825008712e-6,5.47401977986976e-6,5.398538337412633e-6,5.2482047946193355e-6,5.043467326110976e-6,4.830102666779235e-6,4.608219207885328e-6,4.318976998557262e-6,3.902796893180501e-6,3.4095558464645286e-6,3.0150285598113283e-6,2.7956504020317333e-6,2.6735568185707045e-6,2.5541400645751628e-6,2.5103849769055895e-6,3.685688837365641e-6,6.099924808180254e-6,8.621326398424079e-6,1.0498060247542759e-5,1.1483993010984013e-5,1.1733602134337968e-5,1.1580032737895078e-5,1.1276929110567093e-5,1.083038398510193e-5,1.0019948484289697e-5,8.626682000770874e-6,6.754531554848104e-6,4.947312994963088e-6,3.627725743585398e-6],\"thickness\":2,\"color\":\"#00CC96\",\"width\":0,\"type\":\"data\",\"opacity\":0.1},\"mode\":\"lines\",\"x\":[0.0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.5,9.0,9.5,10.0,10.5,11.0,11.5,12.0,12.5,13.0,13.5,14.0,14.5,15.0,15.5,16.0,16.5,17.0,17.5,18.0,18.5,19.0,19.5,20.0,20.5,21.0,21.5,22.0,22.5,23.0,23.5,24.0,24.5,25.0,25.5,26.0,26.5,27.0,27.5,28.0,28.5,29.0,29.5,30.0,30.5,31.0,31.5,32.0,32.5,33.0,33.5,34.0,34.5,35.0,35.5,36.0,36.5,37.0,37.5,38.0,38.5,39.0,39.5,40.0,40.5,41.0,41.5,42.0,42.5,43.0,43.5,44.0,44.5,45.0,45.5,46.0,46.5,47.0,47.5,48.0,48.5,49.0,49.5,50.0,50.5,51.0,51.5,52.0,52.5,53.0,53.5,54.0,54.5,55.0,55.5,56.0,56.5,57.0,57.5,58.0,58.5,59.0,59.5,60.0,60.5,61.0,61.5,62.0,62.5,63.0,63.5,64.0,64.5,65.0,65.5,66.0,66.5,67.0,67.5,68.0,68.5,69.0,69.5,70.0,70.5,71.0,71.5,72.0,72.5,73.0,73.5,74.0,74.5,75.0,75.5,76.0,76.5,77.0,77.5,78.0,78.5,79.0,79.5,80.0,80.5,81.0,81.5,82.0,82.5,83.0,83.5,84.0,84.5,85.0,85.5,86.0,86.5,87.0,87.5,88.0,88.5,89.0,89.5,90.0,90.5,91.0,91.5,92.0,92.5,93.0,93.5,94.0,94.5,95.0,95.5,96.0,96.5,97.0,97.5,98.0,98.5,99.0,99.5,100.0,100.5,101.0,101.5,102.0,102.5,103.0,103.5,104.0,104.5,105.0,105.5,106.0,106.5,107.0,107.5,108.0,108.5,109.0,109.5,110.0,110.5,111.0,111.5,112.0,112.5,113.0,113.5,114.0,114.5,115.0,115.5,116.0,116.5,117.0,117.5,118.0,118.5,119.0,119.5,120.0,120.5,121.0,121.5,122.0,122.5,123.0,123.5,124.0,124.5,125.0,125.5,126.0,126.5,127.0,127.5,128.0,128.5,129.0,129.5,130.0,130.5,131.0,131.5,132.0,132.5,133.0,133.5,134.0,134.5,135.0,135.5,136.0,136.5,137.0,137.5,138.0,138.5,139.0,139.5,140.0,140.5,141.0,141.5,142.0,142.5,143.0,143.5,144.0,144.5,145.0,145.5,146.0,146.5,147.0,147.5,148.0,148.5,149.0,149.5,150.0,150.5,151.0,151.5,152.0,152.5,153.0,153.5,154.0,154.5,155.0,155.5,156.0,156.5,157.0,157.5,158.0,158.5,159.0,159.5,160.0,160.5,161.0,161.5,162.0,162.5,163.0,163.5,164.0,164.5,165.0,165.5,166.0,166.5,167.0,167.5,168.0,168.5,169.0,169.5,170.0,170.5,171.0,171.5,172.0,172.5,173.0,173.5,174.0,174.5,175.0,175.5,176.0,176.5,177.0,177.5,178.0,178.5,179.0,179.5,180.0,180.5,181.0,181.5,182.0,182.5,183.0,183.5,184.0,184.5,185.0,185.5,186.0,186.5,187.0,187.5,188.0,188.5,189.0,189.5,190.0,190.5,191.0,191.5,192.0,192.5,193.0,193.5,194.0,194.5,195.0,195.5,196.0,196.5,197.0,197.5,198.0,198.5,199.0,199.5,200.0],\"opacity\":0.8,\"y\":[0.0,0.0008490199864454186,0.001474256922136696,0.0019616372119628913,0.0023673367113927393,0.0027283490464058706,0.003069324264115817,0.0034069961990437453,0.00375305113318479,0.0041159890692153995,0.004502334196796685,0.004917425124076977,0.005365934069364162,0.005852211514534878,0.00638051877449188,0.006955188971405384,0.00758074263215809,0.008261974960279821,0.00900402588997918,0.009812440206036856,0.010693222504982289,0.011652890309330562,0.01269852736912394,0.013837838882850756,0.015079209610746182,0.016431765915761724,0.017905442364247116,0.01951105349699157,0.02126037151700193,0.023166210154343746,0.025242515875038504,0.027504466430909646,0.029968577335481715,0.032652817779396694,0.03557673520229131,0.03876159054044651,0.04223050553247606,0.04600861881359317,0.05012325725019921,0.054604119394481454,0.05948347108675852,0.0647963609926906,0.07058084996757814,0.07687825003970147,0.08373339258283118,0.09119490552815798,0.09931550654724364,0.1081523335154787,0.11776728223470712,0.1282273455893621,0.13960501094059408,0.15197864609264417,0.16543289778377668,0.18005915669092304,0.19595601351873637,0.213229658426063,0.23199440492953724,0.2523731460217257,0.27449778176856854,0.2985097424689499,0.32456050997866426,0.35281186487552474,0.38343636605581316,0.4166176970378863,0.4525507957174771,0.49144206679966757,0.5335096954897309,0.5789831741730346,0.6281030689857987,0.6811207614334954,0.7382973670466003,0.7999027234298146,0.8662145507324519,0.9375161919802545,1.0140941115059716,1.0962358353263424,1.1842259913623197,1.2783426078974123,1.3788529070255597,1.4860078739883038,1.6000357621590264,1.7211360058279606,1.8494710485140127,1.9851596503622468,2.128266660539407,2.278792826843183,2.4366682024535478,2.6017406093641386,2.7737653012403474,2.9523988326946906,3.1371915151905303,3.3275691814310537,3.5228393509628155,3.7221886002781113,3.9246715098255147,4.1292245072685905,4.334671156800128,4.53971302995926,4.742957687447967,4.942940729559539,5.1381280034186325,5.326957965158064,5.507862763253433,5.679276450433343,5.839686333174346,5.987658795999564,6.121858640328611,6.241090163755518,6.344312468316702,6.430649141596511,6.4994249003107685,6.550162014265013,6.582594118105129,6.5966668390691545,6.59252822532398,6.570520103591622,6.531171996557999,6.475175990101209,6.403374753539799,6.316735754749968,6.216328966275307,6.103304671990748,5.978870791382648,5.844270543570342,5.7007622593863365,5.549598564532759,5.392013988026688,5.229206771986186,5.06232608601229,4.892465258851228,4.7206501078053575,4.5478341876588155,4.374897511209617,4.202642351258617,4.031791248392019,3.8629909190982565,3.696810730644843,3.5337463351461116,3.3742247547314994,3.2186070984703963,3.0671914606390307,2.9202200581805013,2.7778813401856812,2.640315494446936,2.507619882944988,2.379853221496077,2.2570386135834477,2.1391694545058124,2.026211788380689,1.9181083562658658,1.8147822495388266,1.7161402169891644,1.622074446198668,1.5324660472717277,1.4471868461582973,1.366101399342282,1.2890689277735896,1.2159453118262125,1.1465839452716433,1.0808370989578189,1.018557274652571,0.9595976828369502,0.9038132017745306,0.8510611992440676,0.8012020088733723,0.7540991139056512,0.7096198531505867,0.6676354662708076,0.628021345484832,0.5906572015713187,0.5554272949272621,0.5222203411190076,0.4909294989119464,0.46145253204248493,0.43369157655814294,0.40755315793622704,0.3829481110752806,0.3597915370950698,0.33800259609849326,0.31750439946456693,0.29822396333474266,0.28009196835695155,0.2630426742158101,0.24701377992339293,0.23194631527963838,0.217784451830304,0.20447536230204957,0.19196913939066676,0.18021860092557712,0.16917918653960262,0.1588088253128376,0.14906783461928866,0.13991878285103385,0.13132635709338966,0.12325728310180858,0.1156802052511374,0.10856557701987199,0.1018855695656998,0.09561398427063723,0.08972616697995102,0.08419890872817469,0.07901036575093198,0.07413999892083828,0.06956848263296783,0.06527764236618278,0.06125038719523726,0.05747065281048362,0.053923341973758615,0.05059426130161498,0.047470069629412665,0.04453823651593706,0.0417869853564081,0.039205252028918995,0.036782642307705504,0.03450939423295317,0.032376341436531494,0.030374874282701476,0.02849690528761287,0.026734841953529966,0.02508155644318832,0.0235303539282697,0.02207494959367317,0.020709442915518336,0.01942829598928882,0.018226311001980196,0.01709860792869217,0.016040605294051952,0.015048004226235662,0.014116770161199547,0.013243115320134202,0.012423485217222604,0.011654543893716878,0.010933161318582097,0.010256400617553618,0.009621505461672633,0.009025888750281536,0.008467123086573812,0.00794293149695867,0.007451176571636931,0.006989852894030357,0.00655707871341985,0.006151088545516107,0.005770226215580988,0.005412937914191856,0.005077765558953303,0.004763340862739895,0.004468380201901536,0.004191679656136857,0.003932109296364514,0.003688609024717126,0.0034601842827226784,0.0032459020366816275,0.0030448870933194438,0.002856318471814558,0.002679425912963956,0.00251348665814819,0.0023578225839364754,0.0022117976326168514,0.0020748152347810768,0.001946315493054524,0.0018257731836574457,0.0017126955793772794,0.001606620481265527,0.0015071143696565442,0.0014137705972245658,0.0013262076678528763,0.001244067641060059,0.0011670146838151005,0.001094733759774792,0.001026929400291409,0.0009633244425292024,0.0009036587693323478,0.0008476883997097219,0.0007951844472484641,0.0007459322333093779,0.0006997304148121352,0.000656390131654653,0.0006157342044486203,0.0005775963968072959,0.0005418207430299926,0.0005082609316921049,0.0004767797283636905,0.00044724841645350924,0.0004195462342249069,0.0003935598597889997,0.0003691830009097707,0.0003463159333755267,0.00032486514222974103,0.0003047429393330928,0.00028586707844791736,0.00026816039512436745,0.00025155048230246854,0.00023596940065878403,0.00022135341532005301,0.00020764274764033692,0.00019478133228846022,0.00018271657592901352,0.00017139912428830334,0.0001607826677480125,0.00015082377181990548,0.00014148164813807836,0.00013271806642570444,0.00012449722168339646,0.00011678555749103774,0.00010955159036135088,0.00010276575813138566,9.640029850714705e-5,9.042915215289935e-5,8.482787814024938e-5,7.957356814315917e-5,7.464474948280818e-5,7.002127599226455e-5,6.568421968323832e-5,6.16157954204703e-5,5.779936351939012e-5,5.421922228584315e-5,5.086053239652754e-5,4.7709519736761455e-5,4.4753442591063574e-5,4.1980435283033774e-5,3.937934235557394e-5,3.693960313520042e-5,3.465120430432074e-5,3.2504687912803204e-5,3.0491184095091768e-5,2.8602431621373098e-5,2.6830755300983926e-5,2.5168987173142063e-5,2.3610348364884255e-5,2.2148350467367172e-5,2.07768293286015e-5,1.949023512231372e-5,1.8282815746454627e-5,1.714847979694761e-5,1.6082266158626903e-5,1.5080553195903392e-5,1.414052317719078e-5,1.3259494313395766e-5,1.2434463013899014e-5,1.1661984620843442e-5,1.0938361974207655e-5,1.026000768606035e-5,9.623797962592098e-6,9.027243206967186e-6,8.46836346476125e-6,7.945275036813739e-6,7.4556682814281515e-6,6.9965857595031255e-6,6.565207646521372e-6,6.16040756227803e-6,5.776259357491699e-6,5.4049928696980595e-6,5.044564665648545e-6,4.6987294097030414e-6,4.373649379368476e-6,4.074243456101734e-6,3.801983503923673e-6,3.554672247078722e-6,3.327882570918665e-6,3.117203597398114e-6,2.9202239280271554e-6,2.737287102855353e-6,2.570478594032119e-6,2.4210475367442928e-6,2.2865298988156994e-6,2.1602229030012475e-6,2.0374675440341773e-6,1.9207075402173676e-6,1.7888768741256939e-6,1.6204077267330065e-6,1.4180368492102456e-6,1.20467576033408e-6,1.0085538360230734e-6,8.496225934551926e-7,7.330106674652948e-7,6.5056809263641e-7,5.882355406816517e-7,5.351191193723716e-7,4.897442163852152e-7,4.600026690395673e-7,4.55796258966878e-7,4.77316169266262e-7,5.072826007356155e-7,5.22316777752483e-7,5.293025703591979e-7,5.053856098287661e-7,3.9756054383080266e-7,1.982560412913106e-7,-5.0732958055776406e-8,-2.8884122374833357e-7,-4.689526101531296e-7,-5.74727514468952e-7,-6.190927400302744e-7,-6.286978384157856e-7,-6.240718692762513e-7,-6.063244969745373e-7,-5.585254380664348e-7,-4.633664833567924e-7,-3.2836064272274485e-7,-1.9566340013504415e-7,-9.951679386082526e-8]},{\"name\":\"Recovered\",\"line\":{\"color\":\"#AB63FA\"},\"error_y\":{\"array\":[0.0,2.9074651414520066e-5,0.00010255313916621911,0.000207494226686699,0.000337823232243082,0.0004915808613358394,0.0006693164943278986,0.0008731653841372255,0.0011063335601229894,0.001372825426826142,0.001677315813570164,0.002025108313672317,0.002422145752680915,0.0028750530486866817,0.0033912013480687855,0.003978787462049833,0.004646925692711276,0.0054057509254712135,0.006266532958262138,0.007241802639682728,0.0083454908273539,0.009593081342632431,0.011001779473944427,0.012590697497561828,0.014381059093763774,0.01639642443999289,0.018662938140778736,0.021209602295584305,0.024068576973102412,0.02727551117495455,0.03086990634819649,0.034895516458403227,0.03940078802268288,0.04443934254703841,0.050070507473200805,0.0563598978864907,0.06338005268702365,0.07121113632996916,0.07994170258294346,0.08966953212465834,0.10050255140749305,0.11255982726661856,0.1259726562879534,0.14088576320759005,0.15745858483273548,0.17586668163171382,0.1963032745646929,0.21898087690749674,0.2441330850663228,0.27201654240819867,0.3029129846651824,0.3371314949771307,0.3750109314307072,0.416922423594422,0.46327208630020483,0.5145040220963858,0.5711032710853544,0.6335990502644604,0.7025681886843489,0.7786384765950083,0.8624921007175405,0.9548696101750496,1.0565733732470446,1.1684711574200926,1.2914998803990814,1.426668810812225,1.5750620809010412,1.7378420234755894,1.9162511157607067,2.11161284883313,2.3253327560632573,2.5588975240186604,2.8138718425393416,3.091895393562477,3.3946774102877963,3.7239872214189256,4.081644489371469,4.469504405067964,4.889440154125273,5.34332164010697,5.832990144419482,6.3602279966391,6.926724838778012,7.534033763114461,8.183532229800031,8.87637661425418,9.613438397890933,10.395254554748256,11.221970792636114,12.093273214329296,13.008328233432362,13.965753484528248,14.96353644152423,15.998987581674404,17.068731200697933,18.168653400002967,19.29390079110323,20.438922604587432,21.59747221147594,22.76264625565355,23.92698932130794,25.082550769675336,26.221012197947836,27.33383375164139,28.412373997619806,29.4480455195316,30.432481475612217,31.357680790750862,32.21616947888314,33.001137116384825,33.70656314135264,34.32732043250702,34.85925661137806,35.29925658124667,35.64526434595261,35.896286331760244,36.05238415499163,36.11461471370629,36.08498049257754,35.966347121882265,35.7623382775847,35.477244177797786,35.115915402337336,34.683644669184346,34.186068279146255,33.62905845959037,33.01861581068222,32.360787654618264,31.66158758478993,30.9269148123079,30.162502785159255,29.373860172290378,28.566231440180633,27.744564274034506,26.913485986025844,26.077287843957507,25.239916411879182,24.40496983459205,23.575702903547246,22.75503292174014,21.94554911347659,21.149528782070465,20.368950576871814,19.605512170864223,18.860650124658996,18.13555823364072,17.431204588591317,16.748353327948386,16.087580798498696,15.449294004425512,14.833748441592732,14.241064815671972,13.671242323992574,13.124174816583842,12.59966306317606,12.097426865045186,11.617116461795412,11.158323610408777,10.720589527394843,10.303413513265145,9.906261062082963,9.528569517763385,9.169754365067963,8.829214903923127,8.506338670352607,8.200504817619212,7.911088530369597,7.637463512922417,7.379004769758808,7.135090978960604,6.905106881692951,6.688444645686604,6.484505342758339,6.292700783961469,6.112454208337173,5.94320155880933,5.784392439239099,5.635491099523168,5.495976899302741,5.365344994222579,5.243107118871562,5.128791765899933,5.021944716177661,4.92212934576944,4.828926930056062,4.741936633348428,4.660775551079126,4.585078821954214,4.514499333951974,4.44870759576432,4.387391443847318,4.330255753649767,4.277021973127813,4.22742760643098,4.181225780738272,4.138184648410924,4.09808677620794,4.0607285462816085,4.025919540851461,3.9934819074365273,3.9632496741857683,3.9350681109568306,3.9087931382156915,3.884290656474991,3.8614359591743086,3.8401131417949457,3.820214551512506,3.8016402435292105,3.784297445026273,3.7681000680688297,3.752968266669713,3.7388279724655886,3.7256104903805265,3.71325210974095,3.7016937470198816,3.6908806082435914,3.68076186333851,3.671290348668953,3.662422304330119,3.6541171178229135,3.6463370788976377,3.6390471695667768,3.632214859824824,3.625809924905198,3.6198042708193823,3.6141717706015144,3.6088881177101815,3.603930696108097,3.599278451883153,3.594911774230073,3.5908123930503426,3.5869632794991855,3.5833485572995887,3.579953418470759,3.576764044117877,3.573767532782618,3.5709518371148663,3.568305704458774,3.5658186165782952,3.5634807406802396,3.561282881052051,3.5592164354964364,3.557273354853343,3.5554461044845476,3.553727628374185,3.5521113166862723,3.5505909767998785,3.5491608060266655,3.5478153636055767,3.5465495478487714,3.545358573865746,3.544237953008631,3.543183473867921,3.542191184130345,3.541257373508967,3.5403785580312332,3.539551465819516,3.538773024122742,3.5380403467589394,3.5373507214032784,3.5367015994176576,3.536090585533663,3.5355154284915473,3.5349740122065993,3.5344643472999233,3.53398456313223,3.533532900430482,3.5331077045285695,3.5327074191549936,3.532330580592685,3.5319758119104185,3.5316418174051885,3.53132737808268,3.531031346924501,3.530752644745715,3.530490256135958,3.530243225541035,3.530010653592946,3.5297916937265486,3.5295855490692376,3.5293914695561166,3.529208749207192,3.52903672350496,3.528874766831311,3.528722290143096,3.5285787389225782,3.528443591068733,3.528316355182725,3.528196568758337,3.528083796382215,3.5279776280523443,3.5278776776546326,3.527783581588558,3.5276949975036187,3.5276116030986184,3.5275330949458255,3.527459187331579,3.5273896111540313,3.527324113009436,3.5272624543067232,3.5272044101763598,3.5271497690453324,3.5270983319710005,3.5270499117696406,3.5270043321548643,3.5269614269943723,3.5269210397118473,3.5268830228045176,3.526847237415936,3.5268135528978264,3.526781846314528,3.5267520018885037,3.52672391045563,3.5266974690948945,3.5266725811427015,3.5266491549956904,3.526627103796407,3.52660634664577,3.526586808421915,3.5265684188835826,3.5265511117270316,3.5265348239447833,3.5265194955852146,3.5265050698344327,3.5264914932357847,3.5264787158278468,3.5264666910187703,3.526455375123483,3.526444726670338,3.5264347058355563,3.5264252746872935,3.526416398972259,3.5264080424327995,3.526400166259963,3.5263927393654573,3.5263857397500065,3.526379150683395,3.52637295600734,3.5263671369620857,3.526361671421632,3.526356535300463,3.526351705166942,3.5263471607647534,3.5263428862042265,3.526338869039855,3.5263350972989396,3.526331555768964,3.5263282244881338,3.5263250845231604,3.5263221289244306,3.5263193108023407,3.526316569192344,3.5263138906007776,3.526311308904364,3.526308877066116,3.526306637023007,3.5263046017404114,3.5263027537228826,3.526301057220445,3.5262994769739904,3.5262979946027784,3.52629661465133,3.5262953558821533,3.5262942296248134,3.5262932158708127,3.526292259337553,3.5262913230015394,3.5262904272998545,3.5262893721536734,3.5262879577072166,3.52628621485591,3.5262843635321577,3.5262826711579045,3.5262813243827194,3.526280368398709,3.526279723090208,3.5262792540366448,3.526278858941557,3.526278526408963,3.52627833413059,3.526278377483489,3.5262786572675764,3.5262790068364325,3.526279204366637,3.526279324330174,3.526279112832346,3.526278008073158,3.5262759379481685,3.526273354255765,3.5262709025968646,3.526269078815345,3.526268047088433,3.526267660167906,3.5262676287951606,3.526267734966175,3.5262679725056443,3.5262685283233894,3.526269588770407,3.5262710676867717,3.5262725060389117,3.5262735435465737],\"thickness\":2,\"color\":\"#AB63FA\",\"width\":0,\"type\":\"data\",\"opacity\":0.1},\"mode\":\"lines\",\"x\":[0.0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.5,9.0,9.5,10.0,10.5,11.0,11.5,12.0,12.5,13.0,13.5,14.0,14.5,15.0,15.5,16.0,16.5,17.0,17.5,18.0,18.5,19.0,19.5,20.0,20.5,21.0,21.5,22.0,22.5,23.0,23.5,24.0,24.5,25.0,25.5,26.0,26.5,27.0,27.5,28.0,28.5,29.0,29.5,30.0,30.5,31.0,31.5,32.0,32.5,33.0,33.5,34.0,34.5,35.0,35.5,36.0,36.5,37.0,37.5,38.0,38.5,39.0,39.5,40.0,40.5,41.0,41.5,42.0,42.5,43.0,43.5,44.0,44.5,45.0,45.5,46.0,46.5,47.0,47.5,48.0,48.5,49.0,49.5,50.0,50.5,51.0,51.5,52.0,52.5,53.0,53.5,54.0,54.5,55.0,55.5,56.0,56.5,57.0,57.5,58.0,58.5,59.0,59.5,60.0,60.5,61.0,61.5,62.0,62.5,63.0,63.5,64.0,64.5,65.0,65.5,66.0,66.5,67.0,67.5,68.0,68.5,69.0,69.5,70.0,70.5,71.0,71.5,72.0,72.5,73.0,73.5,74.0,74.5,75.0,75.5,76.0,76.5,77.0,77.5,78.0,78.5,79.0,79.5,80.0,80.5,81.0,81.5,82.0,82.5,83.0,83.5,84.0,84.5,85.0,85.5,86.0,86.5,87.0,87.5,88.0,88.5,89.0,89.5,90.0,90.5,91.0,91.5,92.0,92.5,93.0,93.5,94.0,94.5,95.0,95.5,96.0,96.5,97.0,97.5,98.0,98.5,99.0,99.5,100.0,100.5,101.0,101.5,102.0,102.5,103.0,103.5,104.0,104.5,105.0,105.5,106.0,106.5,107.0,107.5,108.0,108.5,109.0,109.5,110.0,110.5,111.0,111.5,112.0,112.5,113.0,113.5,114.0,114.5,115.0,115.5,116.0,116.5,117.0,117.5,118.0,118.5,119.0,119.5,120.0,120.5,121.0,121.5,122.0,122.5,123.0,123.5,124.0,124.5,125.0,125.5,126.0,126.5,127.0,127.5,128.0,128.5,129.0,129.5,130.0,130.5,131.0,131.5,132.0,132.5,133.0,133.5,134.0,134.5,135.0,135.5,136.0,136.5,137.0,137.5,138.0,138.5,139.0,139.5,140.0,140.5,141.0,141.5,142.0,142.5,143.0,143.5,144.0,144.5,145.0,145.5,146.0,146.5,147.0,147.5,148.0,148.5,149.0,149.5,150.0,150.5,151.0,151.5,152.0,152.5,153.0,153.5,154.0,154.5,155.0,155.5,156.0,156.5,157.0,157.5,158.0,158.5,159.0,159.5,160.0,160.5,161.0,161.5,162.0,162.5,163.0,163.5,164.0,164.5,165.0,165.5,166.0,166.5,167.0,167.5,168.0,168.5,169.0,169.5,170.0,170.5,171.0,171.5,172.0,172.5,173.0,173.5,174.0,174.5,175.0,175.5,176.0,176.5,177.0,177.5,178.0,178.5,179.0,179.5,180.0,180.5,181.0,181.5,182.0,182.5,183.0,183.5,184.0,184.5,185.0,185.5,186.0,186.5,187.0,187.5,188.0,188.5,189.0,189.5,190.0,190.5,191.0,191.5,192.0,192.5,193.0,193.5,194.0,194.5,195.0,195.5,196.0,196.5,197.0,197.5,198.0,198.5,199.0,199.5,200.0],\"opacity\":0.8,\"y\":[0.0,0.00011194913080047468,0.00040598656031179143,0.0008376703256462234,0.0013800505197326095,0.0020176482642041715,0.002742576771949693,0.003552048820217533,0.004446782096463347,0.005429986657143545,0.006506730436890724,0.00768355103331523,0.00896822869157335,0.01036966566799031,0.01189783671879737,0.013563788103198852,0.015379670724737792,0.01735879834781037,0.01951572529559968,0.021866340294378183,0.024427974639170562,0.027219523771590006,0.03026158217769112,0.03357659177505161,0.03718900449174302,0.041125459806368524,0.045414978361154795,0.050089172893279924,0.055182477775435876,0.060732398876608334,0.06677978507292359,0.0733691235659295,0.08054886099655825,0.08837175196802911,0.0968952381044652,0.10618185934682853,0.11629969973330158,0.12732287282386462,0.1393320465106656,0.15241501269348143,0.16666730569766408,0.18219286906204468,0.19910477849363184,0.2175260279536218,0.2375903722584052,0.25944324264527796,0.2832427362608791,0.30916067237377703,0.3373837375782087,0.3681147284394683,0.40157386371212,0.4380002108776696,0.47765321744024186,0.5208143197321243,0.5677886754105557,0.6189070493351019,0.6745277492229443,0.7350387209856553,0.8008597782297986,0.8724448897349654,0.950284572305391,1.0349085348520266,1.1268882659447468,1.22683975512224,1.3354263692540427,1.4533616797151312,1.581412187644591,1.7204004120578893,1.8712076891070017,2.0347767656109452,2.212114566580304,2.4042945279631547,2.612458325214114,2.8378177983687265,3.0816562562556107,3.3453286080918203,3.630261521029639,3.93795216952106,4.269965836006609,4.627932585133513,5.013542731215874,5.428540041587306,5.874713964740482,6.353888647717286,6.867911534110764,7.418639433460619,8.007919880924188,8.637572945316975,9.30936997298731,10.02500780332101,10.786081994615888,11.594065409584225,12.45027144810841,13.355822713021634,14.311625867472777,15.318333286994967,16.376312752355282,17.485630314971317,18.646015107395296,19.856833701243335,21.117083841619174,22.425370338734943,23.779902008595613,25.178505441654192,26.618618547699214,28.09730812935762,29.61129847762783,31.156991454670397,32.73050790107003,34.32773649036465,35.944365568574746,37.575942642705705,39.21792054100877,40.86570988275961,42.51473475590469,44.16048288112916,45.79854806404865,47.42468010518654,49.03481870221175,50.6251307597014,52.19203883486392,53.73224343234833,55.24274010012577,56.72083131107204,58.16413240746289,59.57057447194458,60.93839772119496,62.266147193327136,63.55266263582201,64.79706264236094,65.99873211343527,67.15730425687589,68.2726400440695,69.3448106620266,70.37407907831567,71.36087788459089,72.30579272731887,73.20954286141836,74.07296178975933,74.89698120737135,75.68261613656506,76.43094784181825,77.14311215530479,77.82028617826543,78.46367612786466,79.07450727184718,79.65401578536145,80.20343905973179,80.72400979317138,81.2169493752743,81.68346224116344,82.12473108846959,82.54191390199453,82.93613997101075,83.30850773605735,83.66008278406981,83.99189620314033,84.30494312851414,84.60018247821375,84.87853642510643,85.1408900210615,85.388091691112,85.62095340777378,85.84025105396404,86.04672513802734,86.24108179970553,86.42399338874291,86.59609962704249,86.7580085947936,86.9102977848222,87.05351508688284,87.18818003531294,87.31478496126888,87.43379596634816,87.54565420761472,87.65077693267409,87.74955856399716,87.84237171491695,87.92956831131288,88.01148058930457,88.08842200219274,88.16068825864983,88.22855818938842,88.29229462473937,88.35214520955297,88.40834325363831,88.46110850633525,88.51064784677894,88.55715604170119,88.60081639316022,88.64180138240587,88.68027325852876,88.7163846318076,88.75027903709965,88.78209142711452,88.81194867724814,88.83997005897578,88.86626767629674,88.89094687858388,88.91410665284407,88.93584000964667,88.95623433502779,88.97537170915315,88.99332923623403,89.01017933482316,89.02599001872854,89.04082515571503,89.05474471613282,89.06780501313105,89.08005892178691,89.09155607902794,89.10234308723977,89.11246369510515,89.12195897085205,89.13086746300284,89.13922535259476,89.14706660006736,89.15442308159298,89.16132471251116,89.16779956748535,89.17387399613754,89.17957272577665,89.18491896148451,89.1899344779364,89.19463970752813,89.19905382413205,89.20319482025023,89.2070795776011,89.21072393629463,89.214142760076,89.21734999498739,89.22035872627036,89.22318123067411,89.22582902637902,89.22831292040094,89.23064305262838,89.23282893619262,89.23487949565357,89.23680310471627,89.23860761933359,89.24030040984053,89.24188839074559,89.24337804869704,89.24477546908966,89.24608636113817,89.24731608114433,89.24846965394806,89.24955179318152,89.25056692119952,89.2515191867295,89.25241248177171,89.25325045744565,89.25403653878419,89.2547739387638,89.2554656715444,89.25611456484404,89.25672327141132,89.25729427968389,89.257829923934,89.2583323941368,89.25880374466335,89.259245902701,89.2596606760889,89.26004976066973,89.26041474724971,89.26075712815155,89.26107830334556,89.26137958615867,89.26166220858794,89.26192732628382,89.26217602332133,89.26240931674403,89.26262816058565,89.2628334498091,89.26302602392295,89.26320667040838,89.2633761279637,89.2635350895508,89.26368420524037,89.26382408486373,89.26395530048771,89.26407838873493,89.26419385297555,89.26430216541782,89.26440376905903,89.26449907944884,89.26458848641242,89.26467235560236,89.26475102999363,89.26482483130862,89.26489406135337,89.26495900325973,89.26501992263788,89.26507706865003,89.26513067501854,89.26518096097998,89.26522813219168,89.26527238158845,89.26531389016648,89.26535282770546,89.2653893535071,89.26542361697874,89.26545575822365,89.26548590864037,89.26551419149321,89.26554072243638,89.26556560998763,89.26558895595765,89.26561085584757,89.265631399227,89.26565067010318,89.26566874728266,89.26568570471623,89.2657016117998,89.26571653359348,89.26573053120819,89.26574366206577,89.26575597990379,89.26576753497487,89.26577837434316,89.26578854217908,89.26579808000108,89.26580702684907,89.26581541940149,89.26582329206305,89.26583067705573,89.26583760454096,89.26584410278402,89.26585019834727,89.26585591626055,89.2658612800712,89.26586631166536,89.26587103205057,89.2658754615409,89.26587961853414,89.26588351938656,89.26588717893476,89.26589061113008,89.265893829486,89.26589684722703,89.26589967716559,89.26590233142477,89.26590482116582,89.26590715647356,89.26590934649755,89.26591139984367,89.26591332505883,89.26591513085162,89.26591682543108,89.26591841517067,89.2659199103047,89.26592132236587,89.26592265758833,89.26592391686347,89.26592509872009,89.26592620253118,89.26592723045478,89.26592818764223,89.2659290809935,89.2659299172066,89.26593070105608,89.26593143474356,89.26593211879339,89.26593275431541,89.26593334552821,89.26593390022688,89.2659344243004,89.26593491731778,89.2659353992888,89.26593589056266,89.26593639015475,89.2659368793615,89.2659373347501,89.26593774004544,89.2659380918549,89.26593839832323,89.26593867269634,89.26593892539434,89.26593915854963,89.26593936605659,89.26593954000394,89.26593968092102,89.26593980456279,89.26593993197389,89.26594005771307,89.26594020229312,89.26594041254393,89.26594069555698,89.26594101525069,89.26594131911165,89.26594156635439,89.2659417430663,89.26594186088951,89.26594194343764,89.26594200895538,89.26594205869701,89.26594207813321,89.26594205238781,89.26594198826166,89.26594192281682,89.26594188618579]}],\"layout\":{\"showlegend\":true,\"xaxis\":{\"autorange\":true,\"title\":\"Time (Days)\",\"type\":\"linear\"},\"annotations\":[],\"title\":\"Covid-19 SEIR Model with Error Bars\",\"yaxis\":{\"autorange\":false,\"range\":[0,100],\"title\":\"%\",\"type\":\"linear\"},\"shapes\":[],\"legend\":{}}},\"1.5\":{\"config\":{\"responsive\":true},\"data\":[{\"name\":\"Susceptible\",\"line\":{\"color\":\"#636EFA\"},\"error_y\":{\"array\":[0.0,8.255408033883176e-5,0.0002958856103449727,0.0006111373887850867,0.0010193498047212173,0.0015233811162580525,0.002133491438218192,0.00286504989147077,0.0037374650838660132,0.00477382076672743,0.006000924031399063,0.007449605176056501,0.009155184242855698,0.011158062572869101,0.013504422288590088,0.01624703065561009,0.01944615450453798,0.02317059491437841,0.027498855906588175,0.03252046351843641,0.038337453746225915,0.04506605055571237,0.05283855702986849,0.06180548568106144,0.07213795578493579,0.08403038860733084,0.09770353645775375,0.11340787952356773,0.13142743638195914,0.15208401904347557,0.17574199809314558,0.20281360889910868,0.23376486159263624,0.2691221123091447,0.3094793045708288,0.35550602752543103,0.4079563347523071,0.4676784472702282,0.5356253723637276,0.6128662935941604,0.7005990995620788,0.8001636430905937,0.9130559007604283,1.0409430230289727,1.1856784597926793,1.349318027949759,1.5341357741363253,1.7426391704396618,1.9775840232290027,2.2419863354737144,2.5391320880263404,2.872584054334319,3.246180968241467,3.6640320389502388,4.130500051160732,4.650171063830447,5.227815358292542,5.8683232087083095,6.576625130826405,7.357585305434099,8.215859923503919,9.15573695265234,10.180931055722901,11.294348193458125,12.497816048395476,13.791774218390106,15.174949924706956,16.644015167684852,18.193241771583228,19.814177388985943,21.495371279500038,23.222176203059686,24.97665059207621,26.737624015386906,28.48090380410752,30.179702202887555,31.80534339028165,33.32801054135617,34.71784791732959,35.946098685756326,36.9863417909626,37.81577967755542,38.41633128670509,38.775558370109835,38.88733058523557,38.752117908354464,38.37694392578346,37.77495004103103,36.964636508706576,35.968848840914255,34.81360136828412,33.52681611815759,32.13709387633907,30.672603807466796,29.160116015772342,27.624265808392646,26.087010957355677,24.5673157015008,23.08103680240604,21.640951003600232,20.256925972395017,18.93616456738296,17.683508617382344,16.501774305488745,15.392080359075596,14.354170629326596,13.38670407581116,12.487516985648712,11.653847151932705,10.8825238508453,10.17012370159766,9.51309504385511,8.907856183471937,8.350870172571351,7.838698105343234,7.3680389394404635,6.935753886906021,6.53888184732959,6.174647392129662,5.840461452822568,5.533918157685277,5.252789124829566,4.995014669884242,4.758694565136179,4.542078230089959,4.343553825881486,4.1616382856773955,3.9949673853109493,3.8422862219862615,3.70244054398087,3.57436877098172,3.457094207366227,3.3497183818947076,3.251414746534594,3.1614229338996673,3.0790436278493294,3.0036339362195856,2.9346029313918,2.8714077574126193,2.81355002310341,2.7605723756000136,2.712055423638372,2.667614901590406,2.626898935835862,2.589585511653803,2.5553802064527837,2.524013935482838,2.495240942167902,2.4688369049043004,2.4445971808698137,2.4223351227997734,2.401880574075389,2.3830784602889996,2.3657874604916236,2.3498788114292823,2.335235206166108,2.321749772065372,2.3093251184981782,2.297872496090655,2.287311010632663,2.277566901311948,2.2685728934683365,2.260267610093172,2.252595032355132,2.2455040011607235,2.2389477780333817,2.2328836448096214,2.227272529590933,2.2220786798812413,2.2172693619989583,2.212814591232457,2.2086868814248737,2.204861020621479,2.2013138737263613,2.1980241951085544,2.1949724633236767,2.192140730652824,2.189512487776903,2.187072540074022,2.1848068932580706,2.182702651470172,2.18074792687984,2.178931752991788,2.177244008682126,2.1756753483953,2.1742171390698997,2.1728614024362316,2.1716007613192025,2.170428391090908,2.169337976663603,2.1683236720777033,2.167380062718473,2.1665021324292804,2.165685232371378,2.1649250530802187,2.164217598365707,2.163559161083294,2.162946301236193,2.1623758263549453,2.1618447728171635,2.161350388361658,2.16089011684911,2.1604615836453003,2.160062582451888,2.1596910629902557,2.1593451194860047,2.1590229801006613,2.158722997386464,2.1584436395121016,2.1581834816755263,2.157941198509547,2.157715557064584,2.1575054102188416,2.1573096906494835,2.1571274051719485,2.1569576294477746,2.156799503101165,2.1566522252640055,2.156515050488467,2.1563872848321424,2.1562682821425443,2.156157440849556,2.1560542008237165,2.1559580405210665,2.1558684743116467,2.1557850499732463,2.1557073463554626,2.1556349712204357,2.1555675592581576,2.1555047702558903,2.1554462873730693,2.155391815469556,2.1553410796438985,2.1552938238477615,2.155249809590871,2.1552088147428576,2.155170632404152,2.1551350698506817,2.155101947553886,2.1550710982743926,2.1550423662244005,2.155015606290685,2.1549906833068713,2.1549674713605804,2.154945853146551,2.1549257193977986,2.154906968326727,2.154889505124581,2.1548732414847356,2.1548580951516874,2.154843989500842,2.154830853150268,2.1548186196027754,2.154807226914905,2.1547966173886084,2.1547867372817464,2.154777536534815,2.1547689685137015,2.1547609897764537,2.1547535598586265,2.154746641059747,2.1547401982733216,2.1547341988135087,2.154728612242439,2.154723410207621,2.1547185662938357,2.154714055890125,2.154709856069855,2.1547059454803974,2.15470230423874,2.1546989138302886,2.1546957570102565,2.154692817710381,2.154690080958264,2.1546875328207187,2.1546851602913963,2.154682951224488,2.154680894350173,2.1546789792262344,2.1546771961565074,2.1546755361075762,2.154673990640828,2.154672551865631,2.1546712124111513,2.1546699654090453,2.154668804477053,2.154667723694283,2.1546667175628205,2.154665780957118,2.154664909072493,2.1546640973969553,2.1546633417519794,2.1546626382639196,2.1546619828755533,2.1546613718197136,2.15466080201993,2.154660271012066,2.154659776674054,2.1546593169563715,2.1546588897164156,2.154658492689086,2.1546581235735363,2.15465778018236,2.1546574605842914,2.154657163174925,2.154656886631956,2.1546566297519867,2.154656391225107,2.154656169481152,2.154655962837829,2.154655770338263,2.154655590035856,2.1546554158720435,2.1546552438469613,2.154655074676131,2.1546549125337555,2.1546547624530996,2.1546546279988177,2.1546545100320706,2.1546544067652595,2.1546543148491373,2.154654230951029,2.154654153168798,2.154654081681133,2.1546540182606115,2.154653964671915,2.1546539205434097,2.154653882036202,2.1546538435406135,2.154653805695714,2.154653763368009,2.1546536820445192,2.1546535410191163,2.154653351293445,2.1546531462040015,2.154652963259252,2.154652828556678,2.154652749293098,2.1546527153377535,2.1546527076064907,2.154652709056849,2.1546527135181073,2.1546527282771684,2.154652768360751,2.1546528437865904,2.154652945701263,2.154653043279877,2.154653110755623,2.15465316846811,2.154653145103362,2.154652933757862,2.1546525244893493,2.1546520049410622,2.154651501947342,2.1546511193767244,2.154650901346513,2.1546508295003113,2.154650848277039,2.154650903016625,2.1546509723437453,2.154651078546787,2.1546512676245624,2.1546515643082116,2.1546519266802755,2.15465225000696,2.154652492659619,2.1546526806418336,2.154652647774092,2.1546522806074293,2.1546516426992386,2.154650916161705,2.1546502919552917,2.1546498852605196,2.154649707501984,2.154649693439078,2.1546497601782306,2.1546498650016166,2.154650030547163,2.1546503191143764,2.1546507627099762,2.154651291886588,2.15465175446681,2.154652120103063,2.154652374815355,2.1546523715851276,2.1546520681730295,2.1546515683948257,2.154651043199738,2.1546506367137526,2.15465041133731,2.1546503467828244,2.154650380602773,2.154650462293587,2.1546505894641985,2.1546508028309943,2.1546511369429475,2.1546515555519523,2.154651944422393,2.154652242764819,2.1546524687618316,2.154652639945658],\"thickness\":2,\"color\":\"#636EFA\",\"width\":0,\"type\":\"data\",\"opacity\":0.1},\"mode\":\"lines\",\"x\":[0.0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.5,9.0,9.5,10.0,10.5,11.0,11.5,12.0,12.5,13.0,13.5,14.0,14.5,15.0,15.5,16.0,16.5,17.0,17.5,18.0,18.5,19.0,19.5,20.0,20.5,21.0,21.5,22.0,22.5,23.0,23.5,24.0,24.5,25.0,25.5,26.0,26.5,27.0,27.5,28.0,28.5,29.0,29.5,30.0,30.5,31.0,31.5,32.0,32.5,33.0,33.5,34.0,34.5,35.0,35.5,36.0,36.5,37.0,37.5,38.0,38.5,39.0,39.5,40.0,40.5,41.0,41.5,42.0,42.5,43.0,43.5,44.0,44.5,45.0,45.5,46.0,46.5,47.0,47.5,48.0,48.5,49.0,49.5,50.0,50.5,51.0,51.5,52.0,52.5,53.0,53.5,54.0,54.5,55.0,55.5,56.0,56.5,57.0,57.5,58.0,58.5,59.0,59.5,60.0,60.5,61.0,61.5,62.0,62.5,63.0,63.5,64.0,64.5,65.0,65.5,66.0,66.5,67.0,67.5,68.0,68.5,69.0,69.5,70.0,70.5,71.0,71.5,72.0,72.5,73.0,73.5,74.0,74.5,75.0,75.5,76.0,76.5,77.0,77.5,78.0,78.5,79.0,79.5,80.0,80.5,81.0,81.5,82.0,82.5,83.0,83.5,84.0,84.5,85.0,85.5,86.0,86.5,87.0,87.5,88.0,88.5,89.0,89.5,90.0,90.5,91.0,91.5,92.0,92.5,93.0,93.5,94.0,94.5,95.0,95.5,96.0,96.5,97.0,97.5,98.0,98.5,99.0,99.5,100.0,100.5,101.0,101.5,102.0,102.5,103.0,103.5,104.0,104.5,105.0,105.5,106.0,106.5,107.0,107.5,108.0,108.5,109.0,109.5,110.0,110.5,111.0,111.5,112.0,112.5,113.0,113.5,114.0,114.5,115.0,115.5,116.0,116.5,117.0,117.5,118.0,118.5,119.0,119.5,120.0,120.5,121.0,121.5,122.0,122.5,123.0,123.5,124.0,124.5,125.0,125.5,126.0,126.5,127.0,127.5,128.0,128.5,129.0,129.5,130.0,130.5,131.0,131.5,132.0,132.5,133.0,133.5,134.0,134.5,135.0,135.5,136.0,136.5,137.0,137.5,138.0,138.5,139.0,139.5,140.0,140.5,141.0,141.5,142.0,142.5,143.0,143.5,144.0,144.5,145.0,145.5,146.0,146.5,147.0,147.5,148.0,148.5,149.0,149.5,150.0,150.5,151.0,151.5,152.0,152.5,153.0,153.5,154.0,154.5,155.0,155.5,156.0,156.5,157.0,157.5,158.0,158.5,159.0,159.5,160.0,160.5,161.0,161.5,162.0,162.5,163.0,163.5,164.0,164.5,165.0,165.5,166.0,166.5,167.0,167.5,168.0,168.5,169.0,169.5,170.0,170.5,171.0,171.5,172.0,172.5,173.0,173.5,174.0,174.5,175.0,175.5,176.0,176.5,177.0,177.5,178.0,178.5,179.0,179.5,180.0,180.5,181.0,181.5,182.0,182.5,183.0,183.5,184.0,184.5,185.0,185.5,186.0,186.5,187.0,187.5,188.0,188.5,189.0,189.5,190.0,190.5,191.0,191.5,192.0,192.5,193.0,193.5,194.0,194.5,195.0,195.5,196.0,196.5,197.0,197.5,198.0,198.5,199.0,199.5,200.0],\"opacity\":0.8,\"y\":[99.99,99.98966384542236,99.98877734641373,99.98746549051697,99.98579834438726,99.98381024086105,99.98151178743649,99.97889732429543,99.97594949152096,99.9726419527228,99.96894093507315,99.96480600070215,99.96019030945149,99.95504053466517,99.94929653135964,99.94289081642258,99.93574789501285,99.92778345093048,99.91890340789288,99.90900286139282,99.89796487586729,99.88565913795458,99.87194045393137,99.85664707675205,99.83959884628796,99.82059512421209,99.79941250198249,99.77580226063715,99.74948755525253,99.72016030241079,99.68747773411981,99.65105859452791,99.61047894229185,99.5652675222656,99.51490068775908,99.45879680075899,99.39631011238966,99.32672405717021,99.2492439266773,99.16298894969972,99.0669836213549,98.96014839469849,98.84128964434872,98.7090888713142,98.56209138816564,98.39869416049937,98.21713313998612,98.01547021104982,97.79157958171325,97.54313447490563,97.26759380186017,96.96218903884237,96.62391283354327,96.24950836181296,95.83546160985593,95.37799735467311,94.87307736753482,94.3164063406544,93.70344269413923,93.02941818135702,92.28936985803756,91.47817933983762,90.59062932978242,89.62147394061243,88.56552528956581,87.41776253500785,86.1734549893435,84.82830561157071,83.37861393769093,81.82145152048172,80.15485126803313,78.37800002883164,76.49142745326897,74.49718322837289,72.39899228103303,70.20237318168009,67.91469077914894,65.54518459408149,63.10489102230956,60.606510164114205,58.06419710228544,55.493248530254924,52.909763598412326,50.330244275858426,47.77115690785812,45.24851344758162,42.77743767739554,40.371799160208624,38.043914292678814,35.804301909817774,33.6615475994752,31.622229689724023,29.690939668772437,27.870377370423284,26.16149223613605,24.56367768685356,23.074982863854547,21.69234139827442,20.411800527732783,19.228736460730808,18.13805436306461,17.134363705650486,16.212129903380234,15.365799072921233,14.589899250604827,13.879117708765934,13.228358143618868,12.632782080977254,12.087832913062446,11.589249891658735,11.13307229943874,10.715635857650241,10.333564740582538,9.983759520570525,9.663381773142552,9.369838492085012,9.100764603789049,8.854006026538112,8.627603129096826,8.419774307423427,8.228900553921823,8.053511178388199,7.892270125362129,7.743963630418289,7.607488907154887,7.481843497317252,7.366115836991455,7.259476587467686,7.161170742300982,7.0705105730808695,6.98686928114033,6.9096751166780175,6.838406236683717,6.77258599552149,6.71177870022418,6.655585821549867,6.603642599493148,6.555614904927562,6.511196476413317,6.470106420855324,6.432086923038114,6.396901211018586,6.364331725469179,6.334178432160517,6.306257298249928,6.280398947289388,6.256447390108898,6.234258906357386,6.213701021314353,6.1946515787452245,6.17699787828947,6.160635910124794,6.145469652335455,6.131410419344635,6.118376277973639,6.106291513353084,6.0950861368641585,6.084695429616767,6.0750595358599435,6.066123083619921,6.057834834752325,6.050147367734153,6.043016786414073,6.036402450751487,6.030266725780672,6.024574755698874,6.019294255173852,6.014395312645673,6.009850213828075,6.005633277126988,6.00172070285387,5.998090431691235,5.994722014935676,5.991596496998985,5.988696303464147,5.986005139399718,5.9835078951052285,5.981190559375298,5.979040138943178,5.9770445831095005,5.975192714741654,5.973474167287178,5.971879324687229,5.970399266874182,5.969025719041218,5.9677510048434455,5.96656800298543,5.9654701065752915,5.964451185633313,5.963505552874226,5.9626279315731345,5.96181342544924,5.961057491421149,5.960355913939153,5.959704781433487,5.959100464300674,5.958539594379541,5.958019046052887,5.9575359189206605,5.9570875214904815,5.9566713559301085,5.956285104263291,5.955926615336113,5.955593892850805,5.955285084205234,5.954998470079809,5.954732454799011,5.95448555747333,5.954256403803082,5.9540437182938,5.953846317163159,5.953663101768038,5.953493052465183,5.953335222948705,5.95318873496911,5.953052773413924,5.9529265817499395,5.952809457822156,5.9527007499746,5.952599853405863,5.952506206753083,5.952419289015911,5.952338616638348,5.952263740824419,5.952194245043276,5.95212974270485,5.9520698749989425,5.952014308893445,5.951962735285384,5.951914867291828,5.951870438656217,5.951829202242482,5.95179092867201,5.951755405051495,5.9517224337863865,5.951691831484747,5.951663427935949,5.951637065160707,5.951612596529359,5.951589885945142,5.951568807088612,5.9515492427181895,5.951531084020177,5.951514229999453,5.951498586911164,5.951484067748531,5.951470591755665,5.951458083980757,5.951446474859735,5.951435699828035,5.95142569895987,5.951416416633933,5.951407801223923,5.951399804812095,5.951392382923748,5.951385494280599,5.951379100570981,5.951373166235059,5.951367658265785,5.951362546028233,5.951357801086821,5.951353397050761,5.9513493094282115,5.951345515488608,5.951341994134425,5.951338725782673,5.951335692255854,5.9513328766815325,5.951330263399503,5.95132783787544,5.951325586620097,5.951323497113485,5.951321557734053,5.95131975769367,5.951318086980758,5.951316536298745,5.951315097013321,5.9513137611171745,5.951312521187162,5.951311370338418,5.951310302180439,5.951309310777781,5.951308390616231,5.951307536573943,5.9513067438961595,5.9513060081717875,5.951305325310219,5.951304691517357,5.9513041032709495,5.951303557296867,5.951303050550065,5.951302580207299,5.951302143652832,5.951301738397342,5.951301362129816,5.951301012762982,5.951300688414191,5.9513003873604555,5.951300107993795,5.951299848790926,5.951299608301764,5.951299385154186,5.95129917806784,5.951298985867774,5.951298807489024,5.951298641966201,5.9512984884075175,5.951298345960584,5.9512982137876556,5.951298091080915,5.9512979771680605,5.951297871319086,5.9512977723608955,5.9512976793795715,5.9512975920294835,5.951297510393407,5.9512974346865475,5.951297364988957,5.951297301100656,5.951297242542888,5.951297188677208,5.951297138881628,5.951297092709824,5.951297049965378,5.951297010648223,5.951296974774917,5.951296942138025,5.951296912152774,5.951296884041274,5.951296857715929,5.95129683261667,5.951296805239628,5.951296773391344,5.951296737992271,5.9512967021861405,5.951296669568787,5.951296642654964,5.951296622128956,5.951296606980033,5.951296595306839,5.951296585385788,5.951296576537397,5.9512965693911815,5.951296565344401,5.9512965653323775,5.951296568478545,5.951296571770603,5.951296572632845,5.951296572917245,5.951296566598077,5.951296544363125,5.951296505177446,5.951296456453033,5.951296409079211,5.951296372074075,5.951296349378985,5.951296339564595,5.951296337948135,5.9512963398378,5.9512963433208395,5.951296350197687,5.951296364334838,5.951296387864435,5.951296417298543,5.951296443750893,5.9512964634286565,5.951296478612168,5.951296476663353,5.95129644873943,5.951296399542754,5.951296342983222,5.951296293814193,5.951296261105784,5.951296246008179,5.951296243725452,5.951296247967744,5.951296255376079,5.951296267519896,5.951296289052461,5.951296322473537,5.951296362692397,5.951296398207009,5.95129642626811,5.951296446124295,5.951296447673831,5.9512964279108544,5.951296393949923,5.951296357665648,5.9512963292049355,5.951296313129677,5.951296308256506,5.951296310377359,5.951296315970145,5.9512963247427715,5.951296339396099,5.951296362342202,5.951296391273373,5.951296418444874,5.95129643938855,5.95129645526251,5.951296467289311]},{\"name\":\"Exposed\",\"line\":{\"color\":\"#EF553B\"},\"error_y\":{\"array\":[0.0,0.00015037153360465328,0.00016176532530612377,0.00012008398864905507,0.00019077096350221518,0.00039472812009099553,0.0006739953266413817,0.001021542514839015,0.0014428764260315645,0.0019479716779933372,0.0025496536089814107,0.003263219339232501,0.0041064562293455205,0.005099841960684877,0.006266851904322922,0.007634345129225615,0.00923301908360655,0.011097931805069884,0.013269095379142483,0.015792147166036805,0.018719106968612384,0.02210923036269157,0.02602996914092656,0.030558051683414814,0.03578069627564531,0.04179697191897616,0.048719325043619824,0.056675285394277686,0.06580937661244354,0.07628523497351819,0.08828798081651114,0.10202684011461419,0.11773805105672105,0.13568808116529554,0.15617711585709873,0.1795429538652414,0.20616518454015434,0.2364697524163364,0.27093389940089346,0.3100912525225774,0.3545374906035764,0.404936039516796,0.46202400365119467,0.5266183359684249,0.5996212425713131,0.6820260224514507,0.7749220106387731,0.8794982356300381,0.997046579065364,1.1289612847117154,1.2767365830120263,1.4419619956523515,1.626310138871322,1.831521985554421,2.0593821987666927,2.3116835243186813,2.5901882234793687,2.8965674390369784,3.2323335007486875,3.5987533356197967,3.9967350662771413,4.426712413800328,4.888495582419171,5.381110040218082,5.902620200360041,6.449930505801814,7.018597003237789,7.602641030715496,8.194380472984724,8.784300423470468,9.360987634472764,9.911147777590898,10.419717674373361,10.870132200563717,11.244695009379859,11.525132702263317,11.69339783864812,11.732386494738407,11.626992413432271,11.365091974345738,10.938579315150342,10.344462354715715,9.585810751383377,8.672811420714865,7.624257457579669,6.470382807825197,5.260010744990751,4.080750372951121,3.1155197552094216,2.72058413058698,3.1543011375150067,4.146890708187528,5.353224887360382,6.601327373874093,7.811715454684243,8.942466267695202,9.9692000307742,10.87757268476499,11.65997615120061,12.3137928930065,12.840231698519869,13.243457657694794,13.529866125600378,13.707452103150041,13.785284385956404,13.77304890994303,13.680681064479874,13.518065439122443,13.294804897660315,13.02004822424041,12.702369266607642,12.34968981855454,11.9692366290637,11.5675262048487,11.150373455492717,10.722912982631437,10.289634671047535,9.854425211997459,9.420613405683403,8.991019271600276,8.56800276819894,8.153510735132388,7.749123192307625,7.356095949685264,6.9754000634776565,6.607759292255362,6.253683200412559,5.9134974591676635,5.587371187111085,5.275341006920249,4.977332273754305,4.6931784134961365,4.422637252899627,4.1654055777943055,3.921131795520074,3.6894267431624357,3.4698728983452423,3.2620325952987943,3.065454744197487,2.8796805400278016,2.704248403360412,2.53869796333209,2.38257330127972,2.2354257388349423,2.096816074915459,1.9663162059319343,1.8435105898195265,1.727997218843684,1.6193883421245558,1.5173109355596444,1.4214070615224284,1.3313339563826636,1.2467640040543666,1.1673846440988178,1.0928981302251315,1.023021213010952,0.9574847820113617,0.8960334909891031,0.8384252859991667,0.7844309432797674,0.733833598508239,0.6864282441648389,0.642021220161618,0.6004297136057793,0.5614812803075252,0.5250133443546446,0.4908727117299949,0.45891511977239,0.42900477312734114,0.4010139040895998,0.37482234254159463,0.35031711574946656,0.32739205854920667,0.30594742644421286,0.28588954531610483,0.2671304667347988,0.24958764109183837,0.23318360375089142,0.21784567895830562,0.203505703910036,0.19009976247499125,0.17756792764456164,0.16585402867515103,0.1549054239260463,0.14467278787782434,0.13510990868798137,0.1261734976283193,0.11782301212790251,0.11002048784537759,0.10273037707057239,0.09591939932237878,0.08955640285572877,0.08361223004502753,0.07805959340953511,0.07287295742710917,0.06802842869118597,0.06350365347067455,0.0592777205633546,0.055331068716951544,0.05164540138578702,0.04820360754777411,0.044989685102617055,0.04198867057303104,0.03918657230168973,0.036570308257302835,0.03412764815672668,0.03184715904729064,0.029718153696515835,0.027730642078356117,0.025875287229739828,0.02414336295096124,0.022526714137620835,0.0210177199035216,0.01960925880883278,0.018294676511057765,0.01706775562150355,0.01592268742973708,0.014854045222299246,0.013856759169733317,0.012926093169537467,0.012057623428877874,0.011247217719361399,0.010491016443131352,0.009785414736213416,0.009127045769522649,0.008512765200430759,0.00793963665643909,0.007404918127673661,0.00690604917344046,0.006440638909870907,0.006006454840904391,0.005601412620920535,0.0052235662121992545,0.004871098749207174,0.004542314026248426,0.004235628513638843,0.003949563933475242,0.0036827403351317547,0.0034338696196693956,0.0032017494726500396,0.0029852576762795166,0.0027833467843232755,0.0025950391569390966,0.002419422367069271,0.0022556449192975858,0.002102912146232058,0.001960482461430459,0.0018276638054554896,0.00170381035261545,0.0015883194534796654,0.0014806287798053137,0.0013802136498782646,0.0012865845208845249,0.0011992846407832118,0.0011178878552641396,0.0010419965657180847,0.0009712398317688524,0.0009052716067590003,0.0008437690743206524,0.0007864310837062923,0.000732976727437242,0.0006831439470133912,0.0006366882631451311,0.0005933816153004064,0.0005530112823758103,0.0005153788678245775,0.0004802993414427561,0.00044760013623000003,0.0004171203023030873,0.000388709720752889,0.0003622283785943392,0.00033754570157802714,0.0003145399345921502,0.0002930975496500298,0.0002731126544476345,0.0002544865483314468,0.00023712725104652697,0.00022094892555121523,0.00020587144366607257,0.0001918200422429629,0.00017872501526107045,0.00016652141109351525,0.00015514872303486212,0.0001445505750408685,0.0001346744135108974,0.00012547121984313655,0.00011689525741681396,0.00010890386060671892,0.00010145726241762324,9.451844133973553e-5,8.805294707932762e-5,8.20286315716667e-5,7.641547769055534e-5,7.118611295331763e-5,6.631502449783561e-5,6.177785939551577e-5,5.755137932488879e-5,5.361368580496492e-5,4.994445751024813e-5,4.652506021111124e-5,4.3338484181152193e-5,4.0369133709683434e-5,3.760253865111306e-5,3.502507859909844e-5,3.262380624295452e-5,3.0386427840819257e-5,2.8301445599929035e-5,2.6358389027751843e-5,2.4547959984930677e-5,2.286178950765618e-5,2.1291311276098735e-5,1.982958916137969e-5,1.8475040785386182e-5,1.722446119710057e-5,1.606992350981263e-5,1.5000065362468397e-5,1.4002904399721685e-5,1.3068424522182267e-5,1.219000665381288e-5,1.1364420855459542e-5,1.0590616106168809e-5,9.867912692302795e-6,9.194359267627198e-6,8.565947214883535e-6,7.977112934687426e-6,7.422520394325311e-6,6.8994650160405e-6,6.4093677867048795e-6,5.955845148527606e-6,5.5358815766250314e-6,5.151454305323589e-6,4.834370183887189e-6,4.606498961755662e-6,4.462660719775356e-6,4.372607232701335e-6,4.292541239008787e-6,4.183952291103688e-6,4.029447360100721e-6,3.8358547768302094e-6,3.6245640547791693e-6,3.416200727676288e-6,3.2178850230568665e-6,3.019002420781285e-6,2.798474637687625e-6,2.5425228134362256e-6,2.2639816373368744e-6,2.0039637052120697e-6,1.7934342517321167e-6,1.6063173724478838e-6,1.513748873321094e-6,1.6529842920695578e-6,2.1184447609944913e-6,2.8232236643978156e-6,3.547588335851405e-6,4.101304081951792e-6,4.400317073752469e-6,4.468432769031088e-6,4.39318694558237e-6,4.26230494589997e-6,4.110306189966914e-6,3.901125527010978e-6,3.5601592274456713e-6,3.0473983406104115e-6,2.4313300843980125e-6,1.8817161772694895e-6,1.465941272665385e-6,1.1413115940789192e-6,1.1569032296248683e-6,1.7052891245223258e-6,2.7070186172321156e-6,3.863523193266594e-6,4.859733340697682e-6,5.50623181278435e-6,5.783093419199477e-6,5.795288425242006e-6,5.676853574308689e-6,5.497084931306453e-6,5.219562999298096e-6,4.743534364724063e-6,4.017061780280925e-6,3.1522901859410584e-6,2.39538540145998e-6,1.796304605816721e-6,1.3767133080417076e-6,1.371045598116638e-6,1.8495839710826046e-6,2.6475109883466407e-6,3.488609567636973e-6,4.13966914490422e-6,4.4995160312333695e-6,4.6004450419563225e-6,4.542888579184746e-6,4.408233424461074e-6,4.2004752113263845e-6,3.854140653199497e-6,3.3135327493867974e-6,2.636814871122213e-6,2.00782243484069e-6,1.524805022056021e-6,1.1585851080025034e-6,8.808903835794051e-7],\"thickness\":2,\"color\":\"#EF553B\",\"width\":0,\"type\":\"data\",\"opacity\":0.1},\"mode\":\"lines\",\"x\":[0.0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.5,9.0,9.5,10.0,10.5,11.0,11.5,12.0,12.5,13.0,13.5,14.0,14.5,15.0,15.5,16.0,16.5,17.0,17.5,18.0,18.5,19.0,19.5,20.0,20.5,21.0,21.5,22.0,22.5,23.0,23.5,24.0,24.5,25.0,25.5,26.0,26.5,27.0,27.5,28.0,28.5,29.0,29.5,30.0,30.5,31.0,31.5,32.0,32.5,33.0,33.5,34.0,34.5,35.0,35.5,36.0,36.5,37.0,37.5,38.0,38.5,39.0,39.5,40.0,40.5,41.0,41.5,42.0,42.5,43.0,43.5,44.0,44.5,45.0,45.5,46.0,46.5,47.0,47.5,48.0,48.5,49.0,49.5,50.0,50.5,51.0,51.5,52.0,52.5,53.0,53.5,54.0,54.5,55.0,55.5,56.0,56.5,57.0,57.5,58.0,58.5,59.0,59.5,60.0,60.5,61.0,61.5,62.0,62.5,63.0,63.5,64.0,64.5,65.0,65.5,66.0,66.5,67.0,67.5,68.0,68.5,69.0,69.5,70.0,70.5,71.0,71.5,72.0,72.5,73.0,73.5,74.0,74.5,75.0,75.5,76.0,76.5,77.0,77.5,78.0,78.5,79.0,79.5,80.0,80.5,81.0,81.5,82.0,82.5,83.0,83.5,84.0,84.5,85.0,85.5,86.0,86.5,87.0,87.5,88.0,88.5,89.0,89.5,90.0,90.5,91.0,91.5,92.0,92.5,93.0,93.5,94.0,94.5,95.0,95.5,96.0,96.5,97.0,97.5,98.0,98.5,99.0,99.5,100.0,100.5,101.0,101.5,102.0,102.5,103.0,103.5,104.0,104.5,105.0,105.5,106.0,106.5,107.0,107.5,108.0,108.5,109.0,109.5,110.0,110.5,111.0,111.5,112.0,112.5,113.0,113.5,114.0,114.5,115.0,115.5,116.0,116.5,117.0,117.5,118.0,118.5,119.0,119.5,120.0,120.5,121.0,121.5,122.0,122.5,123.0,123.5,124.0,124.5,125.0,125.5,126.0,126.5,127.0,127.5,128.0,128.5,129.0,129.5,130.0,130.5,131.0,131.5,132.0,132.5,133.0,133.5,134.0,134.5,135.0,135.5,136.0,136.5,137.0,137.5,138.0,138.5,139.0,139.5,140.0,140.5,141.0,141.5,142.0,142.5,143.0,143.5,144.0,144.5,145.0,145.5,146.0,146.5,147.0,147.5,148.0,148.5,149.0,149.5,150.0,150.5,151.0,151.5,152.0,152.5,153.0,153.5,154.0,154.5,155.0,155.5,156.0,156.5,157.0,157.5,158.0,158.5,159.0,159.5,160.0,160.5,161.0,161.5,162.0,162.5,163.0,163.5,164.0,164.5,165.0,165.5,166.0,166.5,167.0,167.5,168.0,168.5,169.0,169.5,170.0,170.5,171.0,171.5,172.0,172.5,173.0,173.5,174.0,174.5,175.0,175.5,176.0,176.5,177.0,177.5,178.0,178.5,179.0,179.5,180.0,180.5,181.0,181.5,182.0,182.5,183.0,183.5,184.0,184.5,185.0,185.5,186.0,186.5,187.0,187.5,188.0,188.5,189.0,189.5,190.0,190.5,191.0,191.5,192.0,192.5,193.0,193.5,194.0,194.5,195.0,195.5,196.0,196.5,197.0,197.5,198.0,198.5,199.0,199.5,200.0],\"opacity\":0.8,\"y\":[0.01,0.009373309940785843,0.009328705597453461,0.00969238853366185,0.010359174096627559,0.011267773646097337,0.012385234440429193,0.013697174252650421,0.015201685928554193,0.016905569909203475,0.018822047507799467,0.0209694206910015,0.02337034182396361,0.0260514820946849,0.029043466533055753,0.03238099373345001,0.0361030903497151,0.040253470727137,0.04488098513886053,0.05004014855934076,0.05579174733000785,0.06220352514310945,0.06935095212284453,0.07731808303030069,0.08619851167416824,0.0960964300068396,0.10712780269028827,0.11942166606120248,0.13312156616462703,0.14838714181923873,0.1653958757641302,0.1843450186169041,0.2054537056256409,0.22896528317754278,0.25514983783898754,0.28430698749326666,0.3167688971951534,0.3529035687957464,0.3931184117483359,0.43786402407702235,0.4876383490078219,0.5429910286444999,0.604528040378568,0.6729166310769088,0.748890227057874,0.8332537295204027,0.9268887766806325,1.0307588467198718,1.1459144742489717,1.2734975722205615,1.414745395284886,1.5709940404604592,1.7436797669617328,1.9343397012663854,2.1446095356968597,2.376217717972885,2.6309786383800002,2.9107784794570697,3.217558245613576,3.5532899569065273,3.9199425562151826,4.319445368242506,4.753637658984838,5.224210242449899,5.73263746980033,6.280093052155331,6.867361806141458,7.494740170837,8.161927150517474,8.867914539602173,9.610873572881427,10.388049725364148,11.195671459219982,12.028878525155445,12.881677403472336,13.74693579896137,14.616446747164687,15.480997713996917,16.33054511885861,17.154419212383512,17.941579427041983,18.680956024339906,19.361772159741907,19.97389508550425,20.508195419209017,20.95684440641146,21.313609127940648,21.574047844749487,21.735619244267102,21.797737986920378,21.76171223927063,21.630637260028106,21.409205195240688,21.103459522076445,20.72053395496065,20.268361348421333,19.75539757340533,19.19035389728471,18.581953942882528,17.938728350741346,17.268842515156845,16.57996501773103,15.879170529083384,15.172878090952588,14.466817091047645,13.766019698111764,13.074833137795544,12.396944890308122,11.735423338930206,11.092763246872659,10.470936375122303,9.871444974326222,9.295373883514106,8.743441621227928,8.216050256773414,7.713330025567896,7.235182104272512,6.781316468709166,6.35128568478943,5.944515617601512,5.5603321972354305,5.197984409028913,4.8566647448710265,4.535526272892824,4.233697073106349,3.950292840810057,3.68442698783228,3.435219106602622,3.2018019154754604,2.983326699064769,2.778967542314114,2.587924807388344,2.4094274888709513,2.242734974851246,2.0871382023647778,1.9419602504835483,1.8065564890908543,1.68031451650814,1.5626537103662512,1.453024572978435,1.3509079612718204,1.2558141281094068,1.1672816550147667,1.0848763683646685,1.0081902020892974,0.9368399775297989,0.8704662555032444,0.808732135976679,0.7513220848202629,0.6979407785967239,0.6483120090479113,0.6021775879230405,0.5592962985779205,0.5194429049666095,0.4824071844384356,0.4479930049671346,0.4160174520041508,0.3863100083758728,0.3587117580786243,0.33307464340038173,0.30926076600625474,0.287141721109216,0.2665979700331178,0.2475182523242529,0.22979903853669373,0.21334400834039474,0.1980635621007999,0.18387437013775784,0.17069894300235214,0.15846523225189874,0.14710625545502265,0.13655974944459046,0.12676784494802654,0.11767675911857803,0.1092365139348548,0.10140067071028645,0.0941260829206798,0.08737266514227726,0.08110317825967743,0.07528303069023479,0.06988009208552033,0.06486451849944769,0.06020859243394325,0.0558865721955921,0.0518745521290724,0.0481503323001003,0.04469329737969862,0.04148430466968557,0.038505579712630404,0.035740618417325926,0.03317409673226532,0.03079178720114628,0.028580480358509817,0.026527912319009278,0.024622697112086443,0.022854264084114756,0.02121279990973666,0.01968919451009105,0.01827499050569794,0.016962336635695435,0.015743944676603422,0.014613048904874568,0.013563368799676744,0.012589074217114941,0.011684753141717383,0.010845381828578532,0.010066297042413469,0.009343170151912876,0.008671983043306169,0.008049006029670834,0.007470777141800274,0.006934082887807478,0.0064359404489911076,0.005973581102841685,0.005544434873232178,0.005146116306281631,0.004776411253213697,0.0044332645586588,0.0041147686043058705,0.003819152740049494,0.003544773520233061,0.0032901055041605945,0.003053732806213319,0.0028343412183721678,0.002630710906607903,0.0024417096433195723,0.0022662865287848967,0.002103466156881896,0.00195234318760415,0.0018120773010991162,0.001681888525159265,0.0015610529325634497,0.0014488985997881143,0.0013448018681066845,0.0012481838760883147,0.0011585073381442097,0.0010752735613266038,0.0009980196780163535,0.0009263160757275853,0.0008597640084797218,0.0007979933770178334,0.0007406606675882646,0.0006874470410260559,0.0006380565655029766,0.000592214575665142,0.0005496661363973835,0.0005101746291722395,0.00047352043039130637,0.0004394996904170437,0.00040792320356285443,0.0003786153589454702,0.0003514131648449207,0.00032616534127004467,0.0003027314767890212,0.0002809812463592598,0.0002607936868717247,0.0002420565264231435,0.00022466556193002766,0.00020852407698341666,0.0001935423033014561,0.00017963692590771484,0.00016673061190664124,0.00015475157918943617,0.0001436332004045361,0.00013331363595548917,0.00012373549197424079,0.00011484550090525311,0.00010659422352564877,9.893577191825389e-5,9.18275531088013e-5,8.523003277407784e-5,7.910651762776282e-5,7.342295378974392e-5,6.814773664063607e-5,6.32515274841368e-5,5.870710314396968e-5,5.448920581568498e-5,5.0574381509047194e-5,4.6940847009561143e-5,4.356837629398675e-5,4.0438197203336575e-5,3.753289306351941e-5,3.483630702096336e-5,3.2333449128252984e-5,3.0010407673041303e-5,2.7854266892176824e-5,2.585303305226962e-5,2.399556990764768e-5,2.2271542767039874e-5,2.067136781076518e-5,1.918615990195534e-5,1.780766679585705e-5,1.652822107779782e-5,1.534080349783566e-5,1.423889998688641e-5,1.3216373755784026e-5,1.226744302323153e-5,1.1386703088092382e-5,1.0569151417458677e-5,9.810193409084695e-6,9.105621550991013e-6,8.451571842321704e-6,7.844468557866936e-6,7.280971734092027e-6,6.757941126901169e-6,6.272425841032278e-6,5.8216803573578285e-6,5.403195288196819e-6,5.014714871431209e-6,4.654192971744752e-6,4.319608485098334e-6,4.009251909894002e-6,3.722314726559528e-6,3.4577719060770035e-6,3.2138829191620076e-6,2.988398659336598e-6,2.779014358878916e-6,2.583778779719411e-6,2.4013115123948055e-6,2.2307915790959383e-6,2.071761711652454e-6,1.923843661988357e-6,1.7864807011614546e-6,1.6588140735433344e-6,1.5397605950660802e-6,1.4282888186473717e-6,1.3237912360487996e-6,1.2263198433972245e-6,1.136292067479287e-6,1.0530992486973986e-6,9.769281076611974e-7,9.126369102119938e-7,8.630727626094053e-7,8.262368129618697e-7,7.966794685896905e-7,7.682782625086851e-7,7.366422975527021e-7,7.00286308560761e-7,6.604157197345233e-7,6.196616357255308e-7,5.804014912353947e-7,5.43397094914984e-7,5.073770391144691e-7,4.6988490758463573e-7,4.2920839855008165e-7,3.864973906497632e-7,3.462711141238242e-7,3.1237843456894e-7,2.8173078904661537e-7,2.6362054946191524e-7,2.725119118810974e-7,3.098850281915007e-7,3.6396883058518345e-7,4.1754252465713453e-7,4.5633208536789294e-7,4.740422295445451e-7,4.728173587315148e-7,4.5991686705280903e-7,4.4262099031169623e-7,4.238530348297307e-7,4.0071236751848433e-7,3.670599723797127e-7,3.194846830469822e-7,2.6340338610727565e-7,2.127125557944395e-7,1.733159490055573e-7,1.4158617445906145e-7,1.3732100158613192e-7,1.743627806150977e-7,2.4529104028413954e-7,3.2823226964538484e-7,3.999912625193227e-7,4.4629777956074884e-7,4.6531798865316134e-7,4.645554066077742e-7,4.538608839059773e-7,4.384855494906863e-7,4.1594456438201487e-7,3.7891302116406096e-7,3.234483711736701e-7,2.5752636248553293e-7,1.991896276959388e-7,1.527401382194272e-7,1.1934428431470978e-7,1.148493373510175e-7,1.439630022072858e-7,1.9550484352601825e-7,2.508219473974776e-7,2.9397459452676563e-7,3.177921445762462e-7,3.241245742339392e-7,3.1957117363458386e-7,3.0965478705520005e-7,2.948276843188252e-7,2.708436690714552e-7,2.3391036904667548e-7,1.876458116008917e-7,1.4420448055361415e-7,1.105969847127015e-7,8.500106624531176e-8,6.549357145627016e-8]},{\"name\":\"Infected\",\"line\":{\"color\":\"#00CC96\"},\"error_y\":{\"array\":[0.0,0.0002047036028890171,0.00035258419089793653,0.0004778029845052129,0.0006003046657261098,0.0007321567005378098,0.000881247202815138,0.0010534114194693126,0.001253642782742367,0.0014867868586083866,0.0017579522668904547,0.0020727717265726477,0.0024375876615202047,0.0028596038500395106,0.0033470265345441484,0.003909208575565754,0.0045568049364436486,0.005301945041372117,0.006158426113124427,0.007141931022267192,0.008270274163805016,0.00956367870119474,0.011045089062862886,0.01274052260303924,0.014679465252849735,0.01689531625309201,0.019425886299869424,0.02231395696181515,0.025607904365880615,0.02936240183366702,0.03363919701646438,0.03850798273113358,0.044047362741799954,0.05034591836008957,0.05750341237570182,0.0656320804846395,0.07485808480188669,0.08532308769619279,0.09718595478715762,0.11062469623357382,0.12583841980131075,0.14304953530482228,0.16250606039071133,0.18448395346970173,0.20928986123196736,0.237263548801601,0.26878047285830103,0.3042544371775425,0.34413961822973116,0.38893309903435375,0.4391765334328245,0.4954565112747458,0.5584054296779302,0.6286994970247897,0.707056440728832,0.7942322406066359,0.8910114294153065,0.9981990503188052,1.1166051168585411,1.2470258134727392,1.3902241202755026,1.5468958312635153,1.7176362909710339,1.9028968763217617,2.1029336451407015,2.3177550003082628,2.54705530070463,2.7901456620588028,3.0458838257252645,3.312603542615738,3.5880463510419873,3.8693028277685935,4.152776720904227,4.434158278672861,4.708452439733429,4.970034296100308,5.21268272704295,5.429811152181038,5.6146010056620925,5.760266365201886,5.860341752244053,5.908927055686495,5.901029195120245,5.832865324650594,5.702102008433399,5.508084681176679,5.2519477590126185,4.9366784983388605,4.567110160863679,4.149836225120273,3.693121853335872,3.2068862498159474,2.702952495907432,2.196030724711295,1.7068305886996427,1.2713152383914483,0.9641985131908958,0.9035238544686988,1.100211830650808,1.4233212435355942,1.77890999046416,2.1271529320241065,2.451130608396083,2.743053452197299,2.9993440748798803,3.218722892263621,3.401320779893755,3.548203953500026,3.6610805504563944,3.7420948839944685,3.793674470178577,3.8184113867419684,3.8189689585202355,3.798009895540849,3.758137324182825,3.7018544448997757,3.6315316236550843,3.5493850617940454,3.457465472895301,3.3576497736558624,3.251639234619441,3.140963299521933,3.0269836127109397,2.910902439826695,2.7937733672234986,2.67650983469979,2.559896969504332,2.444602540620197,2.3311873910908574,2.2201164253062378,2.111769486200037,2.006449694848301,1.9043931787536672,1.8057771290324134,1.710727135670832,1.61932427483642,1.531611835610626,1.4476002357659248,1.3672723299170786,1.290588036574756,1.2174879412593234,1.1478969186284023,1.0817274829237498,1.0188822116799434,0.9592558990056242,0.9027379725685186,0.8492138099159994,0.7985663603411939,0.7506774348916833,0.7054288521424537,0.6627030746809223,0.6223840741728788,0.5843579701225065,0.5485133701449633,0.5147418131163053,0.4829381303025863,0.453000659960257,0.4248312855199554,0.3983356538316841,0.37342321498111963,0.3500071907920665,0.3280045916522922,0.30733621567747926,0.28792659145565225,0.2697038344850526,0.2525996011064095,0.23654901495719644,0.2214904924092707,0.2073656647315012,0.19411925819842127,0.18169899407647877,0.1700554333906463,0.15914184447539748,0.14891412409187998,0.13933064208388307,0.1303521300385228,0.12194156607945768,0.1140640738132198,0.10668681569982277,0.09977886992405888,0.09331113008088626,0.08725622949122333,0.08158842578265732,0.07628351782225867,0.07131875972556734,0.06667278405393778,0.062325526759136635,0.058258144916516014,0.05445294303927521,0.0508933164747283,0.04756368683053999,0.044449432459100685,0.04153683963849742,0.03881304604388052,0.03626599376095847,0.033884380060392585,0.031657607947508465,0.029575743184041332,0.027629479117473748,0.025810096982459167,0.02410942529504701,0.02251981069696567,0.021034084365411154,0.019645533850701096,0.01834787482736813,0.017135222834585843,0.016002067367035754,0.014943249936134571,0.013953944061993184,0.013029631314161226,0.012166082556177701,0.011359340525081502,0.010605702400236202,0.009901704404564239,0.009244106537201632,0.008629877689614962,0.008056181916891886,0.007520366420245948,0.007019950846434112,0.006552615895967166,0.00611619164605206,0.005708649415751693,0.005328092251516733,0.00497274674989731,0.004640955242892165,0.00433116819532208,0.004041936977761551,0.003771907223740744,0.003519812886476652,0.003284470878279206,0.003064775805096328,0.002859694209911383,0.002668260274595938,0.0024895715435958037,0.0023227847935330353,0.002167112293911418,0.002021818162382026,0.001886214893286769,0.001759660120870102,0.0016415536517751556,0.0015313347657637583,0.0014284797389947648,0.0013324994907076163,0.0012429371926476118,0.0011593659739897659,0.0010813872256588192,0.0010086286495577619,0.0009407426403932813,0.0008774046835712896,0.0008183117863813272,0.0007631810046862792,0.0007117480923547473,0.0006637662741369065,0.0006190051245835634,0.0005772495259480848,0.000538298676776112,0.0005019651300976906,0.0004680738557602873,0.00043646140775659424,0.00040697523107035953,0.0003794728482945825,0.0003538213441705928,0.0003298967721848872,0.00030758350666319404,0.0002867736208981668,0.00026736633171042654,0.0002492675200585522,0.00023238931588030244,0.00021664972326153122,0.00020197225928996924,0.00018828558655303472,0.0001755231351866235,0.00016362273566291363,0.0001525263183638444,0.00014217977695329224,0.00013253245658284495,0.0001235368744437262,0.0001151489913404323,0.00010732806532729013,0.00010003627715284817,9.323833003594744e-5,8.690113510190273e-5,8.099362171663564e-5,7.548665898764065e-5,7.03530408481865e-5,6.556747238428501e-5,6.110649939101551e-5,5.6948346557233185e-5,5.3072672174077184e-5,4.946030882914281e-5,4.6093140189161495e-5,4.295439324423843e-5,4.0028611317330575e-5,3.729901148744953e-5,3.474993235069459e-5,3.236899755991171e-5,3.014676478427141e-5,2.8075353112899402e-5,2.61470585015476e-5,2.4353500236450616e-5,2.268546913929384e-5,2.11333760279076e-5,1.9688026153140074e-5,1.8341367519109315e-5,1.70868761840067e-5,1.5919351916757763e-5,1.483410452931367e-5,1.382581245541747e-5,1.288772961412731e-5,1.20124116885579e-5,1.1195897367818132e-5,1.0430440423747978e-5,9.68992496589501e-6,8.957296941299067e-6,8.23677770194068e-6,7.547650221190626e-6,6.911560102847514e-6,6.342160419604592e-6,5.841150445378401e-6,5.400140869192054e-6,5.0056469882049114e-6,4.644839567137415e-6,4.310341986677457e-6,4.002328271350474e-6,3.7266497709613082e-6,3.4894406250417247e-6,3.2901480589796598e-6,3.1159128323424923e-6,2.9453242456459403e-6,2.7789489169029682e-6,2.6008303559597187e-6,2.3010169007751147e-6,1.9392026493814526e-6,1.95631403623371e-6,2.5886695384435693e-6,3.4105721802355555e-6,4.056892904183376e-6,4.4051202233761256e-6,4.4912666769056454e-6,4.425274600616247e-6,4.310759208651467e-6,4.185241282108075e-6,4.001998678730189e-6,3.6654682003063563e-6,3.11283010433315e-6,2.4037685138244127e-6,1.7384350980724433e-6,1.2772385498061623e-6,9.040339717632899e-7,9.770102350692391e-7,2.1790472025619773e-6,4.7005976843335455e-6,7.95197936698722e-6,1.11107771049033e-5,1.3511148273774638e-5,1.4869646879722452e-5,1.5300936279533225e-5,1.5156987800738116e-5,1.4784861259479177e-5,1.4320705617565603e-5,1.362341820945254e-5,1.2400973728835244e-5,1.0495886983903545e-5,8.173636405356193e-6,6.099134991892753e-6,4.538535698980223e-6,3.3261775020935327e-6,3.5078323245010306e-6,5.7987972320065675e-6,9.79868673449127e-6,1.4360862483815412e-5,1.828238845411447e-5,2.083673667966758e-5,2.1950411142797184e-5,2.203295817753514e-5,2.160583735419038e-5,2.0938396144517853e-5,1.9888965549001508e-5,1.8065932518007925e-5,1.526748251212656e-5,1.1929509545340216e-5,9.0091295560776e-6,6.699780260480753e-6,5.087614611970507e-6,5.09240895978757e-6,6.981012300576235e-6,1.0103503083669876e-5,1.3388021266126748e-5,1.593088838108559e-5,1.7340320765844597e-5,1.7742547594432198e-5,1.7528233135784782e-5,1.70137554619082e-5,1.6214541007782682e-5,1.4876005775801996e-5,1.2781693506278827e-5,1.0157872806118178e-5,7.719337513908677e-6,5.847763384885316e-6,4.429650647883948e-6,3.3551544358162277e-6],\"thickness\":2,\"color\":\"#00CC96\",\"width\":0,\"type\":\"data\",\"opacity\":0.1},\"mode\":\"lines\",\"x\":[0.0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.5,9.0,9.5,10.0,10.5,11.0,11.5,12.0,12.5,13.0,13.5,14.0,14.5,15.0,15.5,16.0,16.5,17.0,17.5,18.0,18.5,19.0,19.5,20.0,20.5,21.0,21.5,22.0,22.5,23.0,23.5,24.0,24.5,25.0,25.5,26.0,26.5,27.0,27.5,28.0,28.5,29.0,29.5,30.0,30.5,31.0,31.5,32.0,32.5,33.0,33.5,34.0,34.5,35.0,35.5,36.0,36.5,37.0,37.5,38.0,38.5,39.0,39.5,40.0,40.5,41.0,41.5,42.0,42.5,43.0,43.5,44.0,44.5,45.0,45.5,46.0,46.5,47.0,47.5,48.0,48.5,49.0,49.5,50.0,50.5,51.0,51.5,52.0,52.5,53.0,53.5,54.0,54.5,55.0,55.5,56.0,56.5,57.0,57.5,58.0,58.5,59.0,59.5,60.0,60.5,61.0,61.5,62.0,62.5,63.0,63.5,64.0,64.5,65.0,65.5,66.0,66.5,67.0,67.5,68.0,68.5,69.0,69.5,70.0,70.5,71.0,71.5,72.0,72.5,73.0,73.5,74.0,74.5,75.0,75.5,76.0,76.5,77.0,77.5,78.0,78.5,79.0,79.5,80.0,80.5,81.0,81.5,82.0,82.5,83.0,83.5,84.0,84.5,85.0,85.5,86.0,86.5,87.0,87.5,88.0,88.5,89.0,89.5,90.0,90.5,91.0,91.5,92.0,92.5,93.0,93.5,94.0,94.5,95.0,95.5,96.0,96.5,97.0,97.5,98.0,98.5,99.0,99.5,100.0,100.5,101.0,101.5,102.0,102.5,103.0,103.5,104.0,104.5,105.0,105.5,106.0,106.5,107.0,107.5,108.0,108.5,109.0,109.5,110.0,110.5,111.0,111.5,112.0,112.5,113.0,113.5,114.0,114.5,115.0,115.5,116.0,116.5,117.0,117.5,118.0,118.5,119.0,119.5,120.0,120.5,121.0,121.5,122.0,122.5,123.0,123.5,124.0,124.5,125.0,125.5,126.0,126.5,127.0,127.5,128.0,128.5,129.0,129.5,130.0,130.5,131.0,131.5,132.0,132.5,133.0,133.5,134.0,134.5,135.0,135.5,136.0,136.5,137.0,137.5,138.0,138.5,139.0,139.5,140.0,140.5,141.0,141.5,142.0,142.5,143.0,143.5,144.0,144.5,145.0,145.5,146.0,146.5,147.0,147.5,148.0,148.5,149.0,149.5,150.0,150.5,151.0,151.5,152.0,152.5,153.0,153.5,154.0,154.5,155.0,155.5,156.0,156.5,157.0,157.5,158.0,158.5,159.0,159.5,160.0,160.5,161.0,161.5,162.0,162.5,163.0,163.5,164.0,164.5,165.0,165.5,166.0,166.5,167.0,167.5,168.0,168.5,169.0,169.5,170.0,170.5,171.0,171.5,172.0,172.5,173.0,173.5,174.0,174.5,175.0,175.5,176.0,176.5,177.0,177.5,178.0,178.5,179.0,179.5,180.0,180.5,181.0,181.5,182.0,182.5,183.0,183.5,184.0,184.5,185.0,185.5,186.0,186.5,187.0,187.5,188.0,188.5,189.0,189.5,190.0,190.5,191.0,191.5,192.0,192.5,193.0,193.5,194.0,194.5,195.0,195.5,196.0,196.5,197.0,197.5,198.0,198.5,199.0,199.5,200.0],\"opacity\":0.8,\"y\":[0.0,0.0008507817163397689,0.001486353542218231,0.0019971892543804715,0.00244176014612098,0.0028584622299968132,0.003273170852795762,0.0037040339188750783,0.004164522202382246,0.004665380621227372,0.005215887679039399,0.005824680671550173,0.006500309832501715,0.007251624873665769,0.008088059719861113,0.009019857494097337,0.010058262815814093,0.011215699093396172,0.012505942585253754,0.013944301346563211,0.015547805012894536,0.01733540988644014,0.019328223165131265,0.021549749610855314,0.024026164018597907,0.02678661276795533,0.029863547282258242,0.03329309372346613,0.03711546119338517,0.04137539548613376,0.046122677935726775,0.05141267821653101,0.057306963167571404,0.06387396555612625,0.07118972841507358,0.07933870867254687,0.08841466974853845,0.09852165065570118,0.10977501768186924,0.12230264024121103,0.1362461159937351,0.15176213124373622,0.16902391011540605,0.18822273229544342,0.2095696518946517,0.2332971851773088,0.25966111829132743,0.28894242622231603,0.32144907731905203,0.3575180879495513,0.3975174121062502,0.44184751411051837,0.49094321462160634,0.5452747446986755,0.6053488020073149,0.6717094329082165,0.7449369819333319,0.8256476399297155,0.9144907014115414,1.01214474979262,1.1193137322921978,1.2367181496190494,1.3650862689036865,1.5051416427877793,1.6575870993273627,1.823088200525972,2.00224995688545,2.1955908474284644,2.4035145126410202,2.6262763361034036,2.8639492824510566,3.1163867551611557,3.3831842344523437,3.6636427917944254,3.956737035052513,4.261088968063518,4.574935517035866,4.8961364867049255,5.222167055998179,5.550141852789611,5.876859062233245,6.198835010164889,6.5123877491142625,6.813726827909823,7.099043107263074,7.364630088967973,7.60697404737001,7.822863443892702,8.009497677839981,8.164555448544089,8.286272725761634,8.373471549170834,8.425579943845907,8.442635860985702,8.425252809820885,8.374582249082511,8.292247591234768,8.18027367989048,8.041011886560444,7.877056860734931,7.691169160163431,7.486198591359786,7.265016925204751,7.030456178884068,6.785258868437458,6.5320354207107245,6.2732309263003065,6.011105858787118,5.747717113148797,5.484911359985394,5.224323464741138,4.967378120437659,4.715298323594768,4.469116313627805,4.229683528169092,3.9976867850044924,3.7736610134586104,3.5580046380059396,3.35099547016006,3.1528041690840234,2.9635077610866354,2.783103315790698,2.611518952764092,2.4486251894414517,2.294245485372154,2.148164259555545,2.010135287147198,1.8798886507877637,1.7571366268227158,1.6415791797778503,1.532908841569456,1.4308140675692098,1.334982863362392,1.245105434327942,1.1608763416257775,1.0819964183570436,1.0081744201549956,0.9391278885409369,0.8745841255827742,0.8142808803022299,0.757966629766697,0.7054008878196589,0.6563544162823488,0.6106091239116627,0.5679578967637607,0.52820456155245,0.49116348562362466,0.4566593344824966,0.42452674624745745,0.39460999764022714,0.3667625364472601,0.34084663091186157,0.31673298093541125,0.2943002653924612,0.27343476263705374,0.25402997412235406,0.23598623447578262,0.219210296073161,0.2036149996443058,0.18911891585174526,0.17564599026691033,0.1631252290161458,0.15149039987960097,0.1406797383942539,0.13063564830226507,0.12130444948813188,0.11263613524167106,0.10458411585098715,0.09710500648151743,0.09015841609443584,0.08370675532672375,0.07771504133300774,0.07215072031306458,0.0669835154530071,0.06218526351798787,0.05772977278685276,0.053592688534240436,0.04975136981660044,0.04618477224651826,0.04287333328675597,0.03979886975640827,0.03694448755951164,0.0342944865069418,0.03183427854470549,0.029550309925997,0.027429989834883227,0.025461623507636998,0.023634347320775434,0.021938069404543934,0.020363417590765247,0.01890168836599388,0.017544797334048606,0.01628523726970369,0.01511603657401383,0.014030722145341203,0.013023283767185347,0.012088140315290031,0.011220109169683355,0.010414379005900098,0.009666483030027038,0.008972273366206693,0.00832789933725332,0.007729785877215938,0.007174614233615869,0.006659303670464197,0.006180994108139568,0.005737030134315727,0.005324946667418327,0.004942455775110238,0.004587433329703339,0.00425790741058233,0.0039520475855042,0.0036681547114851766,0.0034046516687158994,0.0031600745936259376,0.002933064624914519,0.002722360284784734,0.002526790577185026,0.002345268695711068,0.0021767859101823194,0.002020405687281521,0.0018752588008613838,0.0017405384102559054,0.001615495634440071,0.0014994354173281856,0.001391712636117698,0.0012917284677281492,0.001198927038866607,0.001112792368914405,0.0010328455716618163,0.000958642211945592,0.0008897696941471633,0.0008258450444122716,0.0007665128070796955,0.0007114430619945024,0.0006603296104950368,0.000612888266385927,0.0005688552583197618,0.0005279857482118403,0.0004900524664786717,0.0004548444591245997,0.0004221659339944251,0.0003918351838793015,0.0003636835527490634,0.0003375544638887551,0.00031330260128215097,0.00029079308326485125,0.0002699007297126297,0.0002505093685714867,0.0002325111805438155,0.0002158060894217676,0.0002003012002764409,0.00018591028368765227,0.00017255330143230965,0.0001601559675423281,0.00014864933839138652,0.0001379694264803167,0.0001280568348547041,0.00011885642374088118,0.00011031701801906064,0.00010239110733830348,9.503460637040957e-5,8.820661520878703e-5,8.186918212776466e-5,7.598708061022229e-5,7.052760629377739e-5,6.546039468938643e-5,6.075725719119202e-5,5.639203102253193e-5,5.234043835065893e-5,4.857995085101912e-5,4.5089658512775885e-5,4.1850145447594975e-5,3.8843380935228125e-5,3.6052641091168724e-5,3.3462376170193017e-5,3.105811800742998e-5,2.8826479384308916e-5,2.6755089971400444e-5,2.4832498827471315e-5,2.304807563688546e-5,2.139192829525914e-5,1.9854842935276535e-5,1.8428244020807518e-5,1.7104166727941153e-5,1.5875231476213854e-5,1.4734611172257012e-5,1.3675985481223973e-5,1.269348324880076e-5,1.1781624058020845e-5,1.0935282821196854e-5,1.0149722045256425e-5,9.420574144352612e-6,8.743405009201817e-6,8.114095724803527e-6,7.529179558089744e-6,6.985776202730915e-6,6.481362891161442e-6,6.013543835998895e-6,5.579904989714934e-6,5.177982031258772e-6,4.805325801333899e-6,4.459621114180969e-6,4.138801973050568e-6,3.841108708979251e-6,3.5650504481943117e-6,3.3092695921421157e-6,3.072353666184134e-6,2.8527039580952603e-6,2.6486498256190127e-6,2.4591191044694165e-6,2.282462524946194e-6,2.1140911745704388e-6,1.9508251350532134e-6,1.7928146768889654e-6,1.6426897589776794e-6,1.5037453236610716e-6,1.3783009218599894e-6,1.2668168578783636e-6,1.1679113498155888e-6,1.07910415940285e-6,9.97911754451061e-7,9.228373279707713e-7,8.538359103849073e-7,7.919903751368351e-7,7.384083533389373e-7,6.927429399893331e-7,6.522515926337398e-7,6.129377932140736e-7,5.750071707186281e-7,5.35696120141917e-7,4.7402499435184924e-7,3.7705454370339566e-7,2.5101864976496435e-7,1.1583126716536439e-7,-5.840626394921633e-9,-9.803570876396562e-8,-1.5612029995197604e-7,-1.8595021266569703e-7,-1.9890473325581107e-7,-2.0529154413584182e-7,-2.0899877729210372e-7,-2.058586010723192e-7,-1.8698578899970402e-7,-1.463645999238405e-7,-8.917801338720348e-8,-3.380491263756274e-8,4.054960050883557e-9,3.601113910911658e-8,2.504675870202415e-8,-8.614807082235838e-8,-3.0381529553635975e-7,-5.820811105012855e-7,-8.536227179515643e-7,-1.0626736503942656e-6,-1.184804343506851e-6,-1.2287356717769413e-6,-1.2232725303668088e-6,-1.1972822597039435e-6,-1.1624887647914422e-6,-1.1077075792098118e-6,-1.0090098642322164e-6,-8.531744164042067e-7,-6.61666182332986e-7,-4.892675473717382e-7,-3.5933314811147595e-7,-2.5774372717340845e-7,-2.6244508751251956e-7,-4.279654099769444e-7,-7.252485809121072e-7,-1.0684213562549889e-6,-1.3664080401049706e-6,-1.5632065811308007e-6,-1.6516911458832594e-6,-1.6614314077645383e-6,-1.6312179940583724e-6,-1.5817567610506117e-6,-1.503341818867476e-6,-1.3672385032178366e-6,-1.1580027907956646e-6,-9.070329785403452e-7,-6.852927870658434e-7,-5.097335923415999e-7,-3.849790233986925e-7,-3.733546326391356e-7,-4.933981556285382e-7,-7.011949346682446e-7,-9.234567201831433e-7,-1.0975576737014635e-6,-1.1953377972142104e-6,-1.2240917682157463e-6,-1.2097802677419673e-6,-1.1741313502429497e-6,-1.1189412191440398e-6,-1.0275369404734786e-6,-8.850281489607159e-7,-7.056506765413996e-7,-5.371927156968328e-7,-4.072229376809275e-7,-3.08590604845344e-7,-2.337475473742319e-7]},{\"name\":\"Recovered\",\"line\":{\"color\":\"#AB63FA\"},\"error_y\":{\"array\":[0.0,2.913054575813648e-5,0.00010333040226854141,0.00021096386537203563,0.0003476269136921714,0.0005132607342519036,0.0007105391953142068,0.000943999617920398,0.0012196084573997154,0.001544583562558015,0.0019273705143788063,0.002377714856403078,0.0029067979757311205,0.0035274197075568377,0.0042542197871855885,0.005103935685292978,0.006095697659171428,0.007251363916277371,0.008595900239714521,0.010157809483605734,0.011969617197328017,0.014068420666203101,0.01649650940636636,0.019302066286027333,0.022539959235483426,0.02627263474937784,0.030571126341075155,0.03551619085412699,0.04119958994013833,0.047725529677521285,0.0552122835225731,0.06379401331727412,0.07362281480044465,0.08487101381546727,0.09773372529318144,0.11243173503549793,0.12921469999686544,0.14836472610888968,0.17020035657256832,0.19508095061574546,0.2234116098547944,0.2556485592930683,0.2923050928499088,0.3339581456320705,0.3812553002806051,0.4349226154179704,0.4957730100710397,0.5647151907933271,0.6427634200696379,0.7310473980985378,0.8308228176187017,0.943482576056584,1.0705673615834699,1.2137769898466193,1.3749805840021099,1.5562252903534222,1.7597456250285166,1.9879681258495017,2.2435150363526173,2.5292033805533043,2.8480364267763303,3.2031933664796486,3.598007091024332,4.035934078492051,4.520513176291234,5.055307929203335,5.643838150910893,6.28949395623988,6.995431416084023,7.7644508190540416,8.598859114180001,9.500317168655355,10.469670964197181,11.506783792480316,12.610354323207783,13.777748222782996,15.004887834446034,16.286082940327386,17.613990115464105,18.97957422423546,20.37214141915418,21.779485601542756,23.1880540449673,24.583202342031456,25.949535807348916,27.271276901593026,28.532704696310734,29.718590654525674,30.81462467104723,31.807829574135837,32.68691478869831,33.44256664893505,34.06765572194544,34.557365290049795,34.90921820966953,35.123035909707255,35.20080491894477,35.14648747673414,34.96579755513828,34.66592242439319,34.25524867404886,33.743067991783526,33.13929359307504,32.454208999060434,31.698220725096988,30.881658402045943,30.014593488787728,29.106694654592403,28.167115661424454,27.204410762729246,26.226477013965045,25.240519768859254,24.25303833587688,23.269829472014454,22.296001001666706,21.336000390358134,20.39364725164553,19.472173105853667,18.57426653063898,17.7021169270665,16.85746000089332,16.0416242230194,15.255573261699734,14.499948466555901,13.775109673968943,13.081170349247603,12.418032537373378,11.785417922751057,11.18289561614175,10.609907963935122,10.065794006683538,9.549808480688842,9.06114037572032,8.598928295597265,8.162273729506527,7.750252863709119,7.361926977672222,6.9963501531121475,6.6525765706594395,6.329666458672214,6.026690466595218,5.742733577883874,5.476898359237653,5.228306990766396,4.996102795478674,4.7794518503063825,4.57754341595316,4.3895906130896645,4.214830770130752,4.052525665303437,3.9019613568753906,3.762448330758735,3.6333215440828384,3.5139403119022417,3.4036884132598755,3.301974225275978,3.208230811135827,3.121915918908292,3.04251218075017,2.96952715844348,2.9024933082617737,2.840967942194288,2.7845331002444706,2.7327952854420836,2.6853850306546785,2.641956441092417,2.6021866065618466,2.565774834814404,2.5324418721602475,2.5019290119519493,2.473997153348764,2.448425772005905,2.425011877145715,2.403568989230135,2.3839260597878202,2.3659264331176932,2.349426825752013,2.334296344172412,2.3204155347819038,2.3076754657299414,2.2959768697467924,2.2852293500680387,2.2753506104090593,2.2662657550853966,2.257906635967059,2.2502112520949256,2.2431231955928235,2.236591137032413,2.230568357067522,2.22501232610967,2.2198843149881218,2.2151490362557698,2.2107743276706477,2.206730859438102,2.2029918721546577,2.199532936956544,2.196331737035921,2.193367871989459,2.1906226836538827,2.188079095313616,2.185721464856704,2.1835354566468923,2.1815079227190535,2.179626797015095,2.1778809988847554,2.176260345042463,2.1747554702568768,2.1733577567043163,2.172059270244676,2.170852700223481,2.1697313066989947,2.168688872618239,2.1677196599248423,2.1668183700579595,2.165980107647967,2.1652003472448658,2.1644749031352575,2.1637999022107453,2.1631717594511963,2.1625871549171416,2.1620430123098013,2.1615364805971664,2.161064916370512,2.1606258680049284,2.160217061039206,2.1598363846416344,2.1594818791510892,2.159151724692215,2.1588442308232354,2.15855782708551,2.1582910541858933,2.1580425555320493,2.157811069903043,2.1575954245546334,2.1573945288302516,2.1572073682920894,2.1570329992243895,2.1568705435290236,2.1567191840163003,2.1565781600772045,2.1564467637071814,2.156324335836137,2.1562102629046684,2.1561039736128893,2.1560049358994062,2.155912654304902,2.155826667378889,2.155746545376452,2.15567188806275,2.155602322637044,2.155537501803476,2.155477101995109,2.155420821742713,2.155368380170336,2.1553195155959517,2.1552739842172888,2.155231558870448,2.1551920278620056,2.1551551939176217,2.1551208732124,2.155088894399527,2.155059097859842,2.155031334922727,2.155005467081216,2.154981365252048,2.154958909104634,2.1549379864625546,2.1549184927671985,2.1549003305855403,2.154883409142812,2.1548676438659267,2.154852955935022,2.15483927185831,2.154826523109863,2.154814645890708,2.154803580584902,2.1547932714614646,2.154783666809423,2.1547747187264488,2.1547663827263124,2.154758617333989,2.1547513837602654,2.154744645687031,2.1547383691499564,2.1547325224770804,2.1547270762298365,2.154722003097337,2.1547172777152284,2.154712876417206,2.1547087769802244,2.1547049584937072,2.1547014015980914,2.1546980883449858,2.154694999577584,2.1546921175087546,2.154689427899621,2.1546869196479492,2.1546845833388306,2.154682409799107,2.154680389213187,2.154678510974687,2.15467676416546,2.1546751383712683,2.15467362446141,2.1546722149781967,2.154670903901144,2.1546696857702297,2.154668554472432,2.154667502416154,2.1546665213389127,2.1546656068466836,2.1546647490850277,2.1546639158051963,2.154663085916904,2.1546622639241715,2.1546614730874936,2.1546607412886685,2.15466008837804,2.1546595194661364,2.1546590252284377,2.154658587823177,2.1546581894777885,2.154657820179734,2.154657481212041,2.154657182502948,2.154656933912563,2.1546567336574225,2.1546565610762634,2.154656385867209,2.1546562117355625,2.154656010733514,2.154655594589522,2.154654850481008,2.1546538387054244,2.1546527414624372,2.1546517636690585,2.1546510478830188,2.1546506334301476,2.15465046502063,2.15465043849672,2.154650460880746,2.1546504985870665,2.154650591524875,2.154650821850669,2.1546512443295187,2.1546518106332226,2.1546523524408823,2.154652729134447,2.154653051974417,2.1546529301913027,2.1546517784019534,2.1546495424074266,2.15464670244534,2.1546439532648254,2.154641863672505,2.1546406751045004,2.154640286800653,2.15464039429339,2.1546406981747817,2.154641081470717,2.1546416664309143,2.1546427051377983,2.1546443330462286,2.1546463203894817,2.154648093324993,2.1546494241418133,2.154650455208676,2.1546502739171274,2.1546482575481902,2.154644755329173,2.1546407672798282,2.1546373417663576,2.154635110878895,2.154634136953035,2.1546340614684962,2.1546344291780835,2.1546350056468526,2.1546359154144064,2.154637500732824,2.1546399372792577,2.1546428433953655,2.154645383266011,2.15464739086572,2.1546487889723016,2.1546487686523497,2.154647097643192,2.154644347192511,2.1546414577214272,2.1546392218967703,2.1546379826669013,2.154637628101433,2.15463781447933,2.15463826399193,2.1546389636667804,2.1546401376749453,2.15464197605879,2.154644279109191,2.154646418122786,2.154648059039382,2.1546493020353292,2.154650243551596],\"thickness\":2,\"color\":\"#AB63FA\",\"width\":0,\"type\":\"data\",\"opacity\":0.1},\"mode\":\"lines\",\"x\":[0.0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.5,9.0,9.5,10.0,10.5,11.0,11.5,12.0,12.5,13.0,13.5,14.0,14.5,15.0,15.5,16.0,16.5,17.0,17.5,18.0,18.5,19.0,19.5,20.0,20.5,21.0,21.5,22.0,22.5,23.0,23.5,24.0,24.5,25.0,25.5,26.0,26.5,27.0,27.5,28.0,28.5,29.0,29.5,30.0,30.5,31.0,31.5,32.0,32.5,33.0,33.5,34.0,34.5,35.0,35.5,36.0,36.5,37.0,37.5,38.0,38.5,39.0,39.5,40.0,40.5,41.0,41.5,42.0,42.5,43.0,43.5,44.0,44.5,45.0,45.5,46.0,46.5,47.0,47.5,48.0,48.5,49.0,49.5,50.0,50.5,51.0,51.5,52.0,52.5,53.0,53.5,54.0,54.5,55.0,55.5,56.0,56.5,57.0,57.5,58.0,58.5,59.0,59.5,60.0,60.5,61.0,61.5,62.0,62.5,63.0,63.5,64.0,64.5,65.0,65.5,66.0,66.5,67.0,67.5,68.0,68.5,69.0,69.5,70.0,70.5,71.0,71.5,72.0,72.5,73.0,73.5,74.0,74.5,75.0,75.5,76.0,76.5,77.0,77.5,78.0,78.5,79.0,79.5,80.0,80.5,81.0,81.5,82.0,82.5,83.0,83.5,84.0,84.5,85.0,85.5,86.0,86.5,87.0,87.5,88.0,88.5,89.0,89.5,90.0,90.5,91.0,91.5,92.0,92.5,93.0,93.5,94.0,94.5,95.0,95.5,96.0,96.5,97.0,97.5,98.0,98.5,99.0,99.5,100.0,100.5,101.0,101.5,102.0,102.5,103.0,103.5,104.0,104.5,105.0,105.5,106.0,106.5,107.0,107.5,108.0,108.5,109.0,109.5,110.0,110.5,111.0,111.5,112.0,112.5,113.0,113.5,114.0,114.5,115.0,115.5,116.0,116.5,117.0,117.5,118.0,118.5,119.0,119.5,120.0,120.5,121.0,121.5,122.0,122.5,123.0,123.5,124.0,124.5,125.0,125.5,126.0,126.5,127.0,127.5,128.0,128.5,129.0,129.5,130.0,130.5,131.0,131.5,132.0,132.5,133.0,133.5,134.0,134.5,135.0,135.5,136.0,136.5,137.0,137.5,138.0,138.5,139.0,139.5,140.0,140.5,141.0,141.5,142.0,142.5,143.0,143.5,144.0,144.5,145.0,145.5,146.0,146.5,147.0,147.5,148.0,148.5,149.0,149.5,150.0,150.5,151.0,151.5,152.0,152.5,153.0,153.5,154.0,154.5,155.0,155.5,156.0,156.5,157.0,157.5,158.0,158.5,159.0,159.5,160.0,160.5,161.0,161.5,162.0,162.5,163.0,163.5,164.0,164.5,165.0,165.5,166.0,166.5,167.0,167.5,168.0,168.5,169.0,169.5,170.0,170.5,171.0,171.5,172.0,172.5,173.0,173.5,174.0,174.5,175.0,175.5,176.0,176.5,177.0,177.5,178.0,178.5,179.0,179.5,180.0,180.5,181.0,181.5,182.0,182.5,183.0,183.5,184.0,184.5,185.0,185.5,186.0,186.5,187.0,187.5,188.0,188.5,189.0,189.5,190.0,190.5,191.0,191.5,192.0,192.5,193.0,193.5,194.0,194.5,195.0,195.5,196.0,196.5,197.0,197.5,198.0,198.5,199.0,199.5,200.0],\"opacity\":0.8,\"y\":[0.0,0.0001120629205295212,0.0004075944466115435,0.0008449316949987131,0.0014007213700049594,0.002063523262864693,0.0028298072702941583,0.0037014675330494335,0.004684300348095109,0.005787096746769222,0.007021129740013333,0.008399897935297993,0.009939038892046937,0.011656358366475893,0.01357194238745738,0.01570833234987921,0.01809075182161788,0.02074737924899772,0.0237096643830032,0.027012688701280846,0.030695571789813685,0.03480192701587929,0.03938037078065844,0.04448509060679531,0.05017647801928304,0.056521833013129984,0.06359614804497447,0.07148297957818847,0.08027541738946432,0.0900771602838488,0.10100371218032982,0.11318370863866048,0.12676038891494712,0.14189322900073556,0.15875974598686032,0.177557503075198,0.19850632066664908,0.22185072337833728,0.24786264389250554,0.2768443859820353,0.3091319136435452,0.34509844541327905,0.3851584051573157,0.42977176531344824,0.47944873288183754,0.5347549248029101,0.5963169650419246,0.6648285160079994,0.7410568667187322,0.8258498649242711,0.9201433907486959,1.0249694065866626,1.1414641848733844,1.2708771922219757,1.4145800524399,1.5740754944457886,1.7510070121518506,1.9471675399588253,2.16450835883566,2.4051471119438492,2.671373853455064,2.965657142300834,3.290646742329069,3.649174174149898,4.044250141306506,4.479056212310844,4.956933247629594,5.481363370163834,6.055944399150586,6.684357603812717,7.3703258766343955,8.11756349064306,8.929716853058716,9.810295454677256,10.762593280442138,11.789602051295036,12.893926956650528,14.077681205216674,15.342396802833663,16.688928770712685,18.11736440843934,19.62696043524029,21.21607649273151,22.882133810727506,24.621604565669795,26.430012057038947,28.301979147293803,30.231289551149192,32.2109687852141,34.233404654717766,36.29046743549254,38.37366150107704,40.474275192140965,42.58352724651458,44.692720999082425,46.7933787156426,48.87737197150536,50.93703102455039,52.96523364282425,54.9554783277929,56.901933961615114,58.79947268525869,60.64368264233163,62.43086665724211,64.15802478991007,65.82282717241156,67.42357779228529,68.95916716992751,70.42902663485854,71.83307550148321,73.17166786069782,74.44554104758588,75.65576305230859,76.80368254457373,77.89088444191495,78.9191446973426,79.89039227847984,80.8066728667468,81.67011571595368,82.48290590589104,83.24725948775612,83.9654010967922,84.63954617700276,85.27188490724744,85.86456853436661,86.41969940231715,86.93932188802907,87.42541565514195,87.87989071540085,88.30458354807652,88.70125433497611,89.07158600836445,89.41718341108296,89.73957359529933,90.04020675578528,90.32045750960955,90.58162649126102,90.82494269002336,91.05156568763768,91.26258812586403,91.45903848592339,91.64188377305237,91.81203220323371,91.97033607556317,92.11759460289703,92.25455651362837,92.38192286876425,92.50034962318345,92.61045014761794,92.71279764501784,92.80792757621538,92.89633987104031,92.97850106815123,93.0548464102963,93.1257817749509,93.19168550755744,93.25291017665592,93.30978426593421,93.36261370641714,93.41168335712796,93.45725840897452,93.49958568214049,93.53889484367322,93.57539955853001,93.60929858738038,93.64077678647261,93.6700060474837,93.69714620136558,93.72234583668806,93.74574307452669,93.7674662863644,93.78763477753118,93.80635941980324,93.82374322842945,93.83988191908303,93.85486441710316,93.86877333343988,93.88168540566583,93.89367191055064,93.90479905291352,93.91512832341643,93.92471682665388,93.9336175963719,93.94187988238554,93.94954941890373,93.95666867302158,93.96327707612726,93.96941124143426,93.97510516524953,93.9803904111177,93.98529628332861,93.98984999001557,93.99407679095066,93.99800013716784,94.0016417993091,94.00502198784804,94.00815946539545,94.01107165026735,94.01377471156775,94.0162836588438,94.01861242602709,94.02077394749459,94.022780229987,94.02464241869846,94.02637085898259,94.02797515398348,94.02946421802427,94.03084632570736,94.0321291573785,94.03331984234683,94.03442499828446,94.03545076775866,94.03640285237435,94.03728654427974,94.03810675556403,94.0388680456549,94.03957464671207,94.040230487042,94.04083921272539,94.0414042079439,94.0419286140394,94.04241534667906,94.04286711214517,94.04328642232277,94.04367560863278,94.0440368350157,94.04437211000455,94.04468329791081,94.0449721291581,94.04524020983541,94.04548903060667,94.04571997513081,94.0459343276838,94.04613328027331,94.04631793927553,94.0464893315666,94.04664841023633,94.04679605990296,94.0469331016467,94.0470602975799,94.04717835507525,94.04728793068023,94.04738963375492,94.04748402988228,94.04757164404927,94.04765296351378,94.04772844053188,94.04779849485914,94.04786351608126,94.04792386578785,94.04797987959176,94.04803186900094,94.04808012315111,94.04812491040968,94.04816647986235,94.04820506269414,94.0482408734761,94.04827411136816,94.04830496123348,94.04833359465044,94.04836017087993,94.04838483773096,94.04840773237738,94.04842898212885,94.048448705149,94.04846701111906,94.04848400184854,94.04849977183774,94.04851440879756,94.0485279941331,94.04854060339628,94.04855230671036,94.04856316916671,94.04857325118876,94.04858260885067,94.04859129422192,94.04859935566284,94.04860683802193,94.04861378287585,94.04862022878645,94.04862621154672,94.04863176440085,94.04863691823381,94.04864170173289,94.04864614152943,94.04865026232983,94.04865408704555,94.04865763692725,94.04866093170303,94.04866398971126,94.0486668280072,94.04866946240385,94.04867190755193,94.04867417739415,94.04867628487446,94.04867824168369,94.04868005836657,94.04868174457356,94.04868330931095,94.04868476111066,94.04868610809464,94.04868735794815,94.04868851784248,94.04868959435852,94.04869059346113,94.0486915205575,94.04869238064252,94.04869317849045,94.0486939187935,94.04869460607628,94.04869524410434,94.04869583696647,94.0486963912332,94.04869691202337,94.0486974012729,94.04869785851817,94.04869828255377,94.04869867293132,94.04869903077096,94.04869935875418,94.04869966045692,94.04869993936295,94.04870019797214,94.04870043738462,94.0487006576008,94.0487008585279,94.04870104132779,94.04870120927579,94.04870136672886,94.04870151417765,94.0487016547591,94.04870180809846,94.04870198648135,94.04870218475226,94.04870238530312,94.04870256799357,94.04870271873844,94.04870283370502,94.04870291855445,94.04870298393625,94.04870303950426,94.04870308906428,94.04870312909037,94.04870315175647,94.04870315182382,94.04870313420207,94.04870311576319,94.04870311093376,94.04870310934082,94.0487031447346,94.04870326927302,94.0487034887528,94.04870376165924,94.04870402700098,94.04870423426748,94.04870436138312,94.04870441635371,94.04870442540752,94.04870441482346,94.04870439531487,94.04870435679751,94.04870427761504,94.0487041458253,94.04870398096425,94.04870383280408,94.04870372258853,94.04870363754537,94.04870364846072,94.04870380486318,94.04870408041478,94.04870439720585,94.04870467260258,94.04870485580301,94.04870494036497,94.04870495315055,94.04870492938936,94.04870488789513,94.04870481987734,94.04870469927302,94.04870451208087,94.04870428681421,94.04870408789614,94.04870393072534,94.04870381951044,94.04870381083146,94.0487039215243,94.04870411174016,94.04870431496913,94.04870447437814,94.04870456441597,94.04870459171069,94.04870457983174,94.04870454850641,94.04870449937076,94.04870441729717,94.04870428877558,94.04870412673148,94.04870397454336,94.0487038572374,94.04870376832703,94.04870370096465]}],\"layout\":{\"showlegend\":true,\"xaxis\":{\"autorange\":true,\"title\":\"Time (Days)\",\"type\":\"linear\"},\"annotations\":[],\"title\":\"Covid-19 SEIR Model with Error Bars\",\"yaxis\":{\"autorange\":false,\"range\":[0,100],\"title\":\"%\",\"type\":\"linear\"},\"shapes\":[],\"legend\":{}}},\"1.75\":{\"config\":{\"responsive\":true},\"data\":[{\"name\":\"Susceptible\",\"line\":{\"color\":\"#636EFA\"},\"error_y\":{\"array\":[0.0,9.627163643290254e-5,0.00034704606483294305,0.000723404520606603,0.001221138998055708,0.0018510161546887055,0.0026337739479399456,0.0035978148612026066,0.00477844272399915,0.006218003952253422,0.007966590496811558,0.010083131088074319,0.01263679323323712,0.01570867299603552,0.019393781349781775,0.023803355557651253,0.02906753735877276,0.03533847045228155,0.042793878965126465,0.05164119848814296,0.062122339281907885,0.07451917512351341,0.0891598580346925,0.10642607693619859,0.12676137947233795,0.1506807109245601,0.17878130745245618,0.21175513105504154,0.250402981528072,0.2956505307586719,0.34856640492012636,0.4103825619162907,0.482517069165495,0.5665994227886552,0.6644986580634256,0.7783540040216076,0.9106084072128169,1.0640439247044564,1.2418196488993767,1.4475104051277634,1.685145827508605,1.9592480555098564,2.2748642730073496,2.6375952287936055,3.053610292913788,3.5296496974323315,4.0730016836377425,4.6914502039896835,5.393186955980121,6.1866680084244265,7.0804156864662735,8.082732656818013,9.201342771655835,10.442924939738825,11.812546366873955,13.312989940774184,14.94397168334474,16.70131366700593,18.57606089497211,20.55365017127896,22.613184387897455,24.72694194767751,26.860231116385663,28.971720454333962,31.014315930238528,32.93675555276885,34.685759561242776,36.20880024944839,37.45721360109215,38.389417063906855,38.97398370431103,39.19197079849272,39.03850111790793,38.523126914132845,37.669101138523445,36.51151806180739,35.09461592824176,33.4685660589938,31.68613756116441,29.79954287254931,27.85781056499227,25.904781675716006,23.977848584339025,22.107355107094232,20.316580169122567,18.622180340472344,17.034910540143436,15.560519344742952,14.200684971699307,12.953926533407436,11.816430684568688,10.782764074787881,9.846462655040892,9.00050077632963,8.237649740029665,7.55074102037383,6.932851441770235,6.377424096575451,5.878341688030889,5.429962696874157,5.027130351977532,4.665164272072329,4.339838674879283,4.0473538981829265,3.784303812713526,3.5476408730090516,3.334642304489078,3.142876761635496,2.970173471086518,2.8145938560254042,2.674405416130726,2.5480584246716926,2.4341652212685583,2.3314817307910607,2.2388913599506695,2.1553908946771325,2.080077970906617,2.0121403388137735,1.9508463324853433,1.895536558759196,1.8456166134999108,1.8005506479867464,1.7598555744884992,1.7230960091958514,1.689879656773571,1.659853184596234,1.6326984998486256,1.6081293832054706,1.5858883846698726,1.5657440463554613,1.547488360045151,1.5309344422251503,1.515914435946625,1.5022776106476614,1.4898886212575817,1.478625932805534,1.4683804174650301,1.4590540607671836,1.4505588134488145,1.442815553804208,1.4357531596423547,1.4293076652304366,1.42342151169696,1.4180428817371376,1.4131250917568077,1.4086260585750836,1.4045078195437077,1.4007361063637818,1.3972799599551142,1.3941113885936318,1.391205066902902,1.388538060636509,1.386089585335425,1.3838407894174547,1.3817745618185868,1.3798753585886854,1.378129047075686,1.3765227687310355,1.375044815952772,1.373684519648264,1.3724321509379596,1.371278831798523,1.3702164555890886,1.3692376148030003,1.3683355359481117,1.367504021873438,1.366737399722683,1.3660304727975217,1.3653784784964316,1.364777049605497,1.36422217970584,1.3637101916054952,1.3632377085201126,1.36280162817488,1.3623990996446174,1.3620275018319437,1.3616844238923784,1.3613676477926733,1.3610751321685648,1.3608049977749592,1.3605555140920185,1.3603250870269363,1.360112247762138,1.3599156427046872,1.3597340241998084,1.3595662418151644,1.3594112346955742,1.3592680243670325,1.359135708215907,1.3590134534935634,1.358900491770854,1.358796113838084,1.3586996650570842,1.3586105411360259,1.3585281842151364,1.3584520791592574,1.3583817502967654,1.3583167583499327,1.3582566976222459,1.3582011934134586,1.358149899623928,1.3581024965393957,1.3580586887935304,1.3580182035032546,1.3579807885612436,1.3579462110509244,1.3579142557435755,1.357884723763102,1.3578574313427536,1.3578322086704215,1.3578088988293253,1.3577873568145433,1.3577674486222575,1.3577490504090148,1.3577320477179937,1.357716334768056,1.3577018137994379,1.357688394467137,1.3576759932700808,1.3576645330278332,1.3576539424111789,1.3576441554946659,1.3576351113504759,1.3576267536696849,1.3576190304104028,1.3576118934725485,1.3576052983982054,1.357599204095877,1.3575935725865649,1.3575883687693409,1.3575835602040784,1.3575791169091456,1.3575750111723837,1.3575712173804442,1.3575677118606921,1.3575644727336342,1.3575614797812434,1.35755871432112,1.357556159088271,1.3575537981258097,1.3575516166848678,1.35754960113323,1.3575477388717083,1.3575460182570516,1.3575444285301943,1.3575429597489768,1.3575416027250164,1.3575403489652444,1.3575391906200913,1.3575381204373318,1.3575371317038005,1.3575362182160347,1.3575353742531258,1.3575345945389359,1.3575338742019265,1.3575332087379293,1.3575325939784393,1.3575320260648793,1.3575315014277995,1.357531016769063,1.3575305690448072,1.3575301554473111,1.3575297733848488,1.3575294204601864,1.3575290944505758,1.3575287932948865,1.3575285150991945,1.357528258096631,1.3575280205395064,1.3575278008392584,1.3575275976396262,1.3575274097853312,1.3575272362508297,1.3575270760711364,1.3575269282974896,1.357526791985254,1.3575266662099874,1.3575265500999765,1.3575264428698535,1.357526343840035,1.3575262524307847,1.3575261681276152,1.3575260904265394,1.3575260187833702,1.357525952610826,1.3575258913950707,1.357525834846656,1.3575257814121244,1.3575257290225764,1.3575256769139576,1.3575256258474582,1.357525577474608,1.3575255334884386,1.3575254949521693,1.3575254619914123,1.3575254338749205,1.3575254093923825,1.3575253873657336,1.3575253671028715,1.3575253486195702,1.357525332516744,1.357525319506057,1.3575253097271645,1.357525302194672,1.3575252949521115,1.3575252868555348,1.3575252792381192,1.3575252601759027,1.3575252135033977,1.3575251359056042,1.3575250382106772,1.3575249387702377,1.3575248552225863,1.3575247983690437,1.3575247698051003,1.3575247633359997,1.3575247690708163,1.3575247784300117,1.3575247881188575,1.3575248014130192,1.357524825872968,1.3575248678507716,1.3575249258761695,1.3575249872086887,1.3575250345188914,1.3575250714284888,1.3575250896200064,1.3575250114031516,1.3575247898663976,1.3575244489054816,1.3575240627968108,1.3575237160813431,1.3575234688655722,1.3575233397934954,1.3575233089593293,1.357523335915189,1.3575233836810057,1.357523438285597,1.3575235148580096,1.357523645647057,1.357523852574367,1.3575241170222156,1.3575243725219965,1.3575245619569924,1.3575247227407752,1.3575247687212215,1.3575245591940328,1.357524078361736,1.3575234385249304,1.357522804839044,1.3575223144761777,1.3575220285365903,1.3575219281076703,1.3575219464698387,1.3575220175987643,1.357522116811457,1.3575222726502703,1.3575225398935922,1.3575229419250485,1.3575234165843642,1.3575238330626547,1.3575241589633185,1.3575244028369955,1.3575244310097043,1.357524179605344,1.35752371865055,1.3575231962286571,1.3575227556130889,1.3575224770519279,1.3575223634155964,1.3575223652786839,1.3575224261850585,1.357522522842428,1.3575226778084482,1.357522933865387,1.3575232997341726,1.357523706051429,1.3575240486576212,1.3575243262245065,1.3575245006575432,1.3575245069037103,1.357524351003143,1.3575241047020965,1.357523859210761,1.3575236817004825,1.357523594971954,1.3575235832901633,1.3575236156733672,1.3575236719420776,1.3575237565800027,1.3575238909320666,1.3575240854650572,1.3575243107441233,1.3575245081835916,1.3575246596877066,1.3575247753864654,1.3575248637355934,1.357524931201584,1.3575249827244273,1.3575250220675878,1.3575250521113964],\"thickness\":2,\"color\":\"#636EFA\",\"width\":0,\"type\":\"data\",\"opacity\":0.1},\"mode\":\"lines\",\"x\":[0.0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.5,9.0,9.5,10.0,10.5,11.0,11.5,12.0,12.5,13.0,13.5,14.0,14.5,15.0,15.5,16.0,16.5,17.0,17.5,18.0,18.5,19.0,19.5,20.0,20.5,21.0,21.5,22.0,22.5,23.0,23.5,24.0,24.5,25.0,25.5,26.0,26.5,27.0,27.5,28.0,28.5,29.0,29.5,30.0,30.5,31.0,31.5,32.0,32.5,33.0,33.5,34.0,34.5,35.0,35.5,36.0,36.5,37.0,37.5,38.0,38.5,39.0,39.5,40.0,40.5,41.0,41.5,42.0,42.5,43.0,43.5,44.0,44.5,45.0,45.5,46.0,46.5,47.0,47.5,48.0,48.5,49.0,49.5,50.0,50.5,51.0,51.5,52.0,52.5,53.0,53.5,54.0,54.5,55.0,55.5,56.0,56.5,57.0,57.5,58.0,58.5,59.0,59.5,60.0,60.5,61.0,61.5,62.0,62.5,63.0,63.5,64.0,64.5,65.0,65.5,66.0,66.5,67.0,67.5,68.0,68.5,69.0,69.5,70.0,70.5,71.0,71.5,72.0,72.5,73.0,73.5,74.0,74.5,75.0,75.5,76.0,76.5,77.0,77.5,78.0,78.5,79.0,79.5,80.0,80.5,81.0,81.5,82.0,82.5,83.0,83.5,84.0,84.5,85.0,85.5,86.0,86.5,87.0,87.5,88.0,88.5,89.0,89.5,90.0,90.5,91.0,91.5,92.0,92.5,93.0,93.5,94.0,94.5,95.0,95.5,96.0,96.5,97.0,97.5,98.0,98.5,99.0,99.5,100.0,100.5,101.0,101.5,102.0,102.5,103.0,103.5,104.0,104.5,105.0,105.5,106.0,106.5,107.0,107.5,108.0,108.5,109.0,109.5,110.0,110.5,111.0,111.5,112.0,112.5,113.0,113.5,114.0,114.5,115.0,115.5,116.0,116.5,117.0,117.5,118.0,118.5,119.0,119.5,120.0,120.5,121.0,121.5,122.0,122.5,123.0,123.5,124.0,124.5,125.0,125.5,126.0,126.5,127.0,127.5,128.0,128.5,129.0,129.5,130.0,130.5,131.0,131.5,132.0,132.5,133.0,133.5,134.0,134.5,135.0,135.5,136.0,136.5,137.0,137.5,138.0,138.5,139.0,139.5,140.0,140.5,141.0,141.5,142.0,142.5,143.0,143.5,144.0,144.5,145.0,145.5,146.0,146.5,147.0,147.5,148.0,148.5,149.0,149.5,150.0,150.5,151.0,151.5,152.0,152.5,153.0,153.5,154.0,154.5,155.0,155.5,156.0,156.5,157.0,157.5,158.0,158.5,159.0,159.5,160.0,160.5,161.0,161.5,162.0,162.5,163.0,163.5,164.0,164.5,165.0,165.5,166.0,166.5,167.0,167.5,168.0,168.5,169.0,169.5,170.0,170.5,171.0,171.5,172.0,172.5,173.0,173.5,174.0,174.5,175.0,175.5,176.0,176.5,177.0,177.5,178.0,178.5,179.0,179.5,180.0,180.5,181.0,181.5,182.0,182.5,183.0,183.5,184.0,184.5,185.0,185.5,186.0,186.5,187.0,187.5,188.0,188.5,189.0,189.5,190.0,190.5,191.0,191.5,192.0,192.5,193.0,193.5,194.0,194.5,195.0,195.5,196.0,196.5,197.0,197.5,198.0,198.5,199.0,199.5,200.0],\"opacity\":0.8,\"y\":[99.99,99.98960742121844,99.98856792698841,99.98701748335246,99.98502483250783,99.98261498992105,99.97978348678707,99.97650484529761,99.97273743919067,99.96842606505848,99.96350303736877,99.95788830196915,99.95148886504062,99.94419771071148,99.9358923027537,99.92643271604554,99.9156594110923,99.90339064286403,99.88941947964281,99.8735103952899,99.85539538924256,99.83476957798094,99.8112861953761,99.78455092820379,99.7541155096867,99.71947047571254,99.68003699226749,99.63515763773829,99.58408604073293,99.5259752252641,99.4598645567269,99.38466512877066,99.29914347757749,99.2019034912728,99.0913663282162,98.96574833712482,98.82303674825566,98.66096336909284,98.47697592409345,98.26820750413484,98.03144411857009,97.76309078842482,97.45913732407166,97.11512324949668,96.72610492151605,96.28662454725173,95.79068512980614,95.23173296941465,94.60264993450336,93.89576262174842,93.10286895051458,92.21529473218595,91.22397738600009,90.11959120544329,88.89271660220214,87.53406070450916,86.03474114199284,84.38661745195031,82.58269192549253,80.61755286309094,78.48786432542137,76.1928702912197,73.73488266205042,71.11972354040333,68.35707378031854,65.46067072033381,62.448329673762004,59.341733025582286,56.16597976103004,52.94890063098771,49.720117049002255,46.51000683579349,43.348523386835474,40.26407194413083,37.28244598326704,34.425956287528805,31.71282321780443,29.156819212684255,26.767207038700736,24.548907012706554,22.502889557098037,20.626697323057996,18.915059668168748,17.36052378993163,15.95406805636927,14.685661342789713,13.544743266690851,12.5206196841347,11.602770978492188,10.781080009365349,10.045989005353537,9.38859770809752,8.800713576983114,8.274866938453412,7.804298952273002,7.3829312840251085,7.005324680875911,6.666630182141407,6.3625381503607,6.0892267717322905,5.843311925030382,5.621800314047187,5.4220455891204224,5.24170858752635,5.078721398425949,4.931254906598758,4.797690247722678,4.67659326737639,4.5666921595035905,4.466857836275217,4.376086606299093,4.293485066025425,4.218256906633784,4.149691326017748,4.087152957691809,4.030073076013566,3.9779418398653483,3.930301582786681,3.886740890381648,3.8468894251566397,3.8104133953745394,3.7770115760275806,3.746411778159459,3.7183677789172997,3.6926565840296695,3.669076019637585,3.6474426033148486,3.6275896607227063,3.609365636087368,3.59263260654826,3.577264953465568,3.5631481721667178,3.550177814269255,3.5382585432642304,3.527303281313702,3.517232443407084,3.507973257506911,3.499459141518634,3.4916291487615254,3.4844274655599117,3.4778029590845283,3.471708763998423,3.4661019104157544,3.4609429890810595,3.4561958420995387,3.451827286193639,3.447806859547008,3.4441065924471173,3.4407007963687684,3.437565872460513,3.434680138620807,3.4320236688142263,3.4295781481580656,3.427326739845577,3.4252539640549773,3.423345586511134,3.4215885161067967,3.419970712085891,3.4184810988609238,3.4171094869927696,3.4158465018300754,3.4146835175218486,3.4136125968146525,3.41262643543356,3.4117183109476175,3.4108820362250243,3.410111916651438,3.4094027102940383,3.408749591907984,3.408148119538797,3.4075942040090985,3.407084080758052,3.406614283847372,3.406181622156743,3.405783157643607,3.4054161851373097,3.4050782137429367,3.4047669498977964,3.4044802816635142,3.4042162643486003,3.403973107225126,3.4037491612695367,3.4035429079138355,3.4033529487555767,3.403177996047626,3.403016863846725,3.402868460013362,3.4027317787618445,3.4026058938358257,3.4024899522222074,3.402383168343785,3.4022848187070442,3.402194236989903,3.402110809540045,3.4020339712180143,3.4019632015205845,3.401898021077214,3.4018379883939116,3.401782696859253,3.401731771992263,3.4016848689017505,3.401641669942072,3.4016018825553345,3.4015652372903764,3.401531485984561,3.4015004000853826,3.401471769085107,3.4014453991019455,3.4014211115697863,3.401398742025778,3.4013781389984405,3.4013591629818394,3.401341685489096,3.401325588180051,3.401310762058665,3.401297106735685,3.401284529751248,3.401272945950441,3.4012622769026515,3.4012524503673305,3.401243399811028,3.4012350639542293,3.4012273863572364,3.4012203150383913,3.40121380212181,3.4012078035125675,3.4012022785974985,3.4011971899699027,3.401192503176457,3.4011881864845774,3.4011842106682884,3.4011805488104216,3.401177176118649,3.4011740697570856,3.4011712086938117,3.401168573557509,3.4011661465071086,3.401163911111104,3.4011618522359477,3.4011599559431573,3.4011582093946524,3.401156600765747,3.401155119165209,3.4011537545617525,3.4011524977163554,3.4011513401198163,3.401150273935046,3.401149291943659,3.4011483874967046,3.4011475544703904,3.4011467872227046,3.4011460805570835,3.4011454296894157,3.401144830215331,3.4011442780790673,3.4011437695447464,3.4011433011703742,3.4011428697845383,3.401142472465483,3.401142106522126,3.4011417694764923,3.4011414590471287,3.4011411731332446,3.4011409097995613,3.4011406672623035,3.401140443877203,3.401140238131423,3.4011400486297396,3.40113987406963,3.4011397132547723,3.4011395650997276,3.4011394286194596,3.401139302913246,3.401139187149233,3.4011390805530035,3.4011389824012777,3.401138892020148,3.401138808786117,3.401138732127658,3.4011386615250028,3.4011385965064957,3.4011385366409415,3.401138481527166,3.4011384307842683,3.4011383840489366,3.4011383409902,3.4011383013317484,3.401138264661448,3.401138230515884,3.4011381986061044,3.4011381688462254,3.4011381412757835,3.401138115954791,3.4011380928798305,3.401138071944359,3.401138052946612,3.401138035634167,3.4011380197653476,3.401138005164153,3.4011379917473854,3.4011379795100174,3.401137968467664,3.4011379585733006,3.401137949648997,3.401137941402609,3.401137933640309,3.4011379264834876,3.4011379186640394,3.4011379084329265,3.401137895373358,3.4011378805556243,3.401137865855386,3.4011378530947467,3.401137843398044,3.401137836936415,3.4011378330668225,3.401137830752378,3.401137829081466,3.40113782768333,3.4011378268675028,3.40113782739364,3.401137829907063,3.401137834253534,3.4011378391145417,3.4011378426816514,3.401137845249986,3.4011378462188513,3.4011378385213473,3.4011378177838245,3.40113778606149,3.401137750041536,3.4011377174191537,3.4011376937345768,3.4011376807951605,3.4011376769012074,3.4011376784477014,3.401137682086393,3.4011376865037093,3.401137692999818,3.4011377044428013,3.4011377228193105,3.4011377465092982,3.4011377695774065,3.4011377868026202,3.4011378013332374,3.4011378064608446,3.4011377908051337,3.4011377529273377,3.4011377017364453,3.4011376505188275,3.401137610445267,3.4011375866540114,3.401137577853329,3.4011375788320404,3.4011375843116745,3.4011375922192286,3.4011376047050463,3.401137626075991,3.401137658259939,3.4011376964636546,3.4011377303322874,3.4011377569158348,3.4011377770531244,3.401137781204428,3.4011377646901555,3.40113773247144,3.401137695230848,3.4011376634296964,3.4011376430739926,3.401137634600915,3.4011376346034052,3.401137639041857,3.4011376461491127,3.40113765741798,3.401137675869228,3.4011377022326093,3.401137731733752,3.4011377568743812,3.4011377772260882,3.40113779043092,3.401137792264149,3.4011377830952143,3.4011377676150456,3.401137751851641,3.4011377403193364,3.4011377346498293,3.401137733922848,3.4011377361514343,3.4011377399810776,3.401137745633471,3.40113775446437,3.4011377672110212,3.4011377820777837,3.4011377952427693,3.4011378053737427,3.401137813124212,3.4011378190530523,3.4011378235884,3.4011378270579216,3.4011378297117543,3.401137831741659]},{\"name\":\"Exposed\",\"line\":{\"color\":\"#EF553B\"},\"error_y\":{\"array\":[0.0,0.00013752260390598428,0.00011978757297936038,0.00010528994511503777,0.0003013415653260148,0.0006061463319159142,0.0010022024429614496,0.0014990993314183466,0.002113885970932194,0.002868728045845603,0.0037905860310715107,0.004911525744052564,0.006269357104662497,0.007908501808983245,0.009881058105960166,0.012248060924634508,0.015080951435303417,0.018463280221761278,0.022492675058827554,0.027283110913251092,0.032967523178039415,0.03970081480407344,0.04766330806051206,0.057064704412948725,0.06814860743232763,0.08119769586335704,0.09653960169657122,0.11455359887240463,0.13567813094101114,0.16041933321247148,0.18936054416705936,0.223172947376357,0.2626273025303515,0.30860677316884233,0.3621210088722732,0.42432103665421456,0.49651528439032744,0.5801854459517157,0.6770031067286115,0.7888451145751831,0.9178076042395912,1.066217114682373,1.2366349925307556,1.4318579875786825,1.6549050017341624,1.9089934946125389,2.1974933951558526,2.523857381908923,2.891525174644674,3.3037832640244438,3.763588852666308,4.273324569444733,4.834512300457582,5.447452775173246,6.110808049592803,6.821127382445667,7.572313866281033,8.35511369860376,9.156600667963097,9.959772798971205,10.74329293951237,11.481490010409221,12.14469905080836,12.700034483143114,13.112612771327228,13.34737812672821,13.371277856961882,13.155867874931678,12.680046531502565,11.932750039874374,10.91556453592973,9.644975982925162,8.155441255039939,6.506013621993508,4.803105586037722,3.293702476634169,2.6490942466452365,3.4668304434786386,5.037264264598994,6.768505029608943,8.455540225756527,10.014393626829452,11.40262703976247,12.598155785053175,13.591817992358287,14.3836847615921,14.980629701709267,15.394406602297803,15.640067215067846,15.734640578659151,15.696064193608022,15.542351811436305,15.290972501289584,14.958413862977244,14.559899261352422,14.109228629915071,13.618713317122458,13.099182485516096,12.560037353869413,12.009338640114779,11.45391435575116,10.899475653786327,10.350736680708112,9.811530770139038,9.284920843814671,8.7733030355266,8.278500060099054,7.801846398929792,7.344263620198918,6.9063267628453815,6.488322914847827,6.0903019278209465,5.712120169049192,5.353478343621518,5.013953601008051,4.693026801242642,4.3901058478088295,4.104545009962654,3.835661274589646,3.5827478792041214,3.3450854421561136,3.121951070329241,2.9126258755719796,2.7164008432387905,2.5325815924505,2.360492038769574,2.1994771661788675,2.048905046837599,1.9081683270943184,1.7766851250566251,1.6538995365042097,1.5392818202817733,1.4323282788178795,1.3325609058678374,1.2395268917371345,1.1527979897038891,1.071969737017735,0.9966606528311701,0.9265113469710875,0.8611836026137222,0.8003594299624346,0.7437401345510684,0.6910453756040307,0.6420122231656625,0.5963942604274327,0.5539606868240574,0.5144954554748989,0.4777964346949818,0.4436746120147277,0.41195332658412476,0.38246752577215976,0.3550630713075537,0.3295960689985406,0.3059322355985743,0.2839462951203135,0.2635214112354867,0.24454865287430505,0.22692648445347322,0.21056028619020245,0.1953619077216996,0.18124924200684991,0.16814582782627238,0.15598047448584515,0.14468691187286373,0.13420346272262781,0.12447273300184884,0.11544132214382824,0.10705955502062084,0.09928122750517861,0.0920633704546024,0.08536602793018236,0.07915205069236186,0.07338690396666779,0.06803848731443217,0.0630769655349553,0.058474612236027734,0.05420566396157529,0.050246183119357454,0.04657393092696825,0.04316824850076069,0.04000994641040788,0.03708120200925526,0.03436546356727127,0.03184736056760718,0.029512620453028583,0.027347991769113237,0.025341171636026383,0.02348073881589596,0.021756091199702565,0.020157387682764764,0.01867549423050019,0.01730193374358298,0.0160288393217025,0.014848910661001077,0.013755373601835008,0.012741942853033367,0.011802786888492038,0.010932495523043427,0.010126049739563962,0.009378793632894332,0.008686408384750238,0.008044888108207318,0.007450517394571919,0.006899850414651261,0.0063896914705890715,0.005917076963624349,0.005479258771403299,0.0050736886583903715,0.004698003832079945,0.004350013550161204,0.004027686671930343,0.00372914011962087,0.0034526281735732917,0.003196532532900831,0.00295935308164168,0.0027396993092937685,0.002536282344091815,0.0023479075674728996,0.002173467787160133,0.002011936887351373,0.001862363908422948,0.0017238675819343573,0.0015956312412904626,0.0014768981164574998,0.0013669669747930304,0.0012651880753190474,0.0011709594110453135,0.0010837232193833062,0.0010029627442724922,0.0009281992353908308,0.0008589891697115114,0.0007949216787121066,0.000735616160581516,0.000680720052103167,0.0006299067818026432,0.0005828738619685721,0.0005393411082616666,0.0004990490040830051,0.00046175719005225397,0.0004272430628657249,0.0003953004725793358,0.00036573851097525056,0.00033838038612606493,0.00031306237956181613,0.00028963288258334675,0.0002679515072383475,0.00024788826529709157,0.00022932280522468848,0.00021214369266640094,0.0001962477441428168,0.0001815394522785778,0.00016793039429246066,0.00015533868551004403,0.0001436884986281242,0.0001329096287609997,0.00012293709062098662,0.00011371073990278068,0.00010517491540085883,9.727810159218085e-5,8.997261336427015e-5,8.321430526171552e-5,7.696230706502949e-5,7.117878570201165e-5,6.582873043046829e-5,6.0879753913277555e-5,5.630189624862836e-5,5.206740977611657e-5,4.8150632038543306e-5,4.4527988317399825e-5,4.1177628248283836e-5,3.807916928105466e-5,3.521360552834863e-5,3.2563286439617515e-5,3.011190277588608e-5,2.784444554016553e-5,2.574712602316418e-5,2.3807261982701704e-5,2.2013146194342023e-5,2.035391917997092e-5,1.8819467836292422e-5,1.7400365959032446e-5,1.6087861304819974e-5,1.4873896851037312e-5,1.3751131296410573e-5,1.2712895619317361e-5,1.1752983199264266e-5,1.086537118664079e-5,1.0046040927989562e-5,9.292094896993533e-6,8.599493479895617e-6,7.962729805503835e-6,7.375542114139094e-6,6.831898913659128e-6,6.32679425741189e-6,5.85662216373417e-6,5.419082255139804e-6,5.012714352346881e-6,4.636259600674927e-6,4.2880859530940374e-6,3.965893611527516e-6,3.66683980027688e-6,3.3880967719217002e-6,3.1276731388365656e-6,2.885079753314479e-6,2.6611309034914555e-6,2.4558039251132703e-6,2.2660993202325015e-6,2.1029828209369836e-6,1.9832322460890344e-6,1.913342947578929e-6,1.8860427955639725e-6,1.8815239884781765e-6,1.8745282554126837e-6,1.8451749815308331e-6,1.7863684635854173e-6,1.7038827384863152e-6,1.6105262053872647e-6,1.5181481897742306e-6,1.4311726390771949e-6,1.344259206409874e-6,1.2454911020641971e-6,1.1249008528401715e-6,9.850303567216559e-7,8.456770279375164e-7,7.318189289344635e-7,6.377921878981349e-7,5.707540942869109e-7,6.297185648155793e-7,9.266607358724577e-7,1.4553107760293584e-6,2.080110962387976e-6,2.6474445313706084e-6,3.0506251762591352e-6,3.2558090098047666e-6,3.2956176025314703e-6,3.238080762504088e-6,3.145717407931179e-6,3.042278221606434e-6,2.902274533203045e-6,2.6711347365867354e-6,2.3116570616214768e-6,1.8552515877737725e-6,1.41435832728197e-6,1.0857362378268576e-6,8.070066661133776e-7,7.182508133888894e-7,1.0541778741463489e-6,1.8480745968962927e-6,2.911712789495105e-6,3.967424068193945e-6,4.78497051636402e-6,5.261466335730442e-6,5.427906724145436e-6,5.395432687499967e-6,5.274333314497112e-6,5.10607567077028e-6,4.8432811819800486e-6,4.39459537006219e-6,3.7208064343185715e-6,2.925338216681565e-6,2.2264462954903477e-6,1.6791334180888686e-6,1.2686772164291736e-6,1.2153478468748965e-6,1.6257798360875484e-6,2.3849794016455142e-6,3.2475106911221097e-6,3.975751426261521e-6,4.436391673876636e-6,4.624211305104547e-6,4.62068492848374e-6,4.519166634481152e-6,4.358364249299008e-6,4.1012056273263355e-6,3.6770198245080593e-6,3.071184981819706e-6,2.398036569750699e-6,1.829887646236679e-6,1.3695890149544826e-6,1.079373937740728e-6,1.0660279142044224e-6,1.3200053731148744e-6,1.7234796409921915e-6,2.12628402434629e-6,2.417728677639698e-6,2.5600892332458116e-6,2.5790555018524877e-6,2.5254913748012047e-6,2.4326189931550807e-6,2.293176167668575e-6,2.0721374335940206e-6,1.7522191571042552e-6,1.3816073733772945e-6,1.0565817057505034e-6,8.071148697203145e-7,6.165692098815507e-7,4.7103611702770746e-7,3.598778486273616e-7,2.749668850184097e-7,2.1011053508947357e-7,1.6056874933907936e-7],\"thickness\":2,\"color\":\"#EF553B\",\"width\":0,\"type\":\"data\",\"opacity\":0.1},\"mode\":\"lines\",\"x\":[0.0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.5,9.0,9.5,10.0,10.5,11.0,11.5,12.0,12.5,13.0,13.5,14.0,14.5,15.0,15.5,16.0,16.5,17.0,17.5,18.0,18.5,19.0,19.5,20.0,20.5,21.0,21.5,22.0,22.5,23.0,23.5,24.0,24.5,25.0,25.5,26.0,26.5,27.0,27.5,28.0,28.5,29.0,29.5,30.0,30.5,31.0,31.5,32.0,32.5,33.0,33.5,34.0,34.5,35.0,35.5,36.0,36.5,37.0,37.5,38.0,38.5,39.0,39.5,40.0,40.5,41.0,41.5,42.0,42.5,43.0,43.5,44.0,44.5,45.0,45.5,46.0,46.5,47.0,47.5,48.0,48.5,49.0,49.5,50.0,50.5,51.0,51.5,52.0,52.5,53.0,53.5,54.0,54.5,55.0,55.5,56.0,56.5,57.0,57.5,58.0,58.5,59.0,59.5,60.0,60.5,61.0,61.5,62.0,62.5,63.0,63.5,64.0,64.5,65.0,65.5,66.0,66.5,67.0,67.5,68.0,68.5,69.0,69.5,70.0,70.5,71.0,71.5,72.0,72.5,73.0,73.5,74.0,74.5,75.0,75.5,76.0,76.5,77.0,77.5,78.0,78.5,79.0,79.5,80.0,80.5,81.0,81.5,82.0,82.5,83.0,83.5,84.0,84.5,85.0,85.5,86.0,86.5,87.0,87.5,88.0,88.5,89.0,89.5,90.0,90.5,91.0,91.5,92.0,92.5,93.0,93.5,94.0,94.5,95.0,95.5,96.0,96.5,97.0,97.5,98.0,98.5,99.0,99.5,100.0,100.5,101.0,101.5,102.0,102.5,103.0,103.5,104.0,104.5,105.0,105.5,106.0,106.5,107.0,107.5,108.0,108.5,109.0,109.5,110.0,110.5,111.0,111.5,112.0,112.5,113.0,113.5,114.0,114.5,115.0,115.5,116.0,116.5,117.0,117.5,118.0,118.5,119.0,119.5,120.0,120.5,121.0,121.5,122.0,122.5,123.0,123.5,124.0,124.5,125.0,125.5,126.0,126.5,127.0,127.5,128.0,128.5,129.0,129.5,130.0,130.5,131.0,131.5,132.0,132.5,133.0,133.5,134.0,134.5,135.0,135.5,136.0,136.5,137.0,137.5,138.0,138.5,139.0,139.5,140.0,140.5,141.0,141.5,142.0,142.5,143.0,143.5,144.0,144.5,145.0,145.5,146.0,146.5,147.0,147.5,148.0,148.5,149.0,149.5,150.0,150.5,151.0,151.5,152.0,152.5,153.0,153.5,154.0,154.5,155.0,155.5,156.0,156.5,157.0,157.5,158.0,158.5,159.0,159.5,160.0,160.5,161.0,161.5,162.0,162.5,163.0,163.5,164.0,164.5,165.0,165.5,166.0,166.5,167.0,167.5,168.0,168.5,169.0,169.5,170.0,170.5,171.0,171.5,172.0,172.5,173.0,173.5,174.0,174.5,175.0,175.5,176.0,176.5,177.0,177.5,178.0,178.5,179.0,179.5,180.0,180.5,181.0,181.5,182.0,182.5,183.0,183.5,184.0,184.5,185.0,185.5,186.0,186.5,187.0,187.5,188.0,188.5,189.0,189.5,190.0,190.5,191.0,191.5,192.0,192.5,193.0,193.5,194.0,194.5,195.0,195.5,196.0,196.5,197.0,197.5,198.0,198.5,199.0,199.5,200.0],\"opacity\":0.8,\"y\":[0.01,0.009427856333653083,0.009524355221164871,0.01009713585854172,0.011035880001200106,0.01228223589216413,0.013811376592284347,0.015620780056238369,0.017723503575682868,0.020144268629982774,0.022917318218019737,0.026085409133964264,0.02969954979112484,0.033819248590469635,0.03851313392293663,0.04385986728273421,0.04994930914963311,0.05688392206049107,0.06478041152071468,0.07377161708213327,0.08400867318246807,0.09566346791607194,0.10893143076894093,0.12403468860761586,0.1412256274728464,0.16079091378897584,0.18305601678008804,0.2083902974513582,0.23721270053134264,0.269998139053616,0.3072846012841747,0.3496810695059946,0.397876275447163,0.4526483366245027,0.5148753831566882,0.5855470616319306,0.6657770909677886,0.756816475014094,0.8600677501430651,0.9770996407865917,1.109662147286852,1.259701603380927,1.4293744525084873,1.6210607535677923,1.8373740684059336,2.081168837067464,2.3555411533700785,2.663822228399181,3.0095635009301165,3.396506597869546,3.8285402180588464,4.3096313586489,4.84373838729162,5.434692127672775,6.086046735489682,6.8008961052610974,7.581645631040754,8.429763558463025,9.345487035196596,10.327518301085698,11.372703627526251,12.475729787337562,13.62886631035849,14.821774885933008,16.041425923269,17.272169589222262,18.495964934974033,19.69281086947282,20.841362975851272,21.919710909102733,22.906339962105115,23.781067293773894,24.526047528946222,25.126611631681083,25.57197997867356,25.855722155619333,25.97591383161956,25.935049385321513,25.739674501847276,25.399844379825836,24.92841141799982,24.34026321431608,23.6515417576109,22.8789247466751,22.03899144068482,21.14769960374843,20.219988728507094,19.269501073852474,18.30841247626282,17.347355530333033,16.39541775005644,15.460195514711833,14.547888760561204,13.663419402324745,12.810564646485984,11.992095052010116,11.209909633234792,10.465165471115213,9.758396670549713,9.089622625305486,8.458444821247598,7.864131045471723,7.305688990760253,6.781928756716497,6.291515762022796,5.833015475097373,5.404929969992056,5.005728310180753,4.633870928722556,4.287829075166279,3.966100282079866,3.667220224715982,3.3897716178528476,3.132390775991271,2.89377207521951,2.6726707718796243,2.4679046081174953,2.2783542247392523,2.1029628152615323,1.940735094012313,1.790735744509414,1.6520874891170771,1.5239689354689987,1.4056121654642395,1.2963002550817762,1.1953647110657535,1.102182884675843,1.0161753953130546,0.9368036258307245,0.8635672524017481,0.796001863160175,0.7336766749625077,0.6761923379055502,0.6231788395423006,0.5742935258034235,0.5292192274528912,0.48766247774796523,0.44935185229610175,0.4140363976733929,0.3814841610791138,0.35148081094382455,0.32382835448933944,0.2983439367626337,0.27485871693917224,0.2532168304903377,0.23327441673302035,0.21489871731836546,0.1979672372276559,0.18236696926205542,0.16799367350575337,0.15475120657072866,0.14255090469486442,0.13131100949843152,0.12095613747259454,0.11141678819342651,0.10262889051529274,0.09453338357931641,0.08707582806063784,0.08020604719983589,0.07387779670174419,0.06804845814194603,0.06267875672944495,0.05773250023661052,0.05317633861473095,0.04897954227729398,0.04511379689088234,0.041553014117830356,0.03827315787527622,0.03525208314166449,0.032469387797070405,0.02990627572785975,0.027545430775860778,0.02537090067759627,0.02336798991939065,0.021523160742516173,0.019823942215652833,0.018258846439490377,0.016817291068459233,0.015489528084124932,0.014266578052962104,0.013140169622553516,0.01210268381582664,0.011147102651854604,0.01026696171652331,0.0094563065214339,0.008709652431247411,0.008021947535117988,0.007388538555344775,0.006805139397297971,0.0062678021856745515,0.005772890605471191,0.005317055346430578,0.004897211461600712,0.004510517485604579,0.004154356216338884,0.0038263170694787098,0.0035241797430579764,0.0032458992049005293,0.00298959185682567,0.002753522792113313,0.0025360940647101695,0.0023358338850834252,0.0021513866650248047,0.0019815038423529824,0.0018250354263509823,0.0016809222159390694,0.0015481886462585489,0.0014259361786196582,0.0013133372188897563,0.0012096295132461518,0.0011141109892535313,0.001026135007988905,0.0009451059901315868,0.0008704753849378083,0.0008017379556271712,0.0007384283579181247,0.0006801179902578638,0.0006264120947171208,0.0005769470864398722,0.000531388088860463,0.0004894266694179017,0.00045077874977051985,0.0004151826796020843,0.00038239746750218126,0.0003522011523955911,0.0003243893021603976,0.0002987736289423999,0.0002751807127282746,0.0002534508259795239,0.00023343685255912855,0.0002150032937946908,0.0001980253533195288,0.0001823880903950799,0.00016798563691765826,0.0001547204870230035,0.00014250283489713363,0.00013124996380606719,0.00012088568690500901,0.00011133983332079248,0.0001025477744376629,9.444998658783919e-5,8.699164731745396e-5,8.012226306601304e-5,7.379532646198457e-5,6.796800150108118e-5,6.260083463393418e-5,5.7657489249492624e-5,5.3104500197218834e-5,4.891104402938309e-5,4.504872879305924e-5,4.149140932940347e-5,3.821500515750769e-5,3.519733360386614e-5,3.241796031696532e-5,2.9858063295461433e-5,2.750030768568288e-5,2.5328729582988318e-5,2.3328627841667542e-5,2.148646345957832e-5,1.9789766456607495e-5,1.822705031016673e-5,1.6787733946723106e-5,1.546207101492694e-5,1.4241085684772103e-5,1.3116513525965757e-5,1.2080745121068888e-5,1.1126768588483312e-5,1.024812841614913e-5,9.438907101748465e-6,8.6936491266015e-6,8.007303647507105e-6,7.37519526923575e-6,6.793007364122309e-6,6.256767732633665e-6,5.76283095099304e-6,5.3078553934141e-6,4.888775647225428e-6,4.502772859161972e-6,4.147246460359547e-6,3.819790716085775e-6,3.518178634054799e-6,3.240353942166299e-6,2.9844291128965652e-6,2.7486837669621102e-6,2.531553233961879e-6,2.3315906825978504e-6,2.1474182065660536e-6,1.9780181803271227e-6,1.822587097325877e-6,1.6801648783670557e-6,1.5495795792790437e-6,1.4295624467848692e-6,1.3189072439080916e-6,1.2165966350233782e-6,1.121858623795449e-6,1.0341475747384943e-6,9.530672209660081e-7,8.782672668961254e-7,8.093507352201055e-7,7.458260823402822e-7,6.871263157370642e-7,6.326968903222115e-7,5.821250387920965e-7,5.352454033179118e-7,4.921103825371782e-7,4.526481966484771e-7,4.163141133585222e-7,3.8480890815083393e-7,3.606265124426274e-7,3.441579088966096e-7,3.334421281712229e-7,3.252526533127665e-7,3.1646682502038803e-7,3.050926469281003e-7,2.9067516300984224e-7,2.740733192247747e-7,2.567879285796441e-7,2.401320328936401e-7,2.2456659570949583e-7,2.0947706900050415e-7,1.935399515779823e-7,1.756229994121249e-7,1.5587825742308295e-7,1.3632355871615313e-7,1.1976558066927125e-7,1.0565971296871302e-7,9.489701518150158e-8,9.86949610362927e-8,1.2397710438654558e-7,1.6741008114057358e-7,2.1827134323985579e-7,2.6423326700154633e-7,2.9641142456705126e-7,3.1188290656777435e-7,3.133256143424285e-7,3.064614011175908e-7,2.966048334950707e-7,2.858251673744839e-7,2.7202188608047886e-7,2.5059383295632206e-7,2.183485860348234e-7,1.778522685984301e-7,1.3856046649728927e-7,1.087899988403158e-7,8.350028474830133e-8,7.338480027238369e-8,9.659520983409086e-8,1.5541595965130322e-7,2.3561582739428787e-7,3.1597748397850546e-7,3.7866122020648097e-7,4.1545693368858075e-7,4.2841845068310064e-7,4.2585627319879674e-7,4.161888939000778e-7,4.0271891004222455e-7,3.820082928467188e-7,3.471773304007066e-7,2.9514396033452216e-7,2.3355444318152074e-7,1.7893259849215727e-7,1.3598328119126678e-7,1.0336408757665275e-7,9.629867661935951e-8,1.2225342183492635e-7,1.7330684425739033e-7,2.3240538156974086e-7,2.8284882583265943e-7,3.150485205586549e-7,3.283046901269145e-7,3.2805371487186515e-7,3.2074176360563395e-7,3.0918795185121704e-7,2.9100810866777476e-7,2.6137930764892735e-7,2.1913554845264973e-7,1.7189636410256777e-7,1.3162914304533914e-7,9.901675081025583e-8,7.782198364287142e-8,7.478736292604734e-8,8.932247082438897e-8,1.1393917783027922e-7,1.3901524079127648e-7,1.5734450477446992e-7,1.663219997889913e-7,1.67416134807111e-7,1.6379795669658364e-7,1.5762906060346309e-7,1.4855521100296125e-7,1.3441205907039794e-7,1.1402252220865677e-7,9.025242550956814e-8,6.920182188078422e-8,5.2996914236952286e-8,4.059436962657026e-8,3.110192172994528e-8,2.3836001255230538e-8,1.827342356642501e-8,1.4014758855508398e-8,1.0753776822164036e-8]},{\"name\":\"Infected\",\"line\":{\"color\":\"#00CC96\"},\"error_y\":{\"array\":[0.0,0.00020556675307000129,0.0003584474578113116,0.0004950165651947553,0.0006366418222856636,0.0007967834210732097,0.0009850500578565933,0.001209496849248307,0.0014779374929382162,0.001798726266818737,0.0021812689416825233,0.002636406273264219,0.0031767497143303735,0.0038170146408938233,0.0045743784097058374,0.005468881380721735,0.006523884726158731,0.007766597022196542,0.009228681529499915,0.010946956422207544,0.012964202333446966,0.015330091340723013,0.01810225570408702,0.02134751362553932,0.02514327759331186,0.029579161462825108,0.034758820867170685,0.04080204312594864,0.04784713955588604,0.05605363810568061,0.06560534396832357,0.07671376591714636,0.08962197701311275,0.10460893870075456,0.12199422499441312,0.14214330981577122,0.1654731841313152,0.1924587067462908,0.22363900404832696,0.25962439789041813,0.3011032995100938,0.34884892101278064,0.4037263679022672,0.4666972869870352,0.5388246058812902,0.621273285341137,0.7153094257056416,0.8222944847571168,0.943671124365752,1.0809440357982458,1.2356460248645331,1.409298893002815,1.6033504331649784,1.8190984726613808,2.057591847089856,2.3195092307328817,2.6050249477075633,2.9136364370734515,3.243992426156577,3.593700784559589,3.959149990220729,4.33534685453843,4.715798587203392,5.092461275186194,5.455805399669893,5.7949500441675825,6.0980008167951105,6.352492178537671,6.54599212104107,6.6668255209181515,6.704764984972236,6.651880956065318,6.503159837484361,6.257084837812517,5.9159189264284775,5.4857862152931,4.976532738167589,4.401408129881585,3.776745680153854,3.1220120101464017,2.4610861190229563,1.8276921920050007,1.2850442145473586,0.9784980388440356,1.0752046935652189,1.4470910114817648,1.894688426526023,2.335276480491922,2.7393053539447627,3.095196530366432,3.398659040518801,3.6490427393843485,3.847801032675931,3.997689942914509,4.10227744158491,4.165607138390496,4.191954771504653,4.1856470588791845,4.150929451346522,4.091870905925157,4.012296459850838,3.915746563659956,3.805452077105919,3.6843258436770854,3.5549656520236805,3.419662162967389,3.2804161398291938,3.1389562886480302,2.9967608944126987,2.855080996146816,2.7149620494053175,2.5772659115884022,2.442692137295499,2.3117971290908503,2.1850126618054957,2.0626630336662535,1.9449794334655595,1.8321141484304915,1.7241524168629088,1.6211231721256794,1.5230086819605237,1.4297530366060291,1.3412689324859306,1.257444330935582,1.1781476316872257,1.103232300876225,1.0325408636230442,0.965908381851533,0.9031650005220051,0.8441384327292647,0.7886559112895511,0.7365456843131124,0.6876383476579925,0.6417679815008223,0.5987728914918552,0.5584961708436041,0.5207863213316644,0.4854974567605543,0.4524895777201825,0.4216287037787018,0.39278697808442326,0.3658425892449724,0.34067971101690675,0.31718846808048357,0.29526471956083394,0.27480993624255295,0.25573101675761206,0.2379401199507887,0.22135442704434377,0.20589592258632253,0.19149122490757858,0.17807133018019275,0.16557141516630403,0.15393062321025475,0.1430918743175848,0.1330016588016097,0.12360982602347992,0.1148694108430999,0.1067364614762008,0.09916984445120876,0.09213109274548302,0.08558424394807733,0.07949569737887914,0.0738340656066496,0.06857003117358743,0.06367622484754203,0.059127109124413574,0.05489885002796762,0.05096921681471026,0.04731747651553539,0.04392430118018411,0.04077167649933265,0.03784281222617749,0.03512206165164581,0.032594851473699116,0.030247608322962135,0.028067689603002387,0.026043324538735386,0.02416355474335479,0.022418181346279372,0.02079771343287355,0.019293318497249082,0.017896777431111684,0.016600444857051224,0.015397210518181605,0.014280459505056756,0.013244040763719822,0.01228223443703735,0.011389722725711596,0.010561562507619145,0.009793159001116849,0.009080241013024912,0.00841883849709015,0.007805262468354196,0.007236085776967642,0.006708123255179751,0.006218415859624223,0.005764214697126759,0.005342966366379225,0.004952299445005593,0.0045900116414327365,0.004254057668173256,0.003942538013777974,0.0036536887424723275,0.003385872233372523,0.003137568385259823,0.002907365658750676,0.0026939536765798926,0.0024961161591609987,0.0023127241915871957,0.0021427301014910393,0.0019851616697773617,0.001839116689600965,0.0017037579026240796,0.0015783083356494252,0.0014620470353881164,0.0013543051543797244,0.0012544622769682806,0.001161942801570968,0.0010762126392589834,0.0009967764341084855,0.0009231747070089324,0.0008549813367748605,0.000791801165680463,0.0007332677425788297,0.0006790412231183401,0.0006288064328745148,0.0005822710880534673,0.0005391641597869018,0.0004992343619373748,0.0004622487387490462,0.000427991327618974,0.00039626187639570597,0.0003668747190911586,0.0003396577514250707,0.0003144514261099972,0.000291107898556649,0.00026949017856554706,0.0002494713159208865,0.0002309336434322982,0.0002137680867355596,0.00019787353945121568,0.00018315629511045042,0.00016952952358609166,0.00015691277961749553,0.00014523153438321233,0.000134416727960641,0.0001244043509113414,0.00011513508168002182,0.00010655398546826599,9.861005526677555e-5,9.125603440860252e-5,8.444826454023493e-5,7.814641245108451e-5,7.231316119249773e-5,6.691392131033431e-5,6.191658998964393e-5,5.7291364123478586e-5,5.3010597770485965e-5,4.904868515445005e-5,4.538194727851657e-5,4.1988503375817054e-5,3.884811779366367e-5,3.594202851171269e-5,3.32527853169929e-5,3.076415370895826e-5,2.8461194531823807e-5,2.6329975417348466e-5,2.435663370777327e-5,2.2528523082753438e-5,2.08348410344466e-5,1.9266392618605784e-5,1.78150188487397e-5,1.6473035465365622e-5,1.5232870423045654e-5,1.4086962163678418e-5,1.3027886807752475e-5,1.2048620766630205e-5,1.1142815026055642e-5,1.0304957902986315e-5,9.530334780437312e-6,8.814756661869131e-6,8.154123984015507e-6,7.544017342308952e-6,6.9796637043770126e-6,6.456848222491368e-6,5.973237667415372e-6,5.518034348444128e-6,5.076801848540292e-6,4.644209310119269e-6,4.2256158387338735e-6,3.832173878321604e-6,3.474415331595837e-6,3.1577998885960186e-6,2.8815315262551006e-6,2.6399943660599816e-6,2.4253995313816063e-6,2.2305708557352993e-6,2.0511932023877065e-6,1.886812675772001e-6,1.7400258363153398e-6,1.614082595634716e-6,1.5097910821025534e-6,1.4225341569010702e-6,1.341603499132957e-6,1.2593214852264721e-6,1.1832983122343177e-6,1.0543816561038843e-6,8.666074845374796e-7,1.0049721897922893e-6,1.6874190162679372e-6,2.5385394094915345e-6,3.284117458147647e-6,3.7909145781936984e-6,4.033562085415154e-6,4.067632466621538e-6,3.9866217290908015e-6,3.872473678799774e-6,3.7567513614370887e-6,3.6079039011814453e-6,3.3530450385013415e-6,2.930843833440353e-6,2.3554496181068114e-6,1.7498840810905134e-6,1.2811677436355941e-6,9.155360901303409e-7,7.288239815963275e-7,1.4423743849377622e-6,3.51206854694209e-6,6.715896626855213e-6,1.035181392597674e-5,1.3620903166662018e-5,1.595427150593742e-5,1.7173968848949886e-5,1.7466016592275373e-5,1.7210950107837142e-5,1.675749841550358e-5,1.6238110744190554e-5,1.5511062514699713e-5,1.4272861238745588e-5,1.2316609418289858e-5,9.816847093957027e-6,7.3992306310235256e-6,5.603284697869814e-6,4.079840993585598e-6,3.6245076162620185e-6,5.54795248995085e-6,1.000117815211504e-5,1.593984760682069e-5,2.182818730596088e-5,2.6389517151478048e-5,2.9053224424731106e-5,2.9992250731303785e-5,2.9824734642739008e-5,2.9163863544945585e-5,2.8240100309243144e-5,2.6789970771257648e-5,2.430560292579496e-5,2.056910303238094e-5,1.6155599499157382e-5,1.227861579870606e-5,9.243563364283513e-6,6.968981339678721e-6,6.682223694636943e-6,8.975273311766658e-6,1.3205960331179063e-5,1.8009379634796133e-5,2.2064534098525183e-5,2.4630412500547825e-5,2.5678347668959073e-5,2.566177638041664e-5,2.5100056788468696e-5,2.42084302530749e-5,2.2780545850623252e-5,2.042322633179843e-5,1.705524886058804e-5,1.3312878180527753e-5,1.0154684973027574e-5,7.59616811626844e-6,5.98404637560142e-6,5.913035545950148e-6,7.3297361791761265e-6,9.57794643599302e-6,1.182180714592614e-5,1.3445341752819553e-5,1.423875304140993e-5,1.4345203293175709e-5,1.4047904203555147e-5,1.3531765789808513e-5,1.2756279840308815e-5,1.1526418269045082e-5,9.746028734725046e-6,7.683513895931882e-6,5.874873906494937e-6,4.486794164572158e-6,3.4266462718197786e-6,2.6170115714460868e-6,1.998679032402732e-6,1.5264108532746771e-6,1.1657394102885574e-6,8.902829076367319e-7],\"thickness\":2,\"color\":\"#00CC96\",\"width\":0,\"type\":\"data\",\"opacity\":0.1},\"mode\":\"lines\",\"x\":[0.0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.5,9.0,9.5,10.0,10.5,11.0,11.5,12.0,12.5,13.0,13.5,14.0,14.5,15.0,15.5,16.0,16.5,17.0,17.5,18.0,18.5,19.0,19.5,20.0,20.5,21.0,21.5,22.0,22.5,23.0,23.5,24.0,24.5,25.0,25.5,26.0,26.5,27.0,27.5,28.0,28.5,29.0,29.5,30.0,30.5,31.0,31.5,32.0,32.5,33.0,33.5,34.0,34.5,35.0,35.5,36.0,36.5,37.0,37.5,38.0,38.5,39.0,39.5,40.0,40.5,41.0,41.5,42.0,42.5,43.0,43.5,44.0,44.5,45.0,45.5,46.0,46.5,47.0,47.5,48.0,48.5,49.0,49.5,50.0,50.5,51.0,51.5,52.0,52.5,53.0,53.5,54.0,54.5,55.0,55.5,56.0,56.5,57.0,57.5,58.0,58.5,59.0,59.5,60.0,60.5,61.0,61.5,62.0,62.5,63.0,63.5,64.0,64.5,65.0,65.5,66.0,66.5,67.0,67.5,68.0,68.5,69.0,69.5,70.0,70.5,71.0,71.5,72.0,72.5,73.0,73.5,74.0,74.5,75.0,75.5,76.0,76.5,77.0,77.5,78.0,78.5,79.0,79.5,80.0,80.5,81.0,81.5,82.0,82.5,83.0,83.5,84.0,84.5,85.0,85.5,86.0,86.5,87.0,87.5,88.0,88.5,89.0,89.5,90.0,90.5,91.0,91.5,92.0,92.5,93.0,93.5,94.0,94.5,95.0,95.5,96.0,96.5,97.0,97.5,98.0,98.5,99.0,99.5,100.0,100.5,101.0,101.5,102.0,102.5,103.0,103.5,104.0,104.5,105.0,105.5,106.0,106.5,107.0,107.5,108.0,108.5,109.0,109.5,110.0,110.5,111.0,111.5,112.0,112.5,113.0,113.5,114.0,114.5,115.0,115.5,116.0,116.5,117.0,117.5,118.0,118.5,119.0,119.5,120.0,120.5,121.0,121.5,122.0,122.5,123.0,123.5,124.0,124.5,125.0,125.5,126.0,126.5,127.0,127.5,128.0,128.5,129.0,129.5,130.0,130.5,131.0,131.5,132.0,132.5,133.0,133.5,134.0,134.5,135.0,135.5,136.0,136.5,137.0,137.5,138.0,138.5,139.0,139.5,140.0,140.5,141.0,141.5,142.0,142.5,143.0,143.5,144.0,144.5,145.0,145.5,146.0,146.5,147.0,147.5,148.0,148.5,149.0,149.5,150.0,150.5,151.0,151.5,152.0,152.5,153.0,153.5,154.0,154.5,155.0,155.5,156.0,156.5,157.0,157.5,158.0,158.5,159.0,159.5,160.0,160.5,161.0,161.5,162.0,162.5,163.0,163.5,164.0,164.5,165.0,165.5,166.0,166.5,167.0,167.5,168.0,168.5,169.0,169.5,170.0,170.5,171.0,171.5,172.0,172.5,173.0,173.5,174.0,174.5,175.0,175.5,176.0,176.5,177.0,177.5,178.0,178.5,179.0,179.5,180.0,180.5,181.0,181.5,182.0,182.5,183.0,183.5,184.0,184.5,185.0,185.5,186.0,186.5,187.0,187.5,188.0,188.5,189.0,189.5,190.0,190.5,191.0,191.5,192.0,192.5,193.0,193.5,194.0,194.5,195.0,195.5,196.0,196.5,197.0,197.5,198.0,198.5,199.0,199.5,200.0],\"opacity\":0.8,\"y\":[0.0,0.0008525456438700946,0.00149851022199089,0.0020331352416184363,0.002517633534118021,0.0029924823543157845,0.0034856917657613193,0.004017970299605526,0.00460597789432085,0.00526440330454361,0.006007323167432116,0.006849126764538412,0.007805183629998525,0.008892365118868803,0.010129490470864654,0.011537742978384667,0.013141086740979855,0.014966705355427505,0.017045478638901195,0.019412510399158,0.022107719262805206,0.025176503245908137,0.028670490017817823,0.032648383995871125,0.03717692494304116,0.042331968850349413,0.048199709853567675,0.05487805474665721,0.06247817671613203,0.07112625418370926,0.08096542803211577,0.09215798500260972,0.104887801909062,0.11936307321920261,0.13581930999623099,0.1545226838239912,0.17577364806420362,0.19991099319799313,0.227316123022985,0.25841773222881165,0.29369672186333634,0.33369132300072285,0.37900264622905644,0.4302997514368859,0.48832509174930117,0.5538990319876473,0.6279241964491694,0.711388653121364,0.8053667556251608,0.9110187142964349,1.0295856477801557,1.1623831165355252,1.3107868419844706,1.47621376636068,1.6600946656606799,1.8638375248181092,2.0887846688805656,2.336151771263737,2.606962092060833,2.901963757372835,3.2215416841848628,3.565620263687307,3.9335599742052327,4.3240594165082324,4.735068070226016,5.163712137664332,5.606257060616857,6.058102962418525,6.5138303305426195,6.967306615577343,7.411812779322223,7.840277279235512,8.245499200515678,8.620441460602937,8.958500182544947,9.253768149214151,9.501289117995078,9.697235010468106,9.83904207336633,9.9254524803658,9.956513823643975,9.933497065187002,9.858775921800742,9.735656459128226,9.56818735604319,9.36096445923291,9.118934021466114,8.84721206234057,8.550923291850946,8.235065511777362,7.90440014709605,7.563370547994638,7.2160432094418585,6.866074495695271,6.51669408239528,6.170703481089766,5.830489078243762,5.498041537333168,5.17498425198064,4.862604793193497,4.561887175015709,4.273547029260729,3.9980639703016942,3.7357141272391896,3.4866007466230373,3.2506807927965626,3.027791044883118,2.8176698751757354,2.6199773902449266,2.4343132821969995,2.2602315815873326,2.0972536604069996,1.9448794128906415,1.802596256163401,1.669886956152815,1.5462361270620217,1.4311349878437811,1.3240856770015557,1.224604278903527,1.1322232116361415,1.0464930408921647,0.9669837621190827,0.8932853754345372,0.8250084348381642,0.7617840427675017,0.7032636970204557,0.6491189622719302,0.5990410234918786,0.5527399723482114,0.5099441616037569,0.4703994498869611,0.4338683666501938,0.40012930869770647,0.3689757470466722,0.3402153755426331,0.3136692739655347,0.28917116668831244,0.2665666042835198,0.2457122384462017,0.22647510879698143,0.20873197819367512,0.19236866197308855,0.1772794135314597,0.163366365641985,0.15053895553045227,0.1387134220686746,0.12781232008795168,0.11776407454874636,0.10850254537961436,0.0999666277600656,0.09209989500610434,0.08485024030016401,0.07816955984617628,0.07201345244466924,0.06634094569036265,0.06111423587327319,0.05629844332202166,0.0518613939679515,0.047773415547241876,0.04400714033405122,0.040537332284142885,0.03734072223408315,0.03439585847069375,0.03168296523460224,0.02918381123467668,0.026881591785540473,0.02476081960104932,0.022807219133303785,0.021007634447488235,0.019349941301336278,0.01782296762334399,0.016416419134256958,0.015120809803420952,0.013927398564465487,0.01282813228655075,0.011815591297969299,0.010882939063698591,0.010023877242702017,0.009232603188518995,0.008503771428946517,0.007832457680307298,0.007214125367703078,0.00664459506217474,0.006120016865610701,0.00563684461024149,0.005191811223288812,0.004781907325894181,0.004404360764462165,0.004056618042382324,0.0037363271759522825,0.003441321725936457,0.0031696060409150423,0.0029193417972328034,0.0026888357796361687,0.0024765285174541563,0.002280983394839134,0.0021008771884024583,0.0019349910933200152,0.0017822024958503867,0.0016414774283739577,0.001511863565427161,0.0013924837365379154,0.0012825299611426075,0.0011812580045325225,0.0010879824116355357,0.0010020718975059311,0.0009229449414171648,0.0008500659181530347,0.0007829415010597774,0.000721117309089372,0.0006641748501701587,0.0006117286884927475,0.0005634238232416022,0.0005189332718178162,0.00047795585152715024,0.0004402141500910273,0.00040545266717444356,0.0003734360964247494,0.0003439477023743495,0.0003167878345581418,0.0002917726200932563,0.0002687327019791055,0.00024751210233926155,0.00022796716776501182,0.00020996559220900324,0.00019338551565871185,0.0001781146955322821,0.00016404974656091003,0.0001510954438510229,0.00013916408285932766,0.00012817488915944984,0.00011805347013260651,0.00010873130059794504,0.00010014525980797048,9.223721373000187e-5,8.49536164240456e-5,7.82451565731244e-5,7.2066423630165e-5,6.637559596038231e-5,6.113415320991806e-5,5.630661311236823e-5,5.186029143076235e-5,4.776508272388051e-5,4.399325912164191e-5,4.051928429620291e-5,3.731964032138436e-5,3.4372666125095623e-5,3.1658407756098405e-5,2.915848356732721e-5,2.6855966736445036e-5,2.473524899967834e-5,2.2781953889483502e-5,2.0982859435298437e-5,1.9325805559609306e-5,1.7799599695549716e-5,1.6393929389551694e-5,1.5099286112802716e-5,1.3906900979530476e-5,1.280869055842866e-5,1.1797209465875479e-5,1.0865605945887791e-5,1.0007577172256287e-5,9.217322552491974e-6,8.489495871994529e-6,7.819160688775583e-6,7.201757976383131e-6,6.6331038443959846e-6,6.1093284077353435e-6,5.626709814029603e-6,5.181850164443801e-6,4.771767484725459e-6,4.393847368799652e-6,4.0457406275000935e-6,3.7252632920540834e-6,3.4303296842957184e-6,3.158928773334547e-6,2.9091386915512305e-6,2.679164081334903e-6,2.467375887915811e-6,2.272333302966365e-6,2.0927727983904787e-6,1.9275595698137752e-6,1.7756122348532465e-6,1.6358323020531504e-6,1.5070957428338277e-6,1.3884000143210096e-6,1.279078185141417e-6,1.177097856372102e-6,1.0798330221718604e-6,9.861053482665618e-7,8.964511980918502e-7,8.124319235441213e-7,7.356978714769137e-7,6.672410911208988e-7,6.07045111766035e-7,5.541623943259069e-7,5.071211448036995e-7,4.6448311220138134e-7,4.2534277805261905e-7,3.895759795207703e-7,3.577124928856608e-7,3.3042243923893267e-7,3.077705593297995e-7,2.886054397503687e-7,2.7071265799080644e-7,2.5272955046403003e-7,2.3609922590414393e-7,2.097362111119311e-7,1.582027481433635e-7,7.802336546396695e-8,-2.09202312793298e-8,-1.2152060194886884e-7,-2.0717051817093532e-7,-2.6755726827160364e-7,-3.0095939241294977e-7,-3.12994667236499e-7,-3.1283743849558475e-7,-3.085472107181883e-7,-3.033287448878128e-7,-2.942767884643004e-7,-2.7444596678366763e-7,-2.379283009802047e-7,-1.8601728507003186e-7,-1.3048845370211426e-7,-8.753190236775062e-8,-5.441895122791159e-8,-3.648611541051689e-8,-9.724981945781373e-8,-2.7600103608638294e-7,-5.541967306660378e-7,-8.716254594688058e-7,-1.1590109408769022e-6,-1.3664679734552158e-6,-1.4776982241666169e-6,-1.5079583012096195e-6,-1.4896491589861203e-6,-1.4528642575668136e-6,-1.4093940157024328e-6,-1.3475159549523952e-6,-1.2414035328317673e-6,-1.0731620050611031e-6,-8.573467409887009e-7,-6.473382420952698e-7,-4.900917168267733e-7,-3.572674416624126e-7,-3.0920483339648045e-7,-4.4827611696893325e-7,-7.874133911228312e-7,-1.2464540117430306e-6,-1.7058541757066103e-6,-2.0651042403058e-6,-2.277968256423212e-6,-2.356059588768311e-6,-2.34625434361853e-6,-2.2960346236604808e-6,-2.2240443806725694e-6,-2.110931839960067e-6,-1.917944125624097e-6,-1.6277318229430136e-6,-1.2834137732799702e-6,-9.781454082145911e-7,-7.384632142399371e-7,-5.568169923565094e-7,-5.190296515782769e-7,-6.671990998771431e-7,-9.566887444037469e-7,-1.2913881284503055e-6,-1.577177546058658e-6,-1.7600205978039812e-6,-1.8359821504483694e-6,-1.8357127036898519e-6,-1.795553749131717e-6,-1.7314023298636995e-6,-1.629826673672671e-6,-1.4636484789243532e-6,-1.2263011794861422e-6,-9.607373038363835e-7,-7.344155947701164e-7,-5.511893670948328e-7,-4.3227158056427626e-7,-4.1567005937165865e-7,-4.980603302183373e-7,-6.372387979995695e-7,-7.789727188105041e-7,-8.826473670286231e-7,-9.335823194707193e-7,-9.400565008031078e-7,-9.199455504996199e-7,-8.85435182700423e-7,-8.345305163116513e-7,-7.550338536255616e-7,-6.403120815983421e-7,-5.065197607358465e-7,-3.8804101892894046e-7,-2.968613357453558e-7,-2.271010571554457e-7,-1.7373192881980482e-7,-1.3290193585453574e-7,-1.0166299702208517e-7,-7.776450693040356e-8,-5.9481116659780934e-8]},{\"name\":\"Recovered\",\"line\":{\"color\":\"#AB63FA\"},\"error_y\":{\"array\":[0.0,2.9186511543914024e-5,0.0001041116003432033,0.00021447248850581466,0.0003576231407622472,0.0005355931141232276,0.0007535108085842629,0.001018832556499328,0.0013410406465476357,0.0017316223175496376,0.0022042264634513013,0.002774943338418245,0.0034626807137138516,0.004289626620127121,0.005281798958591184,0.006469688774884618,0.00788900848817626,0.009581559953856802,0.01159624030628764,0.013990206777892112,0.01683022445687381,0.02019422547986039,0.024173110851040385,0.028872832141459418,0.03441679201614632,0.040948614145157464,0.04863533067074389,0.05767105273784453,0.06828117882898442,0.08072723231981419,0.095312392431982,0.1123878265838,0.1323599031567807,0.15569838930258792,0.18294578873968273,0.21472785737914418,0.2517655300349033,0.29488815129832696,0.3450484317732897,0.40333891590685916,0.4710102167900522,0.5494909740419816,0.6404090091517441,0.7456147170073755,0.8672047863459119,1.0075474443338572,1.1693067982045713,1.355466282618309,1.5693508323554823,1.8146433161506572,2.095396799179191,2.416033596489419,2.7813359009923295,3.196416846274155,3.6666712922780795,4.197699797506348,4.79519534894288,5.464801649842504,6.211920275253626,7.0414788871020875,7.957648800694184,8.963522770309854,10.060757714810727,11.24919852803913,12.52648992680012,13.887745311567896,15.325239096002546,16.828219022770757,18.38283593233074,19.97222870243186,21.57685021893199,23.1748813723485,24.742917018962736,26.25672639668598,27.69216662035007,29.02611006575911,30.23733226583385,31.30731797833094,32.22091274793716,32.96677247457457,33.537617770734904,33.930259548406234,34.14544354794261,34.187521242996134,34.06399174541214,33.7849831779841,33.36267367968248,32.810727164541106,32.14374248786476,31.376760691079415,30.524837010364873,29.602680447284435,28.624368975676113,27.60313292598717,26.551203620252206,25.479718092695265,24.398672090267905,23.3169112651736,22.242154584338998,21.181040834644346,20.13919004510001,19.121278844836297,18.13111946480693,17.17174345752685,16.24548577392449,15.354063690855831,14.498655470333011,13.679971260650422,12.898320077116088,12.153671539421753,11.445710155611218,10.77388465664934,10.137452060096493,9.535515642586164,8.967058842104993,8.430974846749042,7.926090888083949,7.451190210516147,7.0050298596506275,6.586355806989719,6.193915657962691,5.8264691028353734,5.4827957310218345,5.161701948930727,4.862025760743573,4.582640472529203,4.322457325831599,4.080427265520956,3.8555414975950284,3.6468317867359774,3.4533700775588456,3.2742675802593157,3.1086736763925393,2.95577466358619,2.814792195399638,2.6849816873736834,2.565630969854589,2.456058752873125,2.3556134211681177,2.2636719625203856,2.17963914433099,2.1029467817304175,2.0330532656252025,1.969443315090348,1.911627713277932,1.85914323030344,1.8115525304232099,1.7684440785116187,1.7294319242176317,1.6941554041924651,1.6622787571817528,1.6334905240797855,1.6075028510118792,1.5840506382159398,1.5628905805693034,1.5438000889930767,1.5265761266448343,1.5110340148869048,1.4970062054079851,1.4843410255605172,1.4729014631775315,1.4625639700092543,1.453217316955918,1.4447614957878279,1.4371066823107967,1.4301722753400163,1.4238860032962914,1.4181830894674847,1.4130054987475795,1.4083012438343385,1.4040237583408113,1.4001313270131144,1.3965865698011846,1.393355979686751,1.3904095106875616,1.3877202048282218,1.3852638585962247,1.3830187281488933,1.3809652643630297,1.3790858780956772,1.377364730234835,1.3757875443407748,1.374341440662167,1.3730147896553893,1.3717970810079212,1.3706788055003174,1.3696513525161813,1.3687069174002249,1.3678384195809667,1.3670394295416304,1.366304103413294,1.3656271245858633,1.3650036518766255,1.3644292735813988,1.3638999661726765,1.3634120565377985,1.3629621892708457,1.36254729683915,1.3621645729078775,1.3618114484054646,1.3614855698867177,1.361184779992542,1.3609070998664101,1.3606507133853665,1.3604139529992434,1.3601952868468419,1.3599933067922116,1.3598067179573516,1.35963432914007,1.3594750440633712,1.3593278534631428,1.3591918278452728,1.3590661108688449,1.3589499133166765,1.358842507613499,1.3587432228457457,1.3586514402253895,1.358566588923623,1.3584881421826147,1.358415613786394,1.358348554922083,1.3582865512060969,1.3582292200086115,1.3581762079685902,1.3581271886966082,1.358081860663582,1.3580399452668515,1.358001185060193,1.3579653421312503,1.3579321966085955,1.3579015452811438,1.3578732003149847,1.3578469880579307,1.3578227479687466,1.3578003316202363,1.3577796017747283,1.3577604315665526,1.3577427037145116,1.3577263097799526,1.357711149481856,1.357697130071982,1.357684165766977,1.3576721772303033,1.3576610910950058,1.3576508395186517,1.3576413597642236,1.3576325938054066,1.3576244879614774,1.3576169925786565,1.3576100617474944,1.3576036529167004,1.357597726733163,1.3575922468927617,1.3575871799014747,1.3575824948129245,1.3575781629849781,1.357574157876218,1.3575704548861864,1.3575670312313197,1.3575638658413758,1.3575609392589945,1.357558233527726,1.3575557320614888,1.3575534195009409,1.3575512815796764,1.357549305045484,1.3575474777269558,1.3575457882301807,1.3575442250939922,1.3575427779319842,1.3575414380354258,1.3575401981359942,1.3575390518469597,1.3575379931202556,1.3575370159022664,1.357536114047757,1.357535281459129,1.3575345123571427,1.3575338015593772,1.3575331446440022,1.3575325379089267,1.3575319781000617,1.357531461977262,1.357530985912559,1.357530545872473,1.3575301383604446,1.3575297616294673,1.3575294036509469,1.3575290481934594,1.3575286895546081,1.3575283343415234,1.3575279963297717,1.3575276895928179,1.3575274230705996,1.3575271980823111,1.3575270089851437,1.357526846237497,1.3575267005420462,1.3575265665210163,1.357526444513123,1.3575263395787989,1.3575262576576397,1.3575262000393855,1.3575261588872665,1.3575261184901344,1.357526069718721,1.3575260234714759,1.3575258827244883,1.3575255160150645,1.3575248965287867,1.3575241125746738,1.3575233136662073,1.3575226434572716,1.357522189897256,1.3575219659647721,1.3575219212146872,1.3575219751285277,1.3575220578936236,1.3575221427516688,1.3575222564526248,1.3575224606251746,1.357522807030226,1.3575232836992006,1.3575237868741339,1.357524175461892,1.3575244791551226,1.357524629571798,1.3575239915917194,1.3575221819761092,1.3575193963674503,1.357516242149235,1.3575134104328814,1.3575113924090478,1.3575103402157194,1.3575100908472162,1.3575103134572937,1.3575107056947873,1.3575111534510331,1.3575117805947403,1.3575128509226198,1.3575145436628846,1.3575167064334581,1.3575187955776458,1.3575203442282853,1.3575216588741008,1.3575220324221733,1.3575203110944398,1.3575163657515643,1.3575111176935042,1.3575059213754883,1.357501901420726,1.357499558363338,1.3574987365285138,1.3574988883555774,1.3574994722916753,1.35750028612626,1.3575015642993709,1.3575037563013088,1.3575070537879288,1.3575109464638282,1.3575143611364284,1.3575170329704482,1.3575190317158277,1.3575192580894964,1.3575171870993588,1.3575133947080897,1.3575090984119587,1.3575054758487275,1.3575031862541866,1.3575022526566018,1.3575022683024471,1.357502768945055,1.3575035632980725,1.3575048371571996,1.3575069424276012,1.3575099505608672,1.3575132907042617,1.3575161064515184,1.3575183877067516,1.3575198203007894,1.357519868226782,1.3575185813092285,1.3575165506259435,1.357514527447284,1.3575130648566973,1.3575123503467135,1.3575122540160827,1.3575125205274736,1.3575129837204685,1.357513680711128,1.3575147874472442,1.3575163900277807,1.357518245635856,1.357519871595404,1.35752111919518,1.3575220719123964,1.3575227993941243,1.357523354900954,1.3575237791191177,1.3575241030436065,1.3575243503953436],\"thickness\":2,\"color\":\"#AB63FA\",\"width\":0,\"type\":\"data\",\"opacity\":0.1},\"mode\":\"lines\",\"x\":[0.0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.5,9.0,9.5,10.0,10.5,11.0,11.5,12.0,12.5,13.0,13.5,14.0,14.5,15.0,15.5,16.0,16.5,17.0,17.5,18.0,18.5,19.0,19.5,20.0,20.5,21.0,21.5,22.0,22.5,23.0,23.5,24.0,24.5,25.0,25.5,26.0,26.5,27.0,27.5,28.0,28.5,29.0,29.5,30.0,30.5,31.0,31.5,32.0,32.5,33.0,33.5,34.0,34.5,35.0,35.5,36.0,36.5,37.0,37.5,38.0,38.5,39.0,39.5,40.0,40.5,41.0,41.5,42.0,42.5,43.0,43.5,44.0,44.5,45.0,45.5,46.0,46.5,47.0,47.5,48.0,48.5,49.0,49.5,50.0,50.5,51.0,51.5,52.0,52.5,53.0,53.5,54.0,54.5,55.0,55.5,56.0,56.5,57.0,57.5,58.0,58.5,59.0,59.5,60.0,60.5,61.0,61.5,62.0,62.5,63.0,63.5,64.0,64.5,65.0,65.5,66.0,66.5,67.0,67.5,68.0,68.5,69.0,69.5,70.0,70.5,71.0,71.5,72.0,72.5,73.0,73.5,74.0,74.5,75.0,75.5,76.0,76.5,77.0,77.5,78.0,78.5,79.0,79.5,80.0,80.5,81.0,81.5,82.0,82.5,83.0,83.5,84.0,84.5,85.0,85.5,86.0,86.5,87.0,87.5,88.0,88.5,89.0,89.5,90.0,90.5,91.0,91.5,92.0,92.5,93.0,93.5,94.0,94.5,95.0,95.5,96.0,96.5,97.0,97.5,98.0,98.5,99.0,99.5,100.0,100.5,101.0,101.5,102.0,102.5,103.0,103.5,104.0,104.5,105.0,105.5,106.0,106.5,107.0,107.5,108.0,108.5,109.0,109.5,110.0,110.5,111.0,111.5,112.0,112.5,113.0,113.5,114.0,114.5,115.0,115.5,116.0,116.5,117.0,117.5,118.0,118.5,119.0,119.5,120.0,120.5,121.0,121.5,122.0,122.5,123.0,123.5,124.0,124.5,125.0,125.5,126.0,126.5,127.0,127.5,128.0,128.5,129.0,129.5,130.0,130.5,131.0,131.5,132.0,132.5,133.0,133.5,134.0,134.5,135.0,135.5,136.0,136.5,137.0,137.5,138.0,138.5,139.0,139.5,140.0,140.5,141.0,141.5,142.0,142.5,143.0,143.5,144.0,144.5,145.0,145.5,146.0,146.5,147.0,147.5,148.0,148.5,149.0,149.5,150.0,150.5,151.0,151.5,152.0,152.5,153.0,153.5,154.0,154.5,155.0,155.5,156.0,156.5,157.0,157.5,158.0,158.5,159.0,159.5,160.0,160.5,161.0,161.5,162.0,162.5,163.0,163.5,164.0,164.5,165.0,165.5,166.0,166.5,167.0,167.5,168.0,168.5,169.0,169.5,170.0,170.5,171.0,171.5,172.0,172.5,173.0,173.5,174.0,174.5,175.0,175.5,176.0,176.5,177.0,177.5,178.0,178.5,179.0,179.5,180.0,180.5,181.0,181.5,182.0,182.5,183.0,183.5,184.0,184.5,185.0,185.5,186.0,186.5,187.0,187.5,188.0,188.5,189.0,189.5,190.0,190.5,191.0,191.5,192.0,192.5,193.0,193.5,194.0,194.5,195.0,195.5,196.0,196.5,197.0,197.5,198.0,198.5,199.0,199.5,200.0],\"opacity\":0.8,\"y\":[0.0,0.00011217680402966775,0.00040920756843748217,0.0008522455473848807,0.001421653956857664,0.0021102918324765983,0.0029194448548821366,0.0038564043465539976,0.0049330793393371625,0.006165263006997351,0.007572321245786335,0.00917716213234583,0.01100640153826874,0.013090675579184124,0.0154650728524969,0.01816967369333891,0.021250193017086916,0.024758729720065542,0.02875463019756858,0.033305477228815696,0.03848821831217038,0.04439045085709258,0.051111883837130875,0.05876599919272766,0.06748193789742378,0.07740664164812902,0.08870728109885131,0.1015740100636876,0.11622308201959192,0.13290038149856828,0.15188541395680857,0.17349581672071923,0.1980924450662773,0.226085098883489,0.25793897863087367,0.29418191741925226,0.3354125127123469,0.3823091626950725,0.43564020274048915,0.49627512284976544,0.5651970122797023,0.6435162851935201,0.7324855771907829,0.8335162454986513,0.9481959183287076,1.0783075836931613,1.2258495203746202,1.393056149064802,1.5824198089413724,1.796712066085612,2.0390051836464256,2.3126907926296263,2.6214973847238245,2.9695029005232603,3.361141996647494,3.8012056654116444,4.294828558085849,4.847467218322934,5.464858947250044,6.152965078450528,6.91789036286752,7.765779657755427,8.70269105338586,9.734442157155437,10.866432226186443,12.103447552779608,13.449448330647115,14.907353142526377,16.47882693257607,18.164081844332223,19.961730209570412,21.868648591197108,23.879929883702637,25.98887496358515,28.187073855514466,30.464553407637716,32.80997383258093,35.210896391526134,37.65407638608566,40.12579612710181,42.61218520125817,45.099542397438924,47.57462265241962,50.02489500426505,52.43875314690273,54.80567459422896,57.116333983335956,59.36266717967227,61.537893253394046,63.63649894852427,65.65419309749399,67.58783622919601,69.43535445301383,71.1956391635266,72.86844231884575,74.45427018287502,75.95427660764554,77.37016280941023,78.70408092710896,79.95854580976874,81.13635607870633,82.24052161122037,83.27420144981765,84.24064852851798,85.14316209292824,85.98504882550732,86.76958873740217,87.50000854726714,88.17945952152894,88.81099980636152,89.39758153003373,89.94204104885162,90.44709206262274,90.9153216418276,91.34918801093589,91.75102002504481,92.12301856417339,92.46725851547252,92.78569201545331,93.08015226919493,93.35235781922391,93.60391717273629,93.83633391093703,94.05101162078033,94.24925911812107,94.43229557227623,94.6012555497374,94.75719392047239,94.90109076573373,95.03385597944626,95.15633373348732,95.26930678622061,95.3735005391275,95.46958687014681,95.55818781734027,95.63987905517452,95.71519309805684,95.78462240190177,95.84862221511891,95.90761326456402,95.961984251778,96.01209421953918,96.05827473929018,96.10083192833781,96.1400483718797,96.1761848750047,96.20948210304671,96.2401620957765,96.26842968898958,96.2944738262737,96.31846875980239,96.34057518619076,96.36094128249736,96.37970367023718,96.39698830206126,96.41291128710033,96.4275796569919,96.44109206588554,96.45353943839203,96.46500557597146,96.47556770774386,96.48529700351465,96.49425904447807,96.50251426071713,96.51011833554044,96.51712257509858,96.5235742496297,96.52951691269742,96.53499069050288,96.54003255136281,96.54467655263973,96.54895406933186,96.55289400567165,96.55652298935942,96.55986554932736,96.56294428134909,96.5657800007539,96.56839188179107,96.57079758706388,96.57301338616952,96.57505426547205,96.57693402954696,96.57866539437217,96.58026007266231,96.58172885282073,96.58308167249878,96.58432768512566,96.58547532191838,96.58653234872453,96.5875059184162,96.58840261932484,96.58922851990565,96.5899892097513,96.59068983719474,96.59133514404822,96.59192949801513,96.59247692199135,96.5929811213079,96.59344550878811,96.59387322778728,96.59426717346814,96.59463001243634,96.59496420081854,96.59527200086276,96.59555549617748,96.5958166058012,96.59605709732725,96.5962785988013,96.59648260971029,96.59667051115191,96.59684357516217,96.59700297332171,96.59714978469756,96.59728500316322,96.59740954413422,96.59752425075634,96.59762989959135,96.59772720585845,96.59781682830855,96.59789937370928,96.5979754008995,96.59804542459405,96.59810991886086,96.59816932032636,96.59822403113361,96.59827442166964,96.59832083307805,96.59836357957083,96.59840295055375,96.59843921258003,96.5984726111488,96.59850337236615,96.59853170449038,96.59855779934622,96.59858183360546,96.5986039699912,96.59862435837255,96.59864313677838,96.59866043233481,96.59867636212923,96.59869103400568,96.59870454729554,96.59871699348903,96.59872845685268,96.59873901499788,96.59874873940527,96.59875769590961,96.59876594514841,96.59877354297572,96.5987805408341,96.598786986119,96.5987929224839,96.59879839011757,96.59880342601882,96.59880806425797,96.5988123362182,96.59881627081396,96.59881989468666,96.59882323238052,96.59882630650198,96.59882913786728,96.59883174564177,96.59883414747321,96.59883635961891,96.5988383970635,96.59884027361973,96.59884200199616,96.59884359391346,96.59884506031348,96.59884641124596,96.59884765582916,96.59884880233793,96.59884985833878,96.59885083081977,96.59885172628638,96.59885255081458,96.59885331006554,96.59885400927696,96.59885465325002,96.59885524635101,96.5988557925421,96.59885629544557,96.59885675843152,96.5988571846997,96.59885757730211,96.59885793901914,96.5988582721719,96.59885858022254,96.59885886706402,96.5988591351237,96.59885938512302,96.59885961672988,96.59885982944012,96.59886002328247,96.59886019915194,96.59886035874345,96.5988605041775,96.59886063748431,96.59886076014237,96.59886087285058,96.5988609756512,96.59886106841303,96.59886115153114,96.59886122650019,96.59886129577438,96.59886136098197,96.5988614211032,96.59886148679087,96.59886157273783,96.59886168244539,96.59886180692251,96.5988619304126,96.59886203760898,96.59886211906661,96.59886217334784,96.59886220585456,96.59886222529717,96.59886223933374,96.59886225107884,96.59886225793225,96.59886225351241,96.59886223239826,96.59886219588553,96.59886215505038,96.5988621250847,96.59886210350928,96.59886209537028,96.59886216003353,96.59886233424014,96.59886260072518,96.59886290331261,96.59886317735855,96.598863376322,96.59886348502017,96.5988635177315,96.59886350474008,96.59886347417306,96.59886343706516,96.59886338249429,96.59886328636692,96.59886313199414,96.5988629329852,96.5988627392004,96.59886259449912,96.59886247243395,96.59886242935922,96.5988625608758,96.59886287907011,96.59886330910177,96.59886373935788,96.59886407599778,96.59886427585734,96.59886434978783,96.59886434156604,96.59886429553409,96.59886422910627,96.59886412421852,96.59886394469083,96.59886367432794,96.5988633533957,96.59886306888055,96.59886284556411,96.5988626763998,96.59886264152657,96.59886278025554,96.59886305091048,96.59886336375192,96.59886363089905,96.5988638018981,96.59886387307657,96.5988638730556,96.59886383577015,96.59886377606529,96.5988636814006,96.59886352639995,96.59886330493303,96.59886305710721,96.5988628459121,96.59886267494655,96.59886256401869,96.59886254861857,96.59886262564267,96.5988627556846,96.59886288810586,96.59886298498354,96.59886303261051,96.59886303871754,96.59886301999619,96.59886298782506,96.59886294034186,96.59886286615745,96.59886275907856,96.59886263418957,96.59886252359644,96.5988624384907,96.5988623733825,96.59886232357697,96.59886228547755,96.59886225633167,96.59886223403801,96.59886221698571]}],\"layout\":{\"showlegend\":true,\"xaxis\":{\"autorange\":true,\"title\":\"Time (Days)\",\"type\":\"linear\"},\"annotations\":[],\"title\":\"Covid-19 SEIR Model with Error Bars\",\"yaxis\":{\"autorange\":false,\"range\":[0,100],\"title\":\"%\",\"type\":\"linear\"},\"shapes\":[],\"legend\":{}}},\"2.0\":{\"config\":{\"responsive\":true},\"data\":[{\"name\":\"Susceptible\",\"line\":{\"color\":\"#636EFA\"},\"error_y\":{\"array\":[0.0,0.00011007223632431798,0.00039910332427412366,0.000839552004392898,0.0014340821524220161,0.0022042574044599324,0.0031851905424617466,0.004423559082743653,0.005977570309463693,0.007918127035790217,0.010330823843125473,0.01331861718395328,0.0170051344328185,0.021538659094276238,0.027096875871933806,0.03389249364453573,0.04217989278504826,0.052262973013221165,0.06450440536702592,0.07933652616156842,0.0972741401403511,0.11892954623473968,0.14503013012615154,0.17643891323595798,0.21417847970918477,0.2594587644204908,0.31370918458025565,0.3786156238525009,0.456162736169331,0.548682126901066,0.6589066559294048,0.790031184927923,0.9457792745182884,1.1304761337655174,1.349125664770291,1.607490847631472,1.9121718010593713,2.2706805573191016,2.6915011578038315,3.1841300740949587,3.7590768292863634,4.427816235245903,5.202663440978905,6.09655115807345,7.12267066925087,8.293943767035069,9.622302302480401,11.1177256250877,12.787034185161234,14.632408615921863,16.649729799087023,18.826759109260678,21.141360745039538,23.55994216693527,26.03645162851944,28.512233792199236,30.9170914240748,33.17185781222748,35.19253058085106,36.89588345066115,38.20604395121172,39.06135822444051,39.42064734390709,39.26753721834035,38.61252567143645,37.49199758425547,35.96455345880736,34.105105718235684,31.997777185745296,29.728686026523256,27.379550567558447,25.022822448051237,22.718621648332295,20.513449509849373,18.44036315441823,16.52021667778148,14.76353977526584,13.172657118016987,11.743779715797729,10.468879806399991,9.33726409721105,8.336813239712855,7.454908618586424,6.679085070003612,5.997462944704722,5.399006326405322,4.87365633063736,4.412373686815007,4.007122891498063,3.6508188450331667,3.337251885938157,3.061003911238686,2.8173616203921528,2.6022329455185536,2.412068812021353,2.24379154437205,2.0947312473566724,1.9625693063477796,1.8452893258214236,1.7411346758442254,1.648571804205016,1.5662590796518352,1.493020101066166,1.4278211015389692,1.3697518129770014,1.3180091935286693,1.2718836075492816,1.230747132583819,1.1940434989056612,1.1612795111143632,1.1320176551378636,1.1058696473399812,1.0824908268315292,1.0615752475165734,1.0428513247507674,1.0260780039457087,1.0110413627166965,0.997551571235382,0.9854401896586379,0.9745577729115141,0.9647717146018031,0.9559643412927813,0.9480312139149398,0.940879615470158,0.9344272013893167,0.9286008128072729,0.9233354167871789,0.9185731696165258,0.9142625890956919,0.9103578244582673,0.9068180080466973,0.9036066825245184,0.9006913000372682,0.8980427753080462,0.8956350938192409,0.8934449657632926,0.8914515217017905,0.8896360426352355,0.8879817211870342,0.8864734528104588,0.8850976500232308,0.8838420777151955,0.8826957085007805,0.8816485943488295,0.8806917529892917,0.8798170664593011,0.8790171914368948,0.8782854803119697,0.8776159098558136,0.8770030183287049,0.876441849377992,0.8759279020692864,0.8754570862398013,0.8750256823104162,0.874630305443189,0.8742678737653482,0.8739355795371747,0.8736308631783265,0.8733513902443282,0.8730950305119621,0.872859839268692,0.8726440403334597,0.8724460106841507,0.8722642666654644,0.8720974516220932,0.8719443245225621,0.8718037496781316,0.8716746875443663,0.8715561862802488,0.871447374142819,0.8713474525412043,0.8712556896943511,0.8711714148772279,0.871094013227051,0.8710229210150385,0.8709576212397491,0.8708976396965914,0.8708425413748605,0.8707919271578457,0.8707454308225482,0.8707027162861416,0.8706634750804785,0.8706274240455941,0.8705943032323015,0.8705638739926661,0.8705359172156729,0.8705102316868555,0.8704866326353209,0.8704649503736654,0.8704450290593166,0.870426725559848,0.8704099084091341,0.8703944568480788,0.8703802599453608,0.8703672157937795,0.8703552307763318,0.8703442188931371,0.8703341011359087,0.8703248049103952,0.8703162635234438,0.8703084156991346,0.8703012051388255,0.8702945801167838,0.8702884931077798,0.8702829004445944,0.8702777620035795,0.8702730409164314,0.8702687033062404,0.8702647180456077,0.8702610565342381,0.870257692492866,0.8702546017719619,0.8702517621820283,0.8702491533339123,0.8702467564930798,0.870244554445888,0.870242531375993,0.8702406727505425,0.8702389652156637,0.8702373965006434,0.8702359553301324,0.8702346313436601,0.8702334150217292,0.8702322976177914,0.8702312710954454,0.870230328070291,0.8702294617566964,0.8702286659199511,0.8702279348303829,0.8702272632243306,0.8702266462670913,0.8702260795175996,0.8702255588956033,0.8702250806516829,0.8702246413401326,0.8702242377944783,0.8702238671052706,0.8702235265997086,0.8702232138226956,0.8702229265190301,0.8702226626166422,0.8702224202110812,0.8702221975518362,0.8702219930319949,0.8702218051710451,0.8702216325974301,0.8702214740564916,0.8702213284080268,0.8702211946144897,0.8702210717263508,0.8702209588687306,0.8702208552314289,0.8702207600628946,0.8702206726675207,0.8702205924048894,0.8702205186892656,0.8702204509877033,0.8702203888156252,0.8702203317296385,0.8702202793186552,0.8702202311961331,0.8702201869983784,0.8702201463978121,0.8702201091025942,0.8702200746493265,0.8702200425545725,0.8702200125369912,0.8702199845362101,0.8702199586271778,0.8702199349075235,0.8702199134061357,0.8702198940368913,0.8702198766021857,0.8702198608366476,0.8702198464721912,0.8702198333013124,0.8702198212163337,0.870219810208094,0.8702198003183993,0.870219791556383,0.870219783809762,0.870219776807853,0.8702197702240668,0.8702197640917784,0.8702197578102172,0.8702197474974878,0.8702197300639293,0.870219705683096,0.8702196774430712,0.8702196497676109,0.8702196266899344,0.8702196106188571,0.8702196018740763,0.8702195989847585,0.8702195995431514,0.8702196012827447,0.8702196030085404,0.8702196050452458,0.8702196089877067,0.8702196167366142,0.8702196290814699,0.8702196444519859,0.8702196588984965,0.8702196688828873,0.87021967791166,0.8702196732787523,0.8702196210981992,0.8702195055352466,0.8702193393625044,0.8702191548409264,0.870218988236171,0.8702188663343768,0.8702187992296393,0.8702187804185602,0.8702187928550977,0.8702188180916339,0.8702188449596373,0.8702188744255718,0.8702189182947626,0.870218991327806,0.8702190990807626,0.8702192273818503,0.8702193438136068,0.8702194271119581,0.8702195007074226,0.8702194983778687,0.8702193178799656,0.8702189400890413,0.8702184362062059,0.8702179215964035,0.8702175014008874,0.8702172334018441,0.8702171178906424,0.8702171125045445,0.8702171621496448,0.8702172302202703,0.8702173173570643,0.8702174579575006,0.8702176925636568,0.8702180261026881,0.8702183977456266,0.870218707879843,0.8702189490885202,0.8702191288330909,0.8702191116160243,0.8702188229364759,0.8702183182292087,0.8702177369898846,0.8702172254933832,0.8702168767216695,0.8702167082595035,0.8702166780150431,0.8702167236781361,0.8702168048417869,0.8702169266818653,0.870217131016626,0.8702174544510644,0.8702178741515039,0.870218289593139,0.8702186195946751,0.8702188872771722,0.8702190265913284,0.8702189740819776,0.870218750186035,0.8702184410142868,0.8702181469023826,0.8702179380598393,0.8702178355594683,0.8702178193138392,0.8702178535801538,0.8702179149202698,0.8702180074185158,0.8702181553264126,0.8702183741604583,0.8702186376267502,0.8702188796371586,0.8702190758409744,0.8702192186964414,0.870219272833208,0.8702192321960225,0.8702191275205631,0.8702190061142204,0.8702189084386527,0.8702188541888546,0.8702188414645589,0.8702188562340266,0.8702188855976752,0.8702189273695529,0.8702189902083655,0.8702190829466417,0.8702191988866289,0.8702193106649679,0.8702193985899381,0.8702194661268271,0.8702195179799208,0.8702195577679549,0.8702195883114544,0.8702196117842826,0.870219629817913,0.8702196436510105,0.8702196542877011],\"thickness\":2,\"color\":\"#636EFA\",\"width\":0,\"type\":\"data\",\"opacity\":0.1},\"mode\":\"lines\",\"x\":[0.0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.5,9.0,9.5,10.0,10.5,11.0,11.5,12.0,12.5,13.0,13.5,14.0,14.5,15.0,15.5,16.0,16.5,17.0,17.5,18.0,18.5,19.0,19.5,20.0,20.5,21.0,21.5,22.0,22.5,23.0,23.5,24.0,24.5,25.0,25.5,26.0,26.5,27.0,27.5,28.0,28.5,29.0,29.5,30.0,30.5,31.0,31.5,32.0,32.5,33.0,33.5,34.0,34.5,35.0,35.5,36.0,36.5,37.0,37.5,38.0,38.5,39.0,39.5,40.0,40.5,41.0,41.5,42.0,42.5,43.0,43.5,44.0,44.5,45.0,45.5,46.0,46.5,47.0,47.5,48.0,48.5,49.0,49.5,50.0,50.5,51.0,51.5,52.0,52.5,53.0,53.5,54.0,54.5,55.0,55.5,56.0,56.5,57.0,57.5,58.0,58.5,59.0,59.5,60.0,60.5,61.0,61.5,62.0,62.5,63.0,63.5,64.0,64.5,65.0,65.5,66.0,66.5,67.0,67.5,68.0,68.5,69.0,69.5,70.0,70.5,71.0,71.5,72.0,72.5,73.0,73.5,74.0,74.5,75.0,75.5,76.0,76.5,77.0,77.5,78.0,78.5,79.0,79.5,80.0,80.5,81.0,81.5,82.0,82.5,83.0,83.5,84.0,84.5,85.0,85.5,86.0,86.5,87.0,87.5,88.0,88.5,89.0,89.5,90.0,90.5,91.0,91.5,92.0,92.5,93.0,93.5,94.0,94.5,95.0,95.5,96.0,96.5,97.0,97.5,98.0,98.5,99.0,99.5,100.0,100.5,101.0,101.5,102.0,102.5,103.0,103.5,104.0,104.5,105.0,105.5,106.0,106.5,107.0,107.5,108.0,108.5,109.0,109.5,110.0,110.5,111.0,111.5,112.0,112.5,113.0,113.5,114.0,114.5,115.0,115.5,116.0,116.5,117.0,117.5,118.0,118.5,119.0,119.5,120.0,120.5,121.0,121.5,122.0,122.5,123.0,123.5,124.0,124.5,125.0,125.5,126.0,126.5,127.0,127.5,128.0,128.5,129.0,129.5,130.0,130.5,131.0,131.5,132.0,132.5,133.0,133.5,134.0,134.5,135.0,135.5,136.0,136.5,137.0,137.5,138.0,138.5,139.0,139.5,140.0,140.5,141.0,141.5,142.0,142.5,143.0,143.5,144.0,144.5,145.0,145.5,146.0,146.5,147.0,147.5,148.0,148.5,149.0,149.5,150.0,150.5,151.0,151.5,152.0,152.5,153.0,153.5,154.0,154.5,155.0,155.5,156.0,156.5,157.0,157.5,158.0,158.5,159.0,159.5,160.0,160.5,161.0,161.5,162.0,162.5,163.0,163.5,164.0,164.5,165.0,165.5,166.0,166.5,167.0,167.5,168.0,168.5,169.0,169.5,170.0,170.5,171.0,171.5,172.0,172.5,173.0,173.5,174.0,174.5,175.0,175.5,176.0,176.5,177.0,177.5,178.0,178.5,179.0,179.5,180.0,180.5,181.0,181.5,182.0,182.5,183.0,183.5,184.0,184.5,185.0,185.5,186.0,186.5,187.0,187.5,188.0,188.5,189.0,189.5,190.0,190.5,191.0,191.5,192.0,192.5,193.0,193.5,194.0,194.5,195.0,195.5,196.0,196.5,197.0,197.5,198.0,198.5,199.0,199.5,200.0],\"opacity\":0.8,\"y\":[99.99,99.98955088279949,99.98835687407274,99.98656195418482,99.9842293396759,99.98136936237239,99.9779557515235,99.97393478014686,99.96922996587092,99.96374393954892,99.95735843872735,99.94993298157982,99.94130252972413,99.9312742938881,99.91962373789826,99.90608977088127,99.89036907194324,99.87210945569939,99.85090215875408,99.82627289931925,99.79767153876807,99.76446014352577,99.72589922278597,99.68113188706474,99.62916564799939,99.56885154005187,99.49886023097132,99.41765475784243,99.32345952422558,99.21422513200794,99.08758871966347,98.94082941320646,98.77081877299038,98.57396578346369,98.34615679438166,98.08269027188416,97.77820791699367,97.42662205734113,97.02104279586197,96.55370625839375,96.01591046839803,95.39796178667737,94.68914181544264,93.87770266669285,92.95090517891478,91.89511463548318,90.69596685556094,89.33863012306335,87.80817548755043,86.09008608038823,84.1708947225627,82.03897994995397,79.68548580118465,77.10536101739388,74.29842734692767,71.27042339838563,68.0338910878552,64.60878759000803,61.02267904556496,57.310400490925986,53.513119432332836,49.67679211186046,45.85005774427317,42.08186862061529,38.41892464746658,34.90333685670981,31.570639794821858,28.448468047314847,25.5559008680303,22.903527162033697,20.494081655032705,18.323537459890474,16.38244781080554,14.657371136833039,13.132227514678124,11.789497777575326,10.611208911442919,9.579688065649803,8.678098117601293,7.89078365211621,7.203461675832479,6.60329549056507,6.078883626450615,5.620193155723856,5.218459299908568,4.8660668132317335,4.55642658966733,4.283853660897576,4.04345269247877,3.831012948230682,3.6429138638233542,3.4760418992033264,3.3277176908844552,3.1956331647884215,3.077797411710677,2.97249026239134,2.8782228325523187,2.7937038280342157,2.7178110022483546,2.649566931793071,2.5881183947878377,2.5327189400507244,2.482714030778972,2.4375284397004866,2.3966555294136636,2.359648098324531,2.326110560513994,2.295692279593687,2.2680818279331496,2.2430020745902928,2.2202059600156128,2.199472837870807,2.1806053196435586,2.1634265451696333,2.1477778018509723,2.1335164601418115,2.120514173776615,2.1086552995256294,2.097835513840548,2.0879606032677476,2.07894539110729,2.070712796536902,2.0631930020389664,2.0563227153500785,2.0500445117336037,2.044306253694345,2.0390605707849128,2.0342643960784774,2.0298785522448006,2.025867381681359,2.0221984134092184,2.0188420637252626,2.0157713691159596,2.01296174355222,2.0103907607720695,2.0080379576023004,2.005884656711243,2.0039138056993573,2.00210983116623,2.0004585074573042,1.9989468370616499,1.9975629418468963,1.996295964777525,1.99513598044886,1.9940739138176746,1.9931014659166093,1.992211046403949,1.991395712482083,1.9906491127051835,1.9899654360387553,1.9893393653789164,1.9887660351862033,1.9882409928200901,1.9877601631098758,1.9873198160606433,1.9869165375205926,1.9865472022281159,1.986208949138609,1.9858991590310042,1.9856154339387704,1.985355578410384,1.9851175823209988,1.9848996051267325,1.9846999615075345,1.9845171082855353,1.9843496323686687,1.98419623972831,1.9840557453737997,1.9839270641288802,1.9838092022220466,1.9837012495725688,1.9836023727150704,1.9835118083302188,1.9834288573452603,1.9833528795361342,1.9832832885368963,1.983219547313818,1.983161164014075,1.9831076881579073,1.9830587071612251,1.9830138431455095,1.98297275001135,1.9829351107594588,1.9829006350441043,1.9828690569385945,1.982840132880821,1.9828136397773972,1.9827893732942807,1.9827671462755647,1.9827467872989124,1.98272813935444,1.9827110586328918,1.982695413413996,1.9826810830481076,1.9826679570250658,1.9826559341237167,1.9826449216337008,1.9826348346380311,1.9826255953527878,1.9826171325336241,1.9826093809239935,1.9826022807517976,1.9825957772690952,1.9825898203300278,1.9825843640036482,1.9825793662189968,1.9825747884401799,1.9825705953693362,1.982566754675229,1.9825632367448203,1.9825600144544806,1.9825570629582705,1.9825543594985575,1.9825518832306057,1.9825496150613342,1.9825475375023445,1.9825456345351964,1.982543891487857,1.9825422949214033,1.9825408325262035,1.982539493026871,1.9825382660953423,1.9825371422714284,1.9825361128901493,1.9825351700150842,1.9825343063768472,1.982533515316236,1.9825327907337535,1.982532127042387,1.982531519124778,1.98253096229394,1.9825304522570057,1.9825299850819327,1.9825295571670238,1.9825291652130927,1.9825288061980535,1.9825284773537122,1.9825281761445273,1.9825279002481262,1.9825276475373896,1.982527416063962,1.9825272040431032,1.9825270098398722,1.9825268319568772,1.9825266690219008,1.9825265197759572,1.982526383066777,1.9825262578411547,1.9825261431361942,1.982526038070594,1.9825259418366634,1.9825258536934312,1.9825257729608885,1.9825256990152342,1.9825256312848323,1.9825255692465467,1.9825255124221282,1.9825254603744185,1.9825254127033107,1.9825253690416336,1.982525329051454,1.9825252924216736,1.982525258868464,1.9825252281342713,1.9825251999554656,1.982525174081417,1.982525150304957,1.9825251284641945,1.9825251084295277,1.9825250900867866,1.9825250733233115,1.982525058020392,1.982525044052739,1.9825250312937022,1.9825250196235926,1.9825250089378996,1.9825249991522724,1.9825249902019246,1.9825249820346442,1.9825249745987636,1.9825249678303656,1.982524961647595,1.9825249559642482,1.9825249507458471,1.9825249458974021,1.98252494093374,1.9825249354561665,1.9825249294485232,1.9825249232405788,1.9825249173250976,1.982524912155801,1.9825249080016445,1.982524904890382,1.9825249026412903,1.9825249009631816,1.9825248995794151,1.9825248983365729,1.982524897257751,1.9825248965150521,1.9825248963188606,1.9825248967537992,1.982524897632962,1.9825248984930364,1.9825248989134305,1.9825248992727589,1.9825248983554447,1.9825248927428585,1.9825248807870535,1.9825248637097503,1.982524844711746,1.982524827428935,1.982524814576638,1.9825248072146269,1.9825248047411335,1.9825248054852342,1.982524807613277,1.982524809996538,1.9825248127039674,1.9825248168857847,1.982524824000776,1.9825248346124247,1.9825248473365131,1.9825248589654996,1.9825248673402316,1.9825248746935893,1.9825248753687403,1.9825248603352288,1.98252482776991,1.982524783795769,1.9825247384953943,1.98252470115589,1.9825246769875255,1.9825246661860672,1.9825246651785078,1.9825246692037835,1.9825246750340968,1.9825246826385763,1.982524694929267,1.9825247154098151,1.98252474456971,1.9825247772315542,1.9825248047655823,1.9825248262272763,1.9825248424995112,1.9825248431158742,1.9825248221756877,1.9825247838686957,1.9825247390156648,1.982524699095229,1.9825246715444844,1.9825246579699392,1.982524655288353,1.982524658733735,1.982524665117301,1.982524674711582,1.9825246906480176,1.9825247157693844,1.9825247484641897,1.9825247811297952,1.982524807301502,1.9825248285282389,1.9825248403352334,1.982524838283192,1.9825248237600956,1.9825248027927547,1.9825247824842087,1.9825247678974054,1.9825247606767449,1.9825247595472015,1.9825247620557835,1.9825247665221029,1.9825247731437716,1.9825247835582382,1.9825247988955175,1.9825248174660557,1.9825248347188007,1.9825248487243474,1.9825248590482312,1.982524863477163,1.982524861623986,1.982524855448574,1.9825248479960997,1.98252484190757,1.9825248385157292,1.9825248377659754,1.982524838796871,1.9825248407781229,1.9825248435355953,1.982524847592958,1.9825248535280127,1.9825248609785164,1.9825248682384804,1.9825248739738004,1.9825248783870077,1.9825248817814893,1.9825248843909908,1.9825248863978313,1.9825248879427513,1.9825248891317486,1.9825248900455081,1.9825248907492852]},{\"name\":\"Exposed\",\"line\":{\"color\":\"#EF553B\"},\"error_y\":{\"array\":[0.0,0.00012463141379774633,8.04262546411289e-5,0.00016007562793712954,0.00044971182264269235,0.0008552778950185059,0.0013855064068717675,0.0020636626179765002,0.002921800174036371,0.00400021737959989,0.005348142444307805,0.007025073895120865,0.00910261000217604,0.011666727734944558,0.014820530916356784,0.01868752164568315,0.023415471734585774,0.029180992065553333,0.0361949132660778,0.04470861208099429,0.05502143009414532,0.06748936112351527,0.08253519205904958,0.1006603052184753,0.12245835608570939,0.14863108037580702,0.1800064505511552,0.21755940303337074,0.2624352840242424,0.3159762641739982,0.37975059646585385,0.4555847344325303,0.545597402900529,0.6522358793049986,0.7783119236007325,0.9270369544284871,1.1020504688143966,1.3074424283489405,1.5477582903932414,1.8279848687278806,2.1534979928831266,2.5299698000503255,2.96321078453481,3.4589352068603425,4.02241951089095,4.6580335645853355,5.3686395021138065,6.154820184122908,7.013958690923777,7.939146520771096,8.918047095444365,9.931722201511063,10.953633966857536,11.948962545351058,12.874548497937019,13.67967694808129,14.307957403798369,14.700494468528738,14.80026403597571,14.557529267376168,13.93573502527619,12.917321187003159,11.508962913793441,9.745844785347009,7.698115136836892,5.492365213357576,3.4283757332007108,2.562761780651279,3.9075405837019384,6.054718875176762,8.24948742401114,10.28888636756064,12.092206256439713,13.621978168905471,14.864809476949889,15.823579122147974,16.512523124685234,16.953452088708175,17.17268858239813,17.198647199842107,17.059998419823486,16.78436371612136,16.39745421531954,15.922568822977823,15.380361193458283,14.788804366244726,14.163284956198147,13.516781647157233,12.860087503942813,12.202051471479296,11.549821549454744,10.909076230752808,10.284239572626747,9.67867477850434,9.094856121033404,8.534519786414755,7.998793810928187,7.488310013887045,7.003298901444118,6.543669881222154,6.10907894069742,5.698984912738581,5.312696472988595,4.949410912481767,4.608245997672296,4.2882660986310235,3.9885034406826327,3.7079751554754776,3.4456970274115393,3.2006942999808676,2.9720101024837504,2.758711973557143,2.559896729274741,2.374693980450467,2.2022686059302368,2.041822303037369,1.8925944150265228,1.7538622126431398,1.6249407087100713,1.5051820880797668,1.393974897496292,1.290742995492194,1.1949443491703737,1.1060697226072427,1.0236413028250706,0.9472112592558769,0.8763602987762403,0.810696216235707,0.7498524575344423,0.6934867055670699,0.6412795094749804,0.5929329574239982,0.5481693868138061,0.5067301572303077,0.46837447147638395,0.432878252535987,0.4000330734544409,0.3696451457007051,0.3415343631290509,0.3155333938960992,0.2914868273135898,0.26925037179492306,0.24869009828642863,0.22968173057423608,0.2121099792681256,0.19586791970002992,0.1808564086162575,0.16698353671810862,0.1541641200474501,0.14231922344801282,0.13137571603309714,0.12126585635195289,0.11192690578138698,0.1033007691463338,0.09533365974211838,0.08797578661194816,0.0811810645434373,0.07490684463280078,0.06911366290442472,0.06376500727047067,0.05882710065711574,0.054268699922656156,0.05006090931944169,0.046177007072260544,0.04259228414095906,0.03928389518497782,0.03623072027131829,0.0334132362693443,0.030813397905256057,0.028414527329190357,0.026201211880202527,0.02415920943910399,0.02227536069355738,0.02053750773429038,0.018934418654035005,0.017455718021742322,0.016091822245637922,0.014833879781830664,0.013673715821661672,0.012603781066118303,0.011617104359040325,0.01070724888246565,0.009868271620154594,0.009094685823725225,0.008381426270090832,0.00772381717763663,0.007117542603689658,0.006558618937304054,0.006043369540170023,0.0055684012810829474,0.0051305828541520415,0.0047270247467996,0.004355060725538816,0.004012230720899669,0.003696265005491969,0.003405069571068416,0.003136712621497694,0.0028894121086176653,0.002661524215254566,0.002451532696777223,0.0022580390504321384,0.0020797534254743495,0.0019154862420871946,0.0017641404549314792,0.001624704405557353,0.0014962452177575442,0.001377902697084714,0.0012688837001867054,0.001168456941364974,0.0010759482027882937,0.0009907359110953758,0.0009122470410882669,0.0008399533479138917,0.0007733678940970763,0.0007120418263191561,0.0006555614126781787,0.0006035453144951766,0.000555642068283965,0.0005115277590571977,0.0004709038703814886,0.0004334952995183351,0.00039904852759566664,0.0003673299350471495,0.0003381242515331705,0.0003112331272206823,0.0002864738086372931,0.00026367790406163055,0.000242690268999079,0.00022336797573521867,0.0002055793451908774,0.00018920306341260152,0.0001741273718907799,0.0001602493219137176,0.0001474740856996818,0.0001357143190802453,0.00012488957203771927,0.00011492574442686828,0.00010575458473770656,9.731322978008786e-5,8.954378269562938e-5,8.239292572444908e-5,7.581156267580898e-5,6.975448407472412e-5,6.418004851771598e-5,5.90499172678056e-5,5.4328809747761355e-5,4.998423086041316e-5,4.598623852890199e-5,4.230724632634151e-5,3.892184835313687e-5,3.580665781548741e-5,3.294015432786571e-5,3.030253780594812e-5,2.7875588935650163e-5,2.564253759961014e-5,2.358794131497438e-5,2.1697575687099654e-5,1.9958338112715906e-5,1.835816447464446e-5,1.6885956359463463e-5,1.5531513397790966e-5,1.4285461679206673e-5,1.3139162822371323e-5,1.2084643375996125e-5,1.1114837226499794e-5,1.0223329760337955e-5,9.403995266655228e-6,8.65092141843271e-6,7.95848391406976e-6,7.321463463761458e-6,6.7351379262011515e-6,6.195315765563086e-6,5.698303467939513e-6,5.2408193753035024e-6,4.8198794808791375e-6,4.432686841244609e-6,4.076555292012653e-6,3.748890232496889e-6,3.447234522751933e-6,3.1693659273884847e-6,2.9134038175434653e-6,2.6778471827582294e-6,2.4614241434379777e-6,2.262525019654403e-6,2.0803007081469185e-6,1.917920705298562e-6,1.7779470658292663e-6,1.659509677932642e-6,1.5584708102991682e-6,1.4688152207779716e-6,1.3844733806926079e-6,1.3010368937596376e-6,1.2167678610432679e-6,1.1325261640080032e-6,1.0507210302713364e-6,9.73794237013572e-7,9.028608785748024e-7,8.370120315080055e-7,7.735851972238483e-7,7.09492260908376e-7,6.432950277517844e-7,5.770043190723566e-7,5.158515896458505e-7,4.641779569299048e-7,4.1720136763906623e-7,3.881629312018121e-7,4.223325481525162e-7,5.685193533773582e-7,8.231640338024634e-7,1.1246968270215528e-6,1.4021734510285575e-6,1.604545873844098e-6,1.712140868921359e-6,1.7355223022762767e-6,1.7043555848028148e-6,1.6510523736328006e-6,1.5953216532981447e-6,1.53550409277563e-6,1.4507778912689729e-6,1.3150387338982506e-6,1.1184062385494905e-6,8.858713767235907e-7,6.746459242899484e-7,5.222949523954371e-7,3.880626681056101e-7,3.8268711122361595e-7,6.847402709517822e-7,1.3325457493944548e-6,2.201508396409939e-6,3.0908788304586006e-6,3.818000462552295e-6,4.282222807561379e-6,4.48246666193652e-6,4.491653801401111e-6,4.404992271831798e-6,4.285942492055178e-6,4.133662262672825e-6,3.88888518613837e-6,3.481534201427587e-6,2.9028908646813407e-6,2.25783307032136e-6,1.718562328404098e-6,1.2988710451580022e-6,9.850503336707468e-7,1.007206388846494e-6,1.4935426708407196e-6,2.350321326128894e-6,3.339428238123405e-6,4.211076565416745e-6,4.806193846926175e-6,5.094166335361334e-6,5.146224608590656e-6,5.06834906645817e-6,4.929525568038715e-6,4.7212764482334644e-6,4.372650640687697e-6,3.821275135565682e-6,3.105632793825768e-6,2.3964646983353004e-6,1.8325181730007096e-6,1.3750624014432122e-6,1.1348395297187213e-6,1.2188629958959006e-6,1.593196450026881e-6,2.1126514605474232e-6,2.6077215341885966e-6,2.9596294146882975e-6,3.1324466307186073e-6,3.159738783121359e-6,3.101652081806479e-6,2.997788606194467e-6,2.841460058539314e-6,2.5919160937976322e-6,2.2229019247204813e-6,1.7784080191014616e-6,1.3696740833293483e-6,1.0382589018695557e-6,7.966592826498434e-7,7.039115469732126e-7,7.702420585572316e-7,9.443125470604982e-7,1.1468645933652044e-6,1.3100206530241347e-6,1.400653850241622e-6,1.421811070998363e-6,1.3969088301920717e-6,1.3475482885438969e-6,1.2774531168224438e-6,1.172186843291122e-6,1.016941522766445e-6,8.228034326303547e-7,6.354882837870259e-7,4.880976491563317e-7,3.748677950547032e-7,2.879198124847589e-7,2.2119222155188428e-7,1.6996032952557282e-7,1.3058225777008694e-7,1.003240742746782e-7,7.710967968112241e-8,5.9256395633787746e-8],\"thickness\":2,\"color\":\"#EF553B\",\"width\":0,\"type\":\"data\",\"opacity\":0.1},\"mode\":\"lines\",\"x\":[0.0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.5,9.0,9.5,10.0,10.5,11.0,11.5,12.0,12.5,13.0,13.5,14.0,14.5,15.0,15.5,16.0,16.5,17.0,17.5,18.0,18.5,19.0,19.5,20.0,20.5,21.0,21.5,22.0,22.5,23.0,23.5,24.0,24.5,25.0,25.5,26.0,26.5,27.0,27.5,28.0,28.5,29.0,29.5,30.0,30.5,31.0,31.5,32.0,32.5,33.0,33.5,34.0,34.5,35.0,35.5,36.0,36.5,37.0,37.5,38.0,38.5,39.0,39.5,40.0,40.5,41.0,41.5,42.0,42.5,43.0,43.5,44.0,44.5,45.0,45.5,46.0,46.5,47.0,47.5,48.0,48.5,49.0,49.5,50.0,50.5,51.0,51.5,52.0,52.5,53.0,53.5,54.0,54.5,55.0,55.5,56.0,56.5,57.0,57.5,58.0,58.5,59.0,59.5,60.0,60.5,61.0,61.5,62.0,62.5,63.0,63.5,64.0,64.5,65.0,65.5,66.0,66.5,67.0,67.5,68.0,68.5,69.0,69.5,70.0,70.5,71.0,71.5,72.0,72.5,73.0,73.5,74.0,74.5,75.0,75.5,76.0,76.5,77.0,77.5,78.0,78.5,79.0,79.5,80.0,80.5,81.0,81.5,82.0,82.5,83.0,83.5,84.0,84.5,85.0,85.5,86.0,86.5,87.0,87.5,88.0,88.5,89.0,89.5,90.0,90.5,91.0,91.5,92.0,92.5,93.0,93.5,94.0,94.5,95.0,95.5,96.0,96.5,97.0,97.5,98.0,98.5,99.0,99.5,100.0,100.5,101.0,101.5,102.0,102.5,103.0,103.5,104.0,104.5,105.0,105.5,106.0,106.5,107.0,107.5,108.0,108.5,109.0,109.5,110.0,110.5,111.0,111.5,112.0,112.5,113.0,113.5,114.0,114.5,115.0,115.5,116.0,116.5,117.0,117.5,118.0,118.5,119.0,119.5,120.0,120.5,121.0,121.5,122.0,122.5,123.0,123.5,124.0,124.5,125.0,125.5,126.0,126.5,127.0,127.5,128.0,128.5,129.0,129.5,130.0,130.5,131.0,131.5,132.0,132.5,133.0,133.5,134.0,134.5,135.0,135.5,136.0,136.5,137.0,137.5,138.0,138.5,139.0,139.5,140.0,140.5,141.0,141.5,142.0,142.5,143.0,143.5,144.0,144.5,145.0,145.5,146.0,146.5,147.0,147.5,148.0,148.5,149.0,149.5,150.0,150.5,151.0,151.5,152.0,152.5,153.0,153.5,154.0,154.5,155.0,155.5,156.0,156.5,157.0,157.5,158.0,158.5,159.0,159.5,160.0,160.5,161.0,161.5,162.0,162.5,163.0,163.5,164.0,164.5,165.0,165.5,166.0,166.5,167.0,167.5,168.0,168.5,169.0,169.5,170.0,170.5,171.0,171.5,172.0,172.5,173.0,173.5,174.0,174.5,175.0,175.5,176.0,176.5,177.0,177.5,178.0,178.5,179.0,179.5,180.0,180.5,181.0,181.5,182.0,182.5,183.0,183.5,184.0,184.5,185.0,185.5,186.0,186.5,187.0,187.5,188.0,188.5,189.0,189.5,190.0,190.5,191.0,191.5,192.0,192.5,193.0,193.5,194.0,194.5,195.0,195.5,196.0,196.5,197.0,197.5,198.0,198.5,199.0,199.5,200.0],\"opacity\":0.8,\"y\":[0.01,0.009482514648147804,0.00972157281279339,0.01050895531431047,0.011732832064888074,0.013342174722795334,0.015325547110116007,0.017698677534568497,0.020497427937054294,0.023774117622670538,0.02759597555764794,0.032044992407926416,0.03721874712739553,0.04323196981038997,0.05021871856702117,0.0583351220640977,0.06776268718072397,0.07871220555224175,0.09142831622273297,0.10619480299494514,0.12334071933781622,0.14324745463710004,0.16635686582908144,0.19318061595612215,0.22431087036741812,0.2604325270846013,0.3023371517863589,0.35093880087593465,0.4072918961997237,0.47261137158275135,0.5482951774996655,0.6359493067346174,0.7374151720336998,0.854799616432491,0.9905068290367923,1.1472722296752504,1.3281964306344853,1.5367796858469518,1.7769531067777904,2.0531060646106747,2.3701033296614176,2.733290791061128,3.148480894769416,3.6219126742820995,4.160174338442876,4.7700780379422065,5.458480320541744,6.232027593559396,7.096823545129233,8.057993222360654,9.11917003291243,10.281877832055304,11.54485709636411,12.903337714833146,14.348358406454487,15.866171749615104,17.437858652503312,19.039240376124297,20.641198620548675,22.210474479488397,23.710956850739237,25.105424900743106,26.3576737286635,27.43465901083913,28.30864854733623,28.958927505442922,29.37302903209382,29.547196433777493,29.48617612989209,29.202336636258195,28.71433806614869,28.045489501193344,27.222028689224757,26.27148600408479,25.22127267358094,24.097552594467857,22.92442470235161,21.723403879953842,20.513158938612797,19.309455371741794,18.12525145869359,16.97089571252446,15.854386487724822,14.781659389916735,13.756879106805906,12.78272117691382,11.860630913452926,10.991056719676005,10.173653749390457,9.407459234594558,8.691041150841533,8.022621834230668,7.400180184730232,6.821534564528552,6.284409497206761,5.78648876582542,5.325456742220411,4.8990303892840625,4.504983269927242,4.141163165265875,3.8055046352098723,3.4960373052917992,3.210890952124032,2.9482979499799398,2.706593687166972,2.4842154653113226,2.2797002390922283,2.0916814592708626,1.9188853547033116,1.760126769146644,1.614304739911138,1.4803979670627485,1.3574602317443398,1.2446158426370952,1.1410551910733722,1.0460304236613083,0.958851274024221,0.8788810866064792,0.8055330308938424,0.7382665070928834,0.6765837697899991,0.6200267432729609,0.5681740374036842,0.5206381579025399,0.4770629075050927,0.43712095795476597,0.4005115978869651,0.3669586407825179,0.33620848457333913,0.30802831354514104,0.28220443726489897,0.2585407556811443,0.2368573383225856,0.21698911685975134,0.1987846777118104,0.18210514964168875,0.16682317847261216,0.1528219841863679,0.139994493692315,0.12824254160224716,0.11747613630473092,0.10761278572884767,0.09857687700996212,0.09029910689360618,0.08271595850730105,0.07576922146829067,0.06940555107605569,0.0635760632037953,0.058235963377762726,0.05334420601952586,0.048863181875960816,0.04475843127354606,0.04099838114770877,0.03755410407680037,0.03439909724281411,0.03150907953868454,0.028861805789376825,0.026436896506709634,0.02421568160670369,0.022181057300441048,0.020317354854056894,0.018610220376603846,0.017046504678903236,0.015614162281359973,0.014302158807979892,0.013100386241967656,0.011999585259105437,0.010991273988497805,0.010067682793614452,0.009221694495467286,0.008446789623280064,0.007736996261855172,0.007086844093293682,0.006491322274304311,0.005945840848655811,0.005446195436956541,0.004988534849486621,0.004569331421959472,0.004185353841540517,0.0038336422599739104,0.003511485498801535,0.00321640016475551,0.002946111514634993,0.00269853592590288,0.002471764841919022,0.002264050068921467,0.0020737903035388666,0.0018995187923435469,0.0017398920250279203,0.0015936793755287901,0.0014597536229488677,0.0013370822680370497,0.001224719574287101,0.001121799274331682,0.0010275278899609097,0.0009411786177868726,0.0008620857322830773,0.0007896394538007723,0.0007232812377540634,0.0006624994786672473,0.0006068255621115091,0.0005558302483458799,0.000509120366993271,0.00046633578963048823,0.0004271466539000749,0.00039125081811528336,0.0003583715289977979,0.00032825528715741217,0.00030066989520307784,0.0002754026719525362,0.0002522588130826327,0.000231059879280003,0.00021164242610994014,0.00019385674687098884,0.00017756571338894825,0.00016264371930804037,0.0001489757137515096,0.00013645631571353642,0.0001249890015984319,0.00011448535990005309,0.0001048644081138494,9.605196759594448e-5,8.798009222809148e-5,8.0586546414247e-5,7.381432712429533e-5,6.761122341006465e-5,6.192940805190677e-5,5.672507302504849e-5,5.195809357646173e-5,4.7591716293924814e-5,4.359227546815001e-5,3.992893404790926e-5,3.657344651776023e-5,3.3499941507783126e-5,3.0684722343720686e-5,2.810608406418184e-5,2.574414566900593e-5,2.3580696519760242e-5,2.1599055889122084e-5,1.9783944651441458e-5,1.8121368021092155e-5,1.6598508078880088e-5,1.5203624580175836e-5,1.3925962618304359e-5,1.2755671921143158e-5,1.1683733282942022e-5,1.0701884424329831e-5,9.802554465578277e-6,8.978806200655093e-6,8.2242842180259e-6,7.533167478807484e-6,6.900125437776603e-6,6.320277177810054e-6,5.789153323560989e-6,5.302660705598939e-6,4.857049861770624e-6,4.4488854883355154e-6,4.07501988928451e-6,3.7325693183043317e-6,3.4188928642236704e-6,3.1315731969318442e-6,2.8683980676572533e-6,2.6273405477179757e-6,2.4065416517851065e-6,2.2043420150188446e-6,2.019236375768059e-6,1.8498100527879824e-6,1.6947224794556423e-6,1.5527156510383218e-6,1.4226298639972343e-6,1.3034157210512458e-6,1.194136847555112e-6,1.0939621136636284e-6,1.002149382755545e-6,9.180249096830572e-7,8.409634925909791e-7,7.703743393079714e-7,7.056963436767368e-7,6.464040786053094e-7,5.920223011919598e-7,5.421421308132249e-7,4.964263038492578e-7,4.5458402844764885e-7,4.162780083324361e-7,3.8130193792969954e-7,3.501099408360075e-7,3.230441074548456e-7,2.9985363975003724e-7,2.7975187720096384e-7,2.617100065690591e-7,2.4478182426063717e-7,2.283376346941668e-7,2.1215397481014225e-7,1.9635935369887254e-7,1.8127458726553665e-7,1.672095909034466e-7,1.5428666830421657e-7,1.4235340179911585e-7,1.3102620899873058e-7,1.1986848197596075e-7,1.0865496882642386e-7,9.760669313070607e-8,8.739823464808742e-8,7.864140726261983e-8,7.066204199881055e-8,6.536804242551539e-8,6.823317447294984e-8,8.18733903674015e-8,1.042700141839691e-7,1.3020899342005116e-7,1.5377633871757547e-7,1.705492040481091e-7,1.7878367101258367e-7,1.7942419339644455e-7,1.7514583176143825e-7,1.688888626473542e-7,1.624560829002666e-7,1.5571614673885296e-7,1.4679157141620373e-7,1.3330762673328173e-7,1.143381842075343e-7,9.21067434038992e-8,7.17852757836309e-8,5.6852176047595425e-8,4.36873739959219e-8,4.142496074605306e-8,6.465311864179314e-8,1.1631057814766636e-7,1.8649230494646283e-7,2.5889343230458597e-7,3.184955346640115e-7,3.5687069220500385e-7,3.7369713003972376e-7,3.747455297433976e-7,3.6770740510804033e-7,3.577962083097716e-7,3.4505808712340724e-7,3.247824483829749e-7,2.913026975905784e-7,2.4382471940734724e-7,1.9071483871827697e-7,1.4592015705900443e-7,1.109652178560134e-7,8.442088073199718e-8,8.320364120942551e-8,1.1684989391043306e-7,1.7858559057832342e-7,2.509181504232007e-7,3.152917109061745e-7,3.5968343806071954e-7,3.8149541029717976e-7,3.857105054358641e-7,3.800317574638385e-7,3.6961280721249315e-7,3.5401234980663475e-7,3.2816788133778297e-7,2.874835677726172e-7,2.3456370061407838e-7,1.8169696628561877e-7,1.3933268086219073e-7,1.0496663515682466e-7,8.5831622937808e-8,8.91031229284471e-8,1.1253718931380394e-7,1.463915072445358e-7,1.7918412598006297e-7,2.027308133677383e-7,2.143732453407771e-7,2.1617220333255565e-7,2.1209260094856096e-7,2.0485049890955765e-7,1.9412629418092217e-7,1.7727298533228144e-7,1.5246382153291268e-7,1.224297371684706e-7,9.452712407901159e-8,7.187464311481982e-8,5.5174479034751133e-8,4.800419070792917e-8,5.0989510274043856e-8,6.09623331883165e-8,7.300024108511405e-8,8.283413235045802e-8,8.830964237275192e-8,8.951497577994585e-8,8.78425465701178e-8,8.463442890116212e-8,8.017206142315706e-8,7.360892141574945e-8,6.401099163157843e-8,5.1963782641447143e-8,4.022489742447544e-8,3.095081170597695e-8,2.38141204129497e-8,1.832439243485714e-8,1.4103770061397214e-8,1.0857525903202087e-8,8.358142365984279e-9,6.434265835274003e-9,4.955456827419649e-9,3.816221126038038e-9]},{\"name\":\"Infected\",\"line\":{\"color\":\"#00CC96\"},\"error_y\":{\"array\":[0.0,0.00020643153023608716,0.00036435493080950814,0.0005125201505430304,0.0006740515342503478,0.0008643256675611584,0.0010954080604766421,0.0013785636646540872,0.0017257341018176236,0.0021504945091627937,0.002668775112362817,0.0032995049568614794,0.004065267759704367,0.00499302563629899,0.006114950052346292,0.007469392410317668,0.009102025470666067,0.01106718752723273,0.013429465579637855,0.016265557203029815,0.01966645879309519,0.023740030149937075,0.028613996404883386,0.03443945387541597,0.0413949574249927,0.04969126294906704,0.059576818710070915,0.07134409944322834,0.08533689403976633,0.1019585887384493,0.12168158466133727,0.14505784210559605,0.17273077943859771,0.20544807285897554,0.24407575558340674,0.28961271477804695,0.3432064117328954,0.40616712382399817,0.47998197468765696,0.5663248385082861,0.6670637723898569,0.784258805806441,0.9201502671190723,1.0771300784875375,1.2576943359435648,1.464370081418354,1.6996024834030035,1.9656053161816296,2.2641576933888055,2.596360951621978,2.962320758668118,3.3607988087881138,3.7888182285387937,4.241278668673252,4.710592547720133,5.186425319527248,5.65560239725756,6.1022375869324925,6.508183791168955,6.853812430106247,7.1191605655845365,7.285349124756735,7.3360584073749955,7.259213799191502,7.048226528298539,6.7029827510765765,6.230176311426539,5.643142714590442,4.9611825899857305,4.2086871970870225,3.414669641456848,2.6142497322951708,1.8574040471948081,1.2459859235193878,1.0203649706367042,1.3062723233783269,1.8092231614753274,2.333186710528954,2.816133253995517,3.237608988897024,3.5911174020340484,3.8762265083297747,4.095673280856435,4.253986276326619,4.356694171151236,4.409808775078463,4.419471846750557,4.391707854871572,4.332256934807195,4.246467143636547,4.139229259319001,4.014947943706522,3.87753505125041,3.7304223854049288,3.5765861923197786,3.418577574821234,3.258559496162403,3.098343522075452,2.93942792333305,2.7830347706302017,2.630143606677819,2.481524165891692,2.33776518916499,2.199300902622702,2.066434918312169,1.9393610032022366,1.8181812119649077,1.7029222646062745,1.593549071743193,1.489976806459013,1.3920813427600882,1.299707765350848,1.2126777627592102,1.1307959789132274,1.0538550433372809,0.9816399544848505,0.9139317602801073,0.850510373497999,0.791156894356047,0.7356556395721385,0.683795490717013,0.6353711051940434,0.5901838215533232,0.5480423049599098,0.5087629030394728,0.4721700070115602,0.438096159360615,0.4063820807392937,0.37687662388245896,0.34943668784762466,0.323927018679041,0.30021996166973336,0.27819526398139527,0.25773976504894647,0.23874711507141164,0.221117475403519,0.20475723347452504,0.18957868953752513,0.17549973526347237,0.16244357867544515,0.15033844968118634,0.13911730482599116,0.12871756219850372,0.1190808404551158,0.11015271159637255,0.10188244899968907,0.09422279533985352,0.0871297574672704,0.08056238735361552,0.0744825875683871,0.06885492587935363,0.06364646230431585,0.058826585609396145,0.05436685294351476,0.050240841872043765,0.04642401917495303,0.04289361008569909,0.03962847363454418,0.03660899330859068,0.033816970058262015,0.031235525404000986,0.028849008131438883,0.026642905845566233,0.02460376471849677,0.022719117193821182,0.020977410014133856,0.019367937638919707,0.01788078322901266,0.016506761273395912,0.01523736573931118,0.014064720888699115,0.012981534784717226,0.011981056473992462,0.01105703736433427,0.010203695435278895,0.009415679427730972,0.00868803787910719,0.008016189949698396,0.007395898045087831,0.0068232428050699805,0.006294599563898548,0.005806616262083069,0.005356193028731294,0.004940463594504694,0.004556778338783733,0.0042026881277597355,0.003875928629309549,0.00357440714455331,0.003296189612916235,0.003039488782215717,0.0028026532771737466,0.0025841573736807106,0.002382591465358096,0.0021966532471872145,0.002025139633333102,0.0018669393728115873,0.001721026227284968,0.0015864524351050405,0.001462342558664581,0.001347888278976052,0.001242343217767036,0.0011450182660136313,0.0010552772501979859,0.0009725328933673999,0.0008962430664140609,0.0008259073247027459,0.0007610637215802875,0.0007012858833975902,0.0006461803204797657,0.0005953839349668746,0.0005485616696155387,0.0005054042825967008,0.0004656264541332034,0.00042896493374562465,0.0003951768545424538,0.0003640381803921872,0.000335342252358282,0.00030889843962280306,0.0002845308950571899,0.0002620774115442107,0.00024138837211316083,0.00022232578492011892,0.00020476239308586352,0.0001885808493953371,0.00017367294686478996,0.00015993889818890114,0.00014728667602440613,0.00013563143456598944,0.0001248949262581292,0.00011500502413688531,0.00010589526197022012,9.750438617643055e-5,8.977593500275237e-5,8.265785294148077e-5,7.610214240291986e-5,7.006455025337532e-5,6.450428396135393e-5,5.938375077605057e-5,5.466831358727671e-5,5.032605888658941e-5,4.6327575562761025e-5,4.264574812170179e-5,3.925557432190311e-5,3.6134033860712e-5,3.3259865038705666e-5,3.061331303220304e-5,2.817624687033147e-5,2.593213513628379e-5,2.3865888334509542e-5,2.196365905932805e-5,2.0212657790205733e-5,1.8601014487128406e-5,1.7117694205842156e-5,1.5752458717195692e-5,1.4495855591808046e-5,1.3339211379578465e-5,1.2274606362067881e-5,1.1294814890281732e-5,1.0393207547716865e-5,9.56362928736002e-6,8.800291267327338e-6,8.097743381970986e-6,7.45104612765484e-6,6.855830728452812e-6,6.305869104675505e-6,5.794711314269069e-6,5.31823912267606e-6,4.874906485158816e-6,4.464763910516516e-6,4.088166908661731e-6,3.744743864294094e-6,3.4328951432572257e-6,3.149850004016655e-6,2.8921496380795386e-6,2.6563460915781596e-6,2.439678341052981e-6,2.2404927137714917e-6,2.0582288722601532e-6,1.892912923342945e-6,1.7442744261524112e-6,1.6108045745198264e-6,1.4893203829605319e-6,1.3759865032553594e-6,1.2707248955130232e-6,1.1685081277422597e-6,1.0350754752155393e-6,8.602263029169702e-7,7.205109344112492e-7,7.641874663180083e-7,9.846611096276878e-7,1.234656981434087e-6,1.421487403604558e-6,1.5180763456703029e-6,1.5369860629850613e-6,1.5095236637627596e-6,1.467082600435044e-6,1.4264740742657451e-6,1.3828396518201747e-6,1.31288506839502e-6,1.1888026851176644e-6,9.991960854586872e-7,7.676888760719584e-7,5.528218119162278e-7,4.052014985258056e-7,2.780023330102866e-7,3.273251123902799e-7,1.0390633015534472e-6,2.6737771155288978e-6,5.038688262246428e-6,7.670769063671212e-6,1.0051196539209086e-5,1.1796177412371053e-5,1.275994410385038e-5,1.303376399660887e-5,1.2859860040571068e-5,1.250113768652559e-5,1.2117280862654348e-5,1.1695225889090533e-5,1.1067273923540784e-5,1.002316593537398e-5,8.483305732604447e-6,6.648973700285818e-6,4.981851568923897e-6,3.786395871058237e-6,2.7314138424523163e-6,2.7340301691664827e-6,5.225729351923466e-6,1.0477621737649344e-5,1.7497303704373057e-5,2.46761240878918e-5,3.0546038489445486e-5,3.429773224717086e-5,3.592303720678296e-5,3.600932471950918e-5,3.5323234696608075e-5,3.437569532865465e-5,3.315987727937049e-5,3.1198591632638925e-5,2.7927679980689345e-5,2.3277052926258375e-5,1.8091229245175604e-5,1.375674490804728e-5,1.0384312455880872e-5,7.86405092114394e-6,8.051551965196957e-6,1.197832766403648e-5,1.888727879602144e-5,2.6860486353493916e-5,3.388616448521446e-5,3.8683225412281155e-5,4.100543594052276e-5,4.142696337572106e-5,4.080177160801549e-5,3.9685599740042334e-5,3.8009983767440714e-5,3.520315223866726e-5,3.076259991862952e-5,2.4998594878720448e-5,1.9287019593034823e-5,1.4745514061837335e-5,1.1061711985299647e-5,9.128794140281463e-6,9.809769829831574e-6,1.2830905856982023e-5,1.7021367759653786e-5,2.1014471113304532e-5,2.385273513763605e-5,2.5246748811927777e-5,2.546738445935793e-5,2.499970443766364e-5,2.416297196818364e-5,2.2903117353797203e-5,2.0891463616182405e-5,1.7916384966927042e-5,1.433283657719462e-5,1.1037899733950143e-5,8.366315494821995e-6,6.419003588224187e-6,5.67243999599693e-6,6.20919729149622e-6,7.6150007149198504e-6,9.250267840808134e-6,1.056733000752281e-5,1.1298996466120622e-5,1.146997930041193e-5,1.1269309381804389e-5,1.087129151229645e-5,1.0305911268706113e-5,9.456616049657128e-6,8.203936019806252e-6,6.637457290629784e-6,5.126170821377707e-6,3.937056204699725e-6,3.0235674207113706e-6,2.3221296989595318e-6,1.7838338228943908e-6,1.3705572208345082e-6,1.0529147860670403e-6,8.088480771631067e-7,6.216067513518466e-7,4.776143830147815e-7],\"thickness\":2,\"color\":\"#00CC96\",\"width\":0,\"type\":\"data\",\"opacity\":0.1},\"mode\":\"lines\",\"x\":[0.0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.5,9.0,9.5,10.0,10.5,11.0,11.5,12.0,12.5,13.0,13.5,14.0,14.5,15.0,15.5,16.0,16.5,17.0,17.5,18.0,18.5,19.0,19.5,20.0,20.5,21.0,21.5,22.0,22.5,23.0,23.5,24.0,24.5,25.0,25.5,26.0,26.5,27.0,27.5,28.0,28.5,29.0,29.5,30.0,30.5,31.0,31.5,32.0,32.5,33.0,33.5,34.0,34.5,35.0,35.5,36.0,36.5,37.0,37.5,38.0,38.5,39.0,39.5,40.0,40.5,41.0,41.5,42.0,42.5,43.0,43.5,44.0,44.5,45.0,45.5,46.0,46.5,47.0,47.5,48.0,48.5,49.0,49.5,50.0,50.5,51.0,51.5,52.0,52.5,53.0,53.5,54.0,54.5,55.0,55.5,56.0,56.5,57.0,57.5,58.0,58.5,59.0,59.5,60.0,60.5,61.0,61.5,62.0,62.5,63.0,63.5,64.0,64.5,65.0,65.5,66.0,66.5,67.0,67.5,68.0,68.5,69.0,69.5,70.0,70.5,71.0,71.5,72.0,72.5,73.0,73.5,74.0,74.5,75.0,75.5,76.0,76.5,77.0,77.5,78.0,78.5,79.0,79.5,80.0,80.5,81.0,81.5,82.0,82.5,83.0,83.5,84.0,84.5,85.0,85.5,86.0,86.5,87.0,87.5,88.0,88.5,89.0,89.5,90.0,90.5,91.0,91.5,92.0,92.5,93.0,93.5,94.0,94.5,95.0,95.5,96.0,96.5,97.0,97.5,98.0,98.5,99.0,99.5,100.0,100.5,101.0,101.5,102.0,102.5,103.0,103.5,104.0,104.5,105.0,105.5,106.0,106.5,107.0,107.5,108.0,108.5,109.0,109.5,110.0,110.5,111.0,111.5,112.0,112.5,113.0,113.5,114.0,114.5,115.0,115.5,116.0,116.5,117.0,117.5,118.0,118.5,119.0,119.5,120.0,120.5,121.0,121.5,122.0,122.5,123.0,123.5,124.0,124.5,125.0,125.5,126.0,126.5,127.0,127.5,128.0,128.5,129.0,129.5,130.0,130.5,131.0,131.5,132.0,132.5,133.0,133.5,134.0,134.5,135.0,135.5,136.0,136.5,137.0,137.5,138.0,138.5,139.0,139.5,140.0,140.5,141.0,141.5,142.0,142.5,143.0,143.5,144.0,144.5,145.0,145.5,146.0,146.5,147.0,147.5,148.0,148.5,149.0,149.5,150.0,150.5,151.0,151.5,152.0,152.5,153.0,153.5,154.0,154.5,155.0,155.5,156.0,156.5,157.0,157.5,158.0,158.5,159.0,159.5,160.0,160.5,161.0,161.5,162.0,162.5,163.0,163.5,164.0,164.5,165.0,165.5,166.0,166.5,167.0,167.5,168.0,168.5,169.0,169.5,170.0,170.5,171.0,171.5,172.0,172.5,173.0,173.5,174.0,174.5,175.0,175.5,176.0,176.5,177.0,177.5,178.0,178.5,179.0,179.5,180.0,180.5,181.0,181.5,182.0,182.5,183.0,183.5,184.0,184.5,185.0,185.5,186.0,186.5,187.0,187.5,188.0,188.5,189.0,189.5,190.0,190.5,191.0,191.5,192.0,192.5,193.0,193.5,194.0,194.5,195.0,195.5,196.0,196.5,197.0,197.5,198.0,198.5,199.0,199.5,200.0],\"opacity\":0.8,\"y\":[0.0,0.0008543117709939649,0.0015107271748540962,0.0020694783088437084,0.0025949772616671108,0.0031304945765273256,0.003707156730199935,0.0043495129714171896,0.005079038931502352,0.005916409199303184,0.006883046880401194,0.008002261986361416,0.009300172160521206,0.010806528047064792,0.012555523258459158,0.014586643962777044,0.016945599205259752,0.019685365244188374,0.022867374360688794,0.026562877391082654,0.03085451145943312,0.035838104858153357,0.04162475607829725,0.04834322683476787,0.05614269483987952,0.06519591159308125,0.07570282089346438,0.08789469531569791,0.102038858228466,0.11844403467438373,0.13746641638194437,0.15951647426609744,0.18506664475430012,0.21465977633936492,0.24891853305685735,0.28855550307009936,0.3343843596082962,0.3873312416539849,0.44844684794828,0.5189180288528464,0.600079471671643,0.69342323059438,0.8006061362829116,0.9234526265311099,1.0639522687897702,1.224249512491663,1.4066205319574063,1.6134373184742437,1.8471117197783506,2.11002268858358,2.404410556774502,2.7322501806411954,3.095089044629815,3.4938670342441385,3.928704380457203,4.398685915126843,4.9016452519891835,5.433978347716839,5.990507397323955,6.564423618634792,7.147340776691465,7.729475365258695,8.299925413716288,8.847141621827374,9.359426185291381,9.825541741955982,10.235265392640331,10.57993779656151,10.852873762151424,11.049654040768344,11.168228505383041,11.208878067582635,11.174030345354513,11.067971053611995,10.896477134333834,10.666421678814524,10.385382651756048,10.06127786254663,9.702046836190249,9.315391342394493,8.908573459273455,8.488273923711082,8.060500557615443,7.6305423253901346,7.202960792452844,6.781605516308592,6.36965345766464,5.969658531125412,5.583611504466465,5.213003064715578,4.858885951216492,4.52193691822687,4.2025135098883855,3.9007074296730004,3.6163925837641093,3.3492669390219802,3.0988903395421916,2.8647162109313826,2.646119288885945,2.442419138529197,2.2528991720615537,2.0768230160969687,1.9134473644278327,1.7620325153372738,1.6218508056428507,1.492192983069631,1.3723729582429811,1.2617315056157852,1.159638552371731,1.0654947886180295,0.978732580149975,0.8988161288289007,0.8252412657516609,0.7575349401249821,0.6952543057671797,0.6379857050932363,0.5853435254125752,0.5369688732962871,0.49252821402145003,0.45171205302461503,0.41423350122045294,0.37982693550472146,0.3482466764268296,0.3192656979986946,0.29267435107754036,0.2682792021272823,0.2459018846312618,0.22537802001831025,0.20655620419503673,0.18929706322640935,0.17347234795953803,0.15896408380998384,0.14566380404121748,0.1334718056221587,0.12229647096543132,0.11205363517113887,0.10266600474088626,0.09406261078720016,0.08617829934477649,0.07895327273131048,0.07233265802577281,0.06626610569341858,0.06070742574341385,0.05561425021995669,0.05094772325791584,0.04667221110435818,0.042755037468040956,0.039166244568930864,0.03587836630486905,0.03286622340137591,0.030106734765450487,0.02757874459240623,0.025262863469328205,0.023141320693658957,0.021197829404963,0.019417464880952893,0.01778655078256185,0.01629255417687613,0.014923991249806107,0.0136703395127194,0.012521958105954774,0.011470014016487005,0.010506414077352838,0.009623743187156883,0.008815208320563452,0.008074586053045967,0.007396174568739471,0.006774750441609141,0.006205528394879563,0.005684124805775128,0.005206524039833427,0.004769047417834437,0.00436832487051542,0.0040012692438652275,0.003665052783652086,0.0033570849805343575,0.0030749928100857757,0.002816602534685511,0.0025799229489783825,0.002363130129449506,0.002164553389538046,0.0019826623535268264,0.0018160551274729651,0.0016634475404109983,0.0015236633540018048,0.0013956251952414193,0.001278346086689575,0.001170921998600713,0.0010725248462549594,0.0009823961178782236,0.0008998410495573099,0.0008242232679024915,0.0007549598666721944,0.0006915168972298684,0.0006334052547562692,0.0005801769325944719,0.0005314215959446541,0.0004867633944649736,0.0004458580152234388,0.00040839009508939546,0.0003740707685606746,0.0003426354450521476,0.00031384177430917313,0.00028746777696666236,0.000263310128216839,0.00024118258494281426,0.00022091454764801847,0.00020234974806110156,0.00018534505142792074,0.0001697693592086091,0.00015550259317820164,0.0001424347500306238,0.0001304650734550679,0.00011950127535321714,0.00010945882349204531,0.00010026029225578853,9.183476518824644e-5,8.411728642712709e-5,7.704835803980963e-5,7.057348017334509e-5,6.464273083062045e-5,5.921038197939137e-5,5.423454859129153e-5,4.967686709397505e-5,4.550219960148685e-5,4.1678360163912755e-5,3.817586311677184e-5,3.496770161344644e-5,3.202913535381132e-5,2.933750526669118e-5,2.687206112054131e-5,2.4613799699731897e-5,2.254531536399201e-5,2.065066361900986e-5,1.8915237391330536e-5,1.73256550207173e-5,1.586965855797689e-5,1.4536020786058602e-5,1.33144594666921e-5,1.2195557654460233e-5,1.1170689514396759e-5,1.0231951928312566e-5,9.372103279325285e-6,8.584513561146398e-6,7.863101431868148e-6,7.202269095037923e-6,6.596900826134525e-6,6.042339636963461e-6,5.534343376320701e-6,5.0690353995158366e-6,4.642859351323633e-6,4.252542974435655e-6,3.89507218176337e-6,3.567673915993372e-6,3.2678045636356783e-6,2.9931398933847393e-6,2.741562650028195e-6,2.5111450552616646e-6,2.3001255456861916e-6,2.1068821160524305e-6,1.9299086321402952e-6,1.767805433117073e-6,1.6193041620509793e-6,1.4832735512765399e-6,1.3583121790817882e-6,1.2430154477571776e-6,1.1363927792715412e-6,1.0379051549371226e-6,9.473058866189074e-7,8.644291282474385e-7,7.890162970495104e-7,7.206255004354764e-7,6.586332568755091e-7,6.023112573589539e-7,5.509436381633777e-7,5.039422256610474e-7,4.609184697565246e-7,4.2168130429587424e-7,3.861499603817633e-7,3.541998120333005e-7,3.2549765292907016e-7,2.994303882399458e-7,2.752879766055677e-7,2.5300740992450744e-7,2.3169215383178374e-7,2.0525513340308882e-7,1.6872534021034265e-7,1.2216597623832884e-7,7.019237682923103e-8,1.955443493774598e-8,-2.353385588868346e-8,-5.53201779382418e-8,-7.525884531632516e-8,-8.55765880983526e-8,-8.997496820816193e-8,-9.197575197443308e-8,-9.348245217962946e-8,-9.407450673927145e-8,-9.137018193605874e-8,-8.249027538212365e-8,-6.62270475952699e-8,-4.497153124836043e-8,-2.4777453785962993e-8,-1.1139766891955631e-8,1.0114620513187269e-9,-4.344719387085757e-9,-7.237299603460919e-8,-2.248222860893359e-7,-4.454895075204603e-7,-6.919987710665231e-7,-9.162226880817641e-7,-1.0822130480156708e-6,-1.1759217939380905e-6,-1.205280005242418e-6,-1.192362484470993e-6,-1.1613985401136392e-6,-1.1272956592253955e-6,-1.089121972803741e-6,-1.0316457330409976e-6,-9.355554448554129e-7,-7.933828244535328e-7,-6.234223951657088e-7,-4.680862753145917e-7,-3.559210092684937e-7,-2.573823810810031e-7,-2.472813257061126e-7,-4.450512892072842e-7,-8.747980316316769e-7,-1.4555275307233968e-6,-2.053874210620821e-6,-2.5469946673549163e-6,-2.8659688142642687e-6,-3.0082020069912557e-6,-3.0209482295215628e-6,-2.9671758297861673e-6,-2.8895735856279445e-6,-2.7885460595161416e-6,-2.625573263155932e-6,-2.354310601218982e-6,-1.9682808967265785e-6,-1.5359610191374668e-6,-1.1714912400292511e-6,-8.873621127676137e-7,-6.718941447822731e-7,-6.635208169108229e-7,-9.402864598392535e-7,-1.4467733099389374e-6,-2.039857686216026e-6,-2.5677146727453545e-6,-2.9319754092041973e-6,-3.1113901547321736e-6,-3.1467387983612856e-6,-3.1010584426694598e-6,-3.0165250861293534e-6,-2.8895332738464264e-6,-2.67866387597838e-6,-2.346315888168014e-6,-1.9138033287374747e-6,-1.4816829331689352e-6,-1.1354603474628402e-6,-8.546480085729796e-7,-6.98431632613837e-7,-7.255277142428215e-7,-9.175775791661457e-7,-1.1948665377123833e-6,-1.463445041440231e-6,-1.656347119995445e-6,-1.7518226747442292e-6,-1.766735786871934e-6,-1.7335310606473018e-6,-1.6744341674118253e-6,-1.586831182565193e-6,-1.4490640163705855e-6,-1.246186229833188e-6,-1.0005447991026367e-6,-7.723346647493589e-7,-5.870752303502881e-7,-4.5051289513359117e-7,-3.9192189826162956e-7,-4.164229461921056e-7,-4.980934257662019e-7,-5.966559113153757e-7,-6.771787321891077e-7,-7.220341241528153e-7,-7.319442263881274e-7,-7.18302905347262e-7,-6.920920874699634e-7,-6.556149647590331e-7,-6.019451004428925e-7,-5.234401064229764e-7,-4.2489118987803336e-7,-3.288627968892388e-7,-2.5300059864203287e-7,-1.9462576730959903e-7,-1.4972549070401382e-7,-1.1520808041826617e-7,-8.866205345906822e-8,-6.822586278243573e-8,-5.249751531479321e-8,-4.040979016997822e-8,-3.109957341849579e-8]},{\"name\":\"Recovered\",\"line\":{\"color\":\"#AB63FA\"},\"error_y\":{\"array\":[0.0,2.9242548828491624e-5,0.00010489674595499856,0.00021802037815553033,0.00036781440680484193,0.0005585912653413864,0.0007982826181095011,0.0010978235555049879,0.0014710527710972217,0.0019349363933218251,0.0025100170352334622,0.0032210430914687586,0.0040977647515940884,0.005175902663021362,0.0064983082088468196,0.008116344177525887,0.010091522773883548,0.012497446412602833,0.015422104764979442,0.01897059159144675,0.023268314234770892,0.028464782928829018,0.03473807858983109,0.04230011434361011,0.05140282132598587,0.062345414549989105,0.07548290823084769,0.0912360750294805,0.11010305858401334,0.13267290515834632,0.1596412476319898,0.19182845527439282,0.23020043855871658,0.27589260464333454,0.3302369778344102,0.3947930307844767,0.47138175434146445,0.5621239683258218,0.6694815623066666,0.7963023857029332,0.9458660801303901,1.121931577713119,1.3287822066353498,1.571266728867237,1.8548300144280234,2.1855277949757097,2.5700212030904375,3.015536606992269,3.52978468780568,4.1208167646259595,4.796822200954063,5.56583467694162,6.435352818887284,7.411856018983891,8.5002350539713,9.703140817271946,11.020286296841023,12.44776261070061,13.977417125662253,15.59639338737675,17.286895896084314,19.026275841428195,20.78755094943603,22.54017824780155,24.25131893080659,25.887282670156985,27.41519324400744,28.80460076200554,30.028958542804347,31.066803341956334,31.902553740900796,32.52688615146137,32.93669350809987,33.13468728864654,33.128711170296285,32.93086634538542,32.55655862398115,32.02352416469282,31.350917930463268,30.558493896927963,29.66592237768112,28.69223618159682,27.655417128989985,26.57210156166365,25.45739797774864,24.324792406810847,23.18612845040751,22.051640652213838,20.930029611399526,19.828564706770553,18.753201570258145,17.708710711721512,16.69880592370267,15.726271963560182,14.793086280358287,13.900531184797643,13.049299064957548,12.239585788342165,11.471175479318136,10.743515837158366,10.05578287010422,9.406938613912901,8.795779872863752,8.220980366576287,7.681126759030377,7.174748609449219,6.700343248741206,6.25639689932905,5.8414012859988045,5.453867452628919,5.092336854865792,4.7553896293791675,4.441651039524317,4.149796314803475,3.8785537089157067,3.626706564042057,3.3930943986756383,3.1766129116238933,2.976213337578062,2.7909014033946145,2.619735517963492,2.461824795486011,2.31632676737953,2.1824448637640543,2.059425670334938,1.946556304832939,1.8431616860734121,1.7486019199698752,1.6622698548970412,1.5835888797096649,1.5120109256673127,1.4470147639185522,1.388104704222531,1.334809524478592,1.286681743611789,1.2432971456238289,1.204254523655263,1.1691755342082333,1.1377046079550697,1.109508893677331,1.084278113264865,1.061724297702024,1.0415813974956134,1.0236047279432932,1.007570256651732,0.9932737315592947,0.9805296903198417,0.9691703821348183,0.9590446020788499,0.9500164968321173,0.9419643580434215,0.934779429920881,0.9283647494774407,0.9226340318816504,0.9175106187238968,0.912926499300504,0.9088213995571193,0.9051419444980305,0.9018408989223807,0.898876476903686,0.8962117212479233,0.8938139455290225,0.891654235124637,0.8897070042753821,0.8879496042019341,0.8863619738949736,0.8849263319045659,0.8836269059550655,0.8824496936864634,0.8813822528517358,0.880413516488145,0.879533630261746,0.8787338098472449,0.8780062162365357,0.87734384631753,0.8767404357331671,0.8761903745668154,0.8756886330928013,0.875230696407873,0.8748125070848937,0.8744304145714128,0.8740811305308938,0.8737616895051534,0.873469414334619,0.8732018857143851,0.8729569150956301,0.8727325204320213,0.8725269051998594,0.8723384394751916,0.8721656432000356,0.8720071712929498,0.8718618003445642,0.8717284167275232,0.871606005981306,0.8714936433461024,0.8713904853170205,0.8712957620709475,0.8712087705856029,0.871128868421407,0.8710554682938554,0.8709880330519313,0.8709260711920204,0.87086913279692,0.8708168058512236,0.8707687129014527,0.8707245080316318,0.8706838741261907,0.8706465203922159,0.870612180112234,0.8705806085969335,0.8705515813045638,0.8705248921118904,0.8705003517949875,0.8704777866041397,0.8704570369779017,0.870437956367685,0.8704204101550064,0.8704042746590273,0.8703894362299321,0.8703757904221269,0.8703632412401944,0.8703517004500536,0.8703410869478043,0.870331326179327,0.870322349604856,0.8703140942044312,0.8703065020287833,0.8702995197940051,0.8702930984895357,0.8702871930560463,0.8702817620748902,0.8702767674680376,0.8702721742182139,0.870267950113991,0.8702640655206775,0.8702604931749862,0.8702572079996486,0.8702541869333805,0.8702514087718956,0.870248854016995,0.8702465047331542,0.8702443444144673,0.8702423578692948,0.8702405311406487,0.8702388513406942,0.870237306480565,0.8702358855974162,0.8702345787554587,0.8702333769337293,0.870232271877964,0.8702312559654714,0.8702303221083001,0.87022946370132,0.8702286746080203,0.8702279491679421,0.8702272822056472,0.8702266690220201,0.8702261053544861,0.8702255873034048,0.870225111237478,0.8702246737114773,0.8702242714549681,0.8702239015377046,0.8702235613690774,0.8702232462209919,0.8702229510577768,0.870222673208325,0.8702224125963651,0.8702221707154043,0.8702219492796684,0.8702217491302027,0.8702215696834268,0.8702214089778343,0.8702212642031998,0.8702211324856107,0.8702210116508582,0.8702209006982207,0.8702207997864426,0.8702207096637462,0.8702206306640385,0.8702205616420529,0.8702204995310264,0.8702204405776524,0.8702203853487828,0.8702203266708526,0.8702202176472196,0.8702200210052448,0.8702197390019453,0.8702194091820066,0.8702190852428354,0.8702188161224058,0.8702186310571705,0.8702185339609746,0.870218507051713,0.8702185212004372,0.8702185489976987,0.870218576024119,0.8702186062764978,0.8702186591372159,0.8702187576832788,0.870218911512043,0.8702191016134959,0.870219280143923,0.8702194042683966,0.8702195166009915,0.8702194620643299,0.8702188278292808,0.8702174211967126,0.8702153980579129,0.8702131516733307,0.870211123959757,0.870209641193759,0.8702088261741748,0.8702085994403369,0.870208753115868,0.8702090623396885,0.8702093910555075,0.8702097511585851,0.8702102866443563,0.8702111774678811,0.8702124913056867,0.870214055312322,0.8702154742834124,0.8702164892199195,0.8702173861275679,0.8702173538921357,0.8702151414543868,0.8702105153734924,0.8702043475796185,0.8701980501424912,0.8701929095724426,0.8701896324383392,0.8701882215810373,0.8701881579324021,0.8701887669163303,0.8701896006021288,0.870190667199557,0.8701923881320036,0.8701952598020715,0.8701993422706793,0.8702038904061811,0.8702076846287642,0.8702106354103517,0.8702128331002981,0.8702126133793585,0.8702090617710042,0.8702028595763982,0.8701957200332502,0.8701894390737599,0.8701851577103745,0.8701830908801589,0.8701827208554678,0.870183282082492,0.870184278529976,0.8701857743128505,0.8701882835030998,0.8701922556560949,0.8701974096633567,0.8702025100934053,0.8702065606175551,0.8702098462344962,0.8702115530022292,0.8702108995410783,0.8702081376858788,0.8702043277839908,0.8702007050011774,0.8701981332463702,0.8701968712849447,0.870196671210508,0.8701970926898898,0.8701978472817262,0.8701989856534981,0.8702008066860232,0.8702035012593475,0.8702067449593959,0.8702097236793984,0.8702121385244479,0.8702138962312972,0.8702145601472037,0.87021405555389,0.8702127617330514,0.8702112623419939,0.8702100564236336,0.8702093866903928,0.8702092294106262,0.8702094112900967,0.8702097731794584,0.8702102882510903,0.8702110634749569,0.8702122077836778,0.8702136382516937,0.8702150170477273,0.870216101506108,0.8702169344668491,0.8702175739668429,0.8702180646489606,0.8702184413083294,0.8702187307616578,0.8702189531331823,0.8702191237009594,0.870219254850815],\"thickness\":2,\"color\":\"#AB63FA\",\"width\":0,\"type\":\"data\",\"opacity\":0.1},\"mode\":\"lines\",\"x\":[0.0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,6.5,7.0,7.5,8.0,8.5,9.0,9.5,10.0,10.5,11.0,11.5,12.0,12.5,13.0,13.5,14.0,14.5,15.0,15.5,16.0,16.5,17.0,17.5,18.0,18.5,19.0,19.5,20.0,20.5,21.0,21.5,22.0,22.5,23.0,23.5,24.0,24.5,25.0,25.5,26.0,26.5,27.0,27.5,28.0,28.5,29.0,29.5,30.0,30.5,31.0,31.5,32.0,32.5,33.0,33.5,34.0,34.5,35.0,35.5,36.0,36.5,37.0,37.5,38.0,38.5,39.0,39.5,40.0,40.5,41.0,41.5,42.0,42.5,43.0,43.5,44.0,44.5,45.0,45.5,46.0,46.5,47.0,47.5,48.0,48.5,49.0,49.5,50.0,50.5,51.0,51.5,52.0,52.5,53.0,53.5,54.0,54.5,55.0,55.5,56.0,56.5,57.0,57.5,58.0,58.5,59.0,59.5,60.0,60.5,61.0,61.5,62.0,62.5,63.0,63.5,64.0,64.5,65.0,65.5,66.0,66.5,67.0,67.5,68.0,68.5,69.0,69.5,70.0,70.5,71.0,71.5,72.0,72.5,73.0,73.5,74.0,74.5,75.0,75.5,76.0,76.5,77.0,77.5,78.0,78.5,79.0,79.5,80.0,80.5,81.0,81.5,82.0,82.5,83.0,83.5,84.0,84.5,85.0,85.5,86.0,86.5,87.0,87.5,88.0,88.5,89.0,89.5,90.0,90.5,91.0,91.5,92.0,92.5,93.0,93.5,94.0,94.5,95.0,95.5,96.0,96.5,97.0,97.5,98.0,98.5,99.0,99.5,100.0,100.5,101.0,101.5,102.0,102.5,103.0,103.5,104.0,104.5,105.0,105.5,106.0,106.5,107.0,107.5,108.0,108.5,109.0,109.5,110.0,110.5,111.0,111.5,112.0,112.5,113.0,113.5,114.0,114.5,115.0,115.5,116.0,116.5,117.0,117.5,118.0,118.5,119.0,119.5,120.0,120.5,121.0,121.5,122.0,122.5,123.0,123.5,124.0,124.5,125.0,125.5,126.0,126.5,127.0,127.5,128.0,128.5,129.0,129.5,130.0,130.5,131.0,131.5,132.0,132.5,133.0,133.5,134.0,134.5,135.0,135.5,136.0,136.5,137.0,137.5,138.0,138.5,139.0,139.5,140.0,140.5,141.0,141.5,142.0,142.5,143.0,143.5,144.0,144.5,145.0,145.5,146.0,146.5,147.0,147.5,148.0,148.5,149.0,149.5,150.0,150.5,151.0,151.5,152.0,152.5,153.0,153.5,154.0,154.5,155.0,155.5,156.0,156.5,157.0,157.5,158.0,158.5,159.0,159.5,160.0,160.5,161.0,161.5,162.0,162.5,163.0,163.5,164.0,164.5,165.0,165.5,166.0,166.5,167.0,167.5,168.0,168.5,169.0,169.5,170.0,170.5,171.0,171.5,172.0,172.5,173.0,173.5,174.0,174.5,175.0,175.5,176.0,176.5,177.0,177.5,178.0,178.5,179.0,179.5,180.0,180.5,181.0,181.5,182.0,182.5,183.0,183.5,184.0,184.5,185.0,185.5,186.0,186.5,187.0,187.5,188.0,188.5,189.0,189.5,190.0,190.5,191.0,191.5,192.0,192.5,193.0,193.5,194.0,194.5,195.0,195.5,196.0,196.5,197.0,197.5,198.0,198.5,199.0,199.5,200.0],\"opacity\":0.8,\"y\":[0.0,0.00011229078136316527,0.000410825939611789,0.0008596121920305691,0.0014428509975387034,0.00215796832828863,0.003011544636190969,0.004017029347160606,0.005193567260514574,0.006565533629096372,0.008162538834596013,0.01001976402587825,0.012178550987943005,0.014687208254443094,0.017602020276247927,0.020988463091850863,0.024922641670769803,0.02949297350417751,0.03480215066247975,0.0409694202947161,0.048133230434665775,0.056454296978972425,0.06611915530664118,0.07734427014436868,0.09038078679330797,0.10552002127043908,0.12309979634885237,0.1435117459659305,0.1672097213462246,0.19471946173491853,0.2266496864549173,0.2637048057928279,0.3066994102216047,0.3565748237644462,0.4144178435246863,0.48148199537048325,0.5592112927635561,0.6492670151579352,0.7535572494119601,0.8742696481427364,1.0139067302689069,1.1753241916671309,1.361771153505026,1.5769320324939378,1.8249682138525747,2.1105578140829415,2.438932291939908,2.8159049649030052,3.247889247541986,3.741898008667536,4.30552468775037,4.946892037349537,5.674568057821429,6.497434233528845,7.424509866160643,8.46471893687242,9.626605007652316,10.917993686150824,12.3456149365624,13.914701410950824,15.628582940236463,17.488307622137743,19.492343113347044,21.63633074671821,23.913000619905812,26.312193895891294,28.821065780443988,31.42439772234616,34.1050492399262,36.844482160939776,39.62335177343557,42.42209497133356,45.2214931546152,48.00317180547019,50.75002267740712,53.44652794914231,56.07898373444943,58.63563019184973,61.10669610759567,63.48436963374752,65.76271340620048,67.9375348731994,70.00622932820913,71.96760512896928,73.82170080083269,75.56960649354586,77.21328903921511,78.75543108830102,80.19928205366432,81.5485247524592,82.80715903411864,83.97939934833914,85.06958861449694,86.08212484101003,87.02140050731846,87.89175403276127,88.69743008568508,89.44254957175035,90.13108643893847,90.76685076441187,91.35347779794074,91.89442073856051,92.39294765266918,92.85214109498231,93.27489997777653,93.66394345329452,94.0218162421508,94.35089475551968,94.65339426499182,94.93137636764504,95.18675671992328,95.42131306623756,95.63669318286045,95.8344226720683,96.0159127013085,96.18246741110366,96.33529102678659,96.47549474057162,96.60410324124418,96.72206083661476,96.83023733788227,96.92943352468542,97.02038628413052,97.1037734287487,97.18021822968377,97.25029358622362,97.31452594669686,97.3733989431207,97.42735675898683,97.47680724154709,97.52212480136635,97.56365309678363,97.60170748852025,97.63657733396587,97.6685280905507,97.69780325758488,97.72462616007527,97.74920159932708,97.77171737579668,97.79234567820914,97.81124436860786,97.82855816673084,97.8444197324691,97.85895066243758,97.87226240441711,97.88445710151075,97.89562836505196,97.9058619797452,97.91523655761219,97.92382413454035,97.93169071797968,97.93889678894784,97.94549776256288,97.95154441211967,97.95708325729159,97.96215691805978,97.96680444119995,97.9710616001778,97.97496116811249,97.97853316924807,97.9818051086296,97.98480218328591,97.98754747611702,97.99006213302394,97.99236552458592,97.99447539533631,97.99640800044385,97.99817823019609,97.99979972468262,98.0012849784767,98.00264543676431,98.00389158360524,98.00503302270597,98.00607855113657,98.00703622683156,98.00791343104561,98.0087169250266,98.00945290202927,98.01012703505157,98.01074452044935,98.01131011796615,98.01182818747036,98.01230272259843,98.01273738148957,98.01313551486548,98.01350019185502,98.01383422383238,98.01414018591477,98.01442043685314,98.01467713720767,98.01491226597305,98.01512763583116,98.01532490714504,98.01550560078033,98.01567110983022,98.01582271032589,98.01596157103806,98.0160887625137,98.01620526539423,98.01631197789261,98.01640972274534,98.0164992535548,98.0165812605896,98.01665637610337,98.01672517921423,98.01678820037795,98.01684592548318,98.01689879959544,98.01694723037814,98.01699159122401,98.01703222413926,98.01706944241242,98.01710353300189,98.01713475874718,98.01716336040178,98.0171895584861,98.01721355498586,98.01723553491001,98.01725566771896,98.01727410863373,98.01729099983419,98.01730647155509,98.01732064308776,98.01733362369635,98.01734551345818,98.01735640403957,98.01736637941259,98.01737551649161,98.01738388572868,98.01739155165366,98.01739857336948,98.01740500500925,98.01741089615619,98.01741629222785,98.01742123482717,98.01742576206286,98.01742990884206,98.01743370713817,98.0174371862365,98.01744037296031,98.01744329187851,98.01744596549689,98.01744841443227,98.01745065756695,98.01745271220476,98.01745459422166,98.01745631814798,98.01745789726475,98.01745934371424,98.01746066860979,98.01746188213652,98.01746299363816,98.01746401168975,98.01746494415752,98.0174657982499,98.0174665805637,98.01746729712974,98.01746795346065,98.01746855460183,98.01746910518338,98.01746960946673,98.01747007137483,98.01747049448683,98.01747088205055,98.01747123739035,98.01747156366677,98.01747186349222,98.01747213890818,98.01747239154895,98.01747262285423,98.01747283424469,98.01747302721728,98.0174732033519,98.01747336424566,98.01747351140787,98.01747364615639,98.01747376955493,98.01747388242043,98.01747398541133,98.01747407917914,98.01747416452986,98.01747424249572,98.01747431416375,98.01747437996873,98.0174744411085,98.01747450370118,98.01747457277439,98.01747464853186,98.01747472681517,98.01747480141046,98.01747486659623,98.01747491898091,98.01747495821449,98.01747498657595,98.0174750077372,98.01747502518676,98.01747504085921,98.01747505446336,98.01747506382893,98.01747506630294,98.01747506081828,98.01747504973189,98.01747503888619,98.01747503358493,98.01747502905374,98.01747504062124,98.01747511139696,98.01747526216185,98.01747547750975,98.01747571707804,98.01747593501742,98.01747609708721,98.0174761899235,98.01747622111469,98.01747621173142,98.0174761848964,98.01747615484304,98.01747612070186,98.01747606796837,98.01747597824705,98.01747584443223,98.01747568397914,98.01747553733551,98.01747543172861,98.01747533900142,98.01747533048764,98.01747552006294,98.01747593071755,98.01747648523946,98.01747705648539,98.01747752734325,98.0174778321106,98.01747796831881,98.0174779810242,98.01747793026465,98.01747785674328,98.0174777608494,98.01747760586156,98.01747734759809,98.01747697988648,98.01747656801463,98.0174762208055,98.01747595016963,98.01747574497377,98.01747573720131,98.01747600126089,98.01747648431903,98.01747704992387,98.01747755332774,98.01747790074748,98.01747807192481,98.01747810573994,98.01747806229295,98.01747798179498,98.01747786080935,98.01747765984798,98.01747734306294,98.01747693077544,98.01747651885617,98.01747618882617,98.01747592115314,98.01747577226477,98.01747579814139,98.0174759812803,98.01747624568227,98.01747650177671,98.0174766857189,98.01747677677268,98.01747679101638,98.01747675938269,98.01747670306156,98.01747661956112,98.01747648823279,98.01747629482689,98.01747606064902,98.01747584308875,98.01747566647624,98.01747553629019,98.01747548044054,98.01747550380945,98.01747558168252,98.01747567565957,98.01747575243704,98.01747579520875,98.01747580466328,98.01747579166349,98.01747576667954,98.01747573190731,98.01747568074323,98.01747560590111,98.01747551194889,98.01747542039942,98.01747534807599,98.01747529242463,98.01747524961961,98.01747521671332,98.0174751914067,98.01747517192497,98.0174751569315,98.01747514540882,98.01747513653407]}],\"layout\":{\"showlegend\":true,\"xaxis\":{\"autorange\":true,\"title\":\"Time (Days)\",\"type\":\"linear\"},\"annotations\":[],\"title\":\"Covid-19 SEIR Model with Error Bars\",\"yaxis\":{\"autorange\":false,\"range\":[0,100],\"title\":\"%\",\"type\":\"linear\"},\"shapes\":[],\"legend\":{}}}}\n",
" $(\"#js-interact__4a4e53eb-56fd-4403-a0eb-c48916e51673\").trigger(\"interact\");\n"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"using SimplePlots\n",
"\n",
"display(html\"\"\"\n",
" <h3> Sliding the β value reduces/increases infectivity </h3>\n",
" <p style=\"margin-top: 0.4em\">(social distancing, immunity, vaccines reduce β)</p>\n",
"\"\"\")\n",
"\n",
"beta_slider = slider(0.25:0.25:2, value=1, label=\"β\") \n",
"\n",
"@demo for β in beta_slider\n",
" title!(\"Covid-19 SEIR Model with Error Bars\") ;\n",
" xlabel!(\"Time (Days)\") ; ylabel!(\"%\") \n",
" \n",
" soln = solve(ODEProblem(\n",
" seir!, u₀, tspan, [α, β ± param_error, γ]\n",
" ), saveat=0.5)\n",
" \n",
" x, y = soln.t, 100*Array(soln)\n",
" ylims!(0, 100) # using percentages\n",
" \n",
" for (index, label) in enumerate(labels)\n",
" plot!(\n",
" x, y[index,:], label=label, \n",
" alpha=0.8, fillalpha=0.1\n",
" )\n",
" end\n",
"end\n"
]
}
],
"metadata": {
"@webio": {
"lastCommId": null,
"lastKernelId": null
},
"kernelspec": {
"display_name": "Julia 1.4.0",
"language": "julia",
"name": "julia-1.4"
},
"language_info": {
"file_extension": ".jl",
"mimetype": "application/julia",
"name": "julia",
"version": "1.4.0"
}
},
"nbformat": 4,
"nbformat_minor": 4
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment