@cdc/chart 4.25.8 → 4.25.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/settings.local.json +9 -0
- package/dist/cdcchart.js +37524 -35243
- package/examples/feature/__data__/planet-example-data.json +0 -30
- package/examples/grouped-bar-test.json +400 -0
- package/examples/private/d.json +382 -0
- package/examples/private/example-2.json +49784 -0
- package/examples/private/f2.json +1 -0
- package/examples/private/f4.json +1577 -0
- package/examples/private/forecast.json +1180 -0
- package/examples/private/lollipop.json +468 -0
- package/examples/private/new.json +48756 -0
- package/examples/private/pie-chart-legend.json +904 -0
- package/examples/suppressed_tooltip.json +480 -0
- package/index.html +10 -22
- package/package.json +25 -7
- package/src/CdcChart.tsx +1 -2
- package/src/CdcChartComponent.tsx +174 -32
- package/src/_stories/Chart.Anchors.stories.tsx +2 -2
- package/src/_stories/Chart.BoxPlot.stories.tsx +1 -1
- package/src/_stories/Chart.CI.stories.tsx +1 -1
- package/src/_stories/Chart.CustomColors.stories.tsx +1 -1
- package/src/_stories/Chart.DynamicSeries.stories.tsx +2 -2
- package/src/_stories/Chart.Filters.stories.tsx +2 -2
- package/src/_stories/Chart.Legend.Gradient.stories.tsx +2 -2
- package/src/_stories/Chart.Patterns.stories.tsx +19 -0
- package/src/_stories/Chart.ScatterPlot.stories.tsx +1 -1
- package/src/_stories/Chart.stories.tsx +8 -5
- package/src/_stories/Chart.tooltip.stories.tsx +1 -1
- package/src/_stories/ChartAnnotation.stories.tsx +1 -1
- package/src/_stories/ChartAxisLabels.stories.tsx +2 -2
- package/src/_stories/ChartAxisTitles.stories.tsx +2 -2
- package/src/_stories/ChartEditor.stories.tsx +60 -60
- package/src/_stories/ChartLine.Suppression.stories.tsx +1 -1
- package/src/_stories/ChartLine.Symbols.stories.tsx +1 -1
- package/src/_stories/ChartPrefixSuffix.stories.tsx +2 -2
- package/src/_stories/_mock/stacked-pattern-test.json +520 -0
- package/src/components/Annotations/components/AnnotationDraggable.tsx +1 -0
- package/src/components/Annotations/components/AnnotationDropdown.tsx +1 -1
- package/src/components/BarChart/components/BarChart.Horizontal.tsx +159 -20
- package/src/components/BarChart/components/BarChart.StackedHorizontal.tsx +138 -5
- package/src/components/BarChart/components/BarChart.StackedVertical.tsx +215 -73
- package/src/components/BarChart/components/BarChart.Vertical.tsx +153 -21
- package/src/components/BarChart/helpers/index.ts +43 -4
- package/src/components/BarChart/helpers/lollipopColors.ts +27 -0
- package/src/components/BarChart/helpers/useBarChart.ts +25 -3
- package/src/components/BoxPlot/BoxPlot.Vertical.tsx +2 -1
- package/src/components/DeviationBar.jsx +9 -6
- package/src/components/EditorPanel/EditorPanel.tsx +364 -39
- package/src/components/EditorPanel/EditorPanelContext.ts +3 -0
- package/src/components/EditorPanel/components/Panels/Panel.PatternSettings.tsx +414 -0
- package/src/components/EditorPanel/components/Panels/Panel.Series.tsx +28 -20
- package/src/components/EditorPanel/components/Panels/Panel.Visual.tsx +115 -120
- package/src/components/EditorPanel/components/Panels/index.tsx +3 -1
- package/src/components/EditorPanel/components/Panels/panelVisual.styles.css +0 -8
- package/src/components/EditorPanel/helpers/updateFieldRankByValue.ts +49 -48
- package/src/components/Forecasting/Forecasting.tsx +36 -6
- package/src/components/ForestPlot/ForestPlot.tsx +11 -7
- package/src/components/ForestPlot/ForestPlotProps.ts +1 -1
- package/src/components/Legend/Legend.Component.tsx +106 -13
- package/src/components/Legend/helpers/createFormatLabels.tsx +230 -171
- package/src/components/LegendWrapper.tsx +1 -1
- package/src/components/LineChart/components/LineChart.Circle.tsx +2 -2
- package/src/components/LineChart/index.tsx +2 -2
- package/src/components/LinearChart.tsx +22 -5
- package/src/components/PairedBarChart.jsx +6 -4
- package/src/components/PieChart/PieChart.tsx +170 -54
- package/src/components/Sankey/components/Sankey.tsx +7 -1
- package/src/components/ScatterPlot/ScatterPlot.jsx +32 -4
- package/src/data/initial-state.js +315 -293
- package/src/helpers/buildForecastPaletteMappings.ts +112 -0
- package/src/helpers/buildForecastPaletteOptions.ts +109 -0
- package/src/helpers/getColorScale.ts +72 -8
- package/src/helpers/getNewRuntime.ts +1 -1
- package/src/helpers/getTransformedData.ts +1 -1
- package/src/hooks/useChartHoverAnalytics.tsx +44 -0
- package/src/hooks/useReduceData.ts +105 -70
- package/src/hooks/useTooltip.tsx +57 -15
- package/src/index.jsx +0 -2
- package/src/scss/main.scss +12 -0
- package/src/store/chart.reducer.ts +1 -1
- package/src/test/CdcChart.test.jsx +8 -3
- package/src/types/ChartConfig.ts +30 -6
- package/src/types/ChartContext.ts +1 -0
- package/vite.config.js +1 -1
- package/vitest.config.ts +16 -0
- package/src/coreStyles_chart.scss +0 -3
- package/src/helpers/configHelpers.ts +0 -28
- package/src/helpers/generateColorsArray.ts +0 -8
- package/src/hooks/useColorPalette.js +0 -76
|
@@ -0,0 +1,1577 @@
|
|
|
1
|
+
{
|
|
2
|
+
"annotations": [],
|
|
3
|
+
"type": "chart",
|
|
4
|
+
"debugSvg": false,
|
|
5
|
+
"chartMessage": {
|
|
6
|
+
"noData": "No Data Available"
|
|
7
|
+
},
|
|
8
|
+
"title": "<em>4.25.09</em> Forecast Chart",
|
|
9
|
+
"showTitle": true,
|
|
10
|
+
"showDownloadMediaButton": false,
|
|
11
|
+
"theme": "theme-blue",
|
|
12
|
+
"animate": false,
|
|
13
|
+
"lineDatapointStyle": "hover",
|
|
14
|
+
"lineDatapointColor": "Same as Line",
|
|
15
|
+
"barHasBorder": "true",
|
|
16
|
+
"isLollipopChart": false,
|
|
17
|
+
"lollipopShape": "circle",
|
|
18
|
+
"lollipopColorStyle": "two-tone",
|
|
19
|
+
"visualizationSubType": "regular",
|
|
20
|
+
"barStyle": "",
|
|
21
|
+
"roundingStyle": "standard",
|
|
22
|
+
"tipRounding": "top",
|
|
23
|
+
"isResponsiveTicks": false,
|
|
24
|
+
"general": {
|
|
25
|
+
"annotationDropdownText": "Annotations",
|
|
26
|
+
"showMissingDataLabel": true,
|
|
27
|
+
"showSuppressedSymbol": true,
|
|
28
|
+
"showZeroValueData": true,
|
|
29
|
+
"hideNullValue": true,
|
|
30
|
+
"palette": {
|
|
31
|
+
"isReversed": true,
|
|
32
|
+
"version": "1.0",
|
|
33
|
+
"name": "sequential_bluereverse"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"padding": {
|
|
37
|
+
"left": 5,
|
|
38
|
+
"right": 5
|
|
39
|
+
},
|
|
40
|
+
"preliminaryData": [],
|
|
41
|
+
"yAxis": {
|
|
42
|
+
"hideAxis": false,
|
|
43
|
+
"displayNumbersOnBar": false,
|
|
44
|
+
"hideLabel": false,
|
|
45
|
+
"hideTicks": false,
|
|
46
|
+
"size": 50,
|
|
47
|
+
"gridLines": false,
|
|
48
|
+
"enablePadding": true,
|
|
49
|
+
"min": "",
|
|
50
|
+
"max": "",
|
|
51
|
+
"labelColor": "#1c1d1f",
|
|
52
|
+
"tickLabelColor": "#1c1d1f",
|
|
53
|
+
"tickColor": "#1c1d1f",
|
|
54
|
+
"rightHideAxis": false,
|
|
55
|
+
"rightAxisSize": 0,
|
|
56
|
+
"rightLabel": "",
|
|
57
|
+
"rightLabelOffsetSize": 0,
|
|
58
|
+
"rightAxisLabelColor": "#1c1d1f",
|
|
59
|
+
"rightAxisTickLabelColor": "#1c1d1f",
|
|
60
|
+
"rightAxisTickColor": "#1c1d1f",
|
|
61
|
+
"numTicks": "6",
|
|
62
|
+
"axisPadding": 0,
|
|
63
|
+
"scalePadding": 10,
|
|
64
|
+
"tickRotation": 0,
|
|
65
|
+
"anchors": [],
|
|
66
|
+
"shoMissingDataLabel": true,
|
|
67
|
+
"showMissingDataLine": true,
|
|
68
|
+
"categories": [],
|
|
69
|
+
"label": "Cases"
|
|
70
|
+
},
|
|
71
|
+
"boxplot": {
|
|
72
|
+
"plots": [],
|
|
73
|
+
"borders": "true",
|
|
74
|
+
"plotOutlierValues": false,
|
|
75
|
+
"plotNonOutlierValues": true,
|
|
76
|
+
"labels": {
|
|
77
|
+
"q1": "Lower Quartile",
|
|
78
|
+
"q2": "q2",
|
|
79
|
+
"q3": "Upper Quartile",
|
|
80
|
+
"q4": "q4",
|
|
81
|
+
"minimum": "Minimum",
|
|
82
|
+
"maximum": "Maximum",
|
|
83
|
+
"mean": "Mean",
|
|
84
|
+
"median": "Median",
|
|
85
|
+
"sd": "Standard Deviation",
|
|
86
|
+
"iqr": "Interquartile Range",
|
|
87
|
+
"count": "Count",
|
|
88
|
+
"outliers": "Outliers",
|
|
89
|
+
"values": "Values",
|
|
90
|
+
"lowerBounds": "Lower Bounds",
|
|
91
|
+
"upperBounds": "Upper Bounds"
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
"topAxis": {
|
|
95
|
+
"hasLine": false
|
|
96
|
+
},
|
|
97
|
+
"isLegendValue": false,
|
|
98
|
+
"barThickness": 0.35,
|
|
99
|
+
"barHeight": 25,
|
|
100
|
+
"barSpace": 15,
|
|
101
|
+
"heights": {
|
|
102
|
+
"vertical": 300,
|
|
103
|
+
"horizontal": 750
|
|
104
|
+
},
|
|
105
|
+
"xAxis": {
|
|
106
|
+
"sortDates": false,
|
|
107
|
+
"anchors": [],
|
|
108
|
+
"type": "date",
|
|
109
|
+
"showTargetLabel": true,
|
|
110
|
+
"targetLabel": "Target",
|
|
111
|
+
"hideAxis": false,
|
|
112
|
+
"hideLabel": false,
|
|
113
|
+
"hideTicks": false,
|
|
114
|
+
"size": 75,
|
|
115
|
+
"tickRotation": 0,
|
|
116
|
+
"min": "",
|
|
117
|
+
"max": "",
|
|
118
|
+
"labelColor": "#1c1d1f",
|
|
119
|
+
"tickLabelColor": "#1c1d1f",
|
|
120
|
+
"tickColor": "#1c1d1f",
|
|
121
|
+
"numTicks": "",
|
|
122
|
+
"labelOffset": 0,
|
|
123
|
+
"axisPadding": 200,
|
|
124
|
+
"target": 0,
|
|
125
|
+
"maxTickRotation": 0,
|
|
126
|
+
"padding": 5,
|
|
127
|
+
"showYearsOnce": false,
|
|
128
|
+
"sortByRecentDate": false,
|
|
129
|
+
"brushActive": false,
|
|
130
|
+
"axisBBox": 29.860000610351562,
|
|
131
|
+
"tickWidthMax": 86,
|
|
132
|
+
"dataKey": "Date",
|
|
133
|
+
"dateParseFormat": "%m/%d/%Y",
|
|
134
|
+
"dateDisplayFormat": "%m/%d/%Y"
|
|
135
|
+
},
|
|
136
|
+
"table": {
|
|
137
|
+
"label": "Data Table",
|
|
138
|
+
"expanded": false,
|
|
139
|
+
"limitHeight": false,
|
|
140
|
+
"height": "",
|
|
141
|
+
"caption": "",
|
|
142
|
+
"showDownloadUrl": false,
|
|
143
|
+
"showDataTableLink": true,
|
|
144
|
+
"showDownloadLinkBelow": true,
|
|
145
|
+
"indexLabel": "",
|
|
146
|
+
"download": true,
|
|
147
|
+
"showVertical": true,
|
|
148
|
+
"dateDisplayFormat": "",
|
|
149
|
+
"showMissingDataLabel": true,
|
|
150
|
+
"showSuppressedSymbol": true,
|
|
151
|
+
"collapsible": true,
|
|
152
|
+
"show": true
|
|
153
|
+
},
|
|
154
|
+
"orientation": "vertical",
|
|
155
|
+
"columns": {
|
|
156
|
+
"Lower 90%": {
|
|
157
|
+
"label": "Lower 90%",
|
|
158
|
+
"dataTable": true,
|
|
159
|
+
"tooltips": true,
|
|
160
|
+
"prefix": "",
|
|
161
|
+
"suffix": "",
|
|
162
|
+
"forestPlot": false,
|
|
163
|
+
"startingPoint": "0",
|
|
164
|
+
"forestPlotAlignRight": false,
|
|
165
|
+
"roundToPlace": 0,
|
|
166
|
+
"commas": false,
|
|
167
|
+
"showInViz": false,
|
|
168
|
+
"forestPlotStartingPoint": 0,
|
|
169
|
+
"name": "Lower 90%"
|
|
170
|
+
},
|
|
171
|
+
"Upper 90%": {
|
|
172
|
+
"label": "Upper 90%",
|
|
173
|
+
"dataTable": true,
|
|
174
|
+
"tooltips": true,
|
|
175
|
+
"prefix": "",
|
|
176
|
+
"suffix": "",
|
|
177
|
+
"forestPlot": false,
|
|
178
|
+
"startingPoint": "0",
|
|
179
|
+
"forestPlotAlignRight": false,
|
|
180
|
+
"roundToPlace": 0,
|
|
181
|
+
"commas": false,
|
|
182
|
+
"showInViz": false,
|
|
183
|
+
"forestPlotStartingPoint": 0,
|
|
184
|
+
"name": "Upper 90%"
|
|
185
|
+
}
|
|
186
|
+
},
|
|
187
|
+
"legend": {
|
|
188
|
+
"hide": false,
|
|
189
|
+
"behavior": "isolate",
|
|
190
|
+
"axisAlign": true,
|
|
191
|
+
"singleRow": true,
|
|
192
|
+
"colorCode": "",
|
|
193
|
+
"reverseLabelOrder": false,
|
|
194
|
+
"description": "Lorem ipsum dolor sit amet, <em>consectetur adipiscing elit</em>, sed do eiusmod tempor incididunt ut labore et <strong>dolore magna aliqua</strong>. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. <sup> 40</sup>",
|
|
195
|
+
"dynamicLegend": false,
|
|
196
|
+
"dynamicLegendDefaultText": "Show All",
|
|
197
|
+
"dynamicLegendItemLimit": 5,
|
|
198
|
+
"dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
|
|
199
|
+
"dynamicLegendChartMessage": "Select Options from the Legend",
|
|
200
|
+
"label": "Lorem <em>ipsum dolor</em> sit amet",
|
|
201
|
+
"lineMode": false,
|
|
202
|
+
"verticalSorted": false,
|
|
203
|
+
"highlightOnHover": false,
|
|
204
|
+
"hideSuppressedLabels": false,
|
|
205
|
+
"hideSuppressionLink": false,
|
|
206
|
+
"seriesHighlight": [],
|
|
207
|
+
"style": "circles",
|
|
208
|
+
"subStyle": "linear blocks",
|
|
209
|
+
"groupBy": "",
|
|
210
|
+
"shape": "circle",
|
|
211
|
+
"tickRotation": "",
|
|
212
|
+
"order": "dataColumn",
|
|
213
|
+
"hideBorder": {
|
|
214
|
+
"side": false,
|
|
215
|
+
"topBottom": true
|
|
216
|
+
},
|
|
217
|
+
"position": "right",
|
|
218
|
+
"orderedValues": [],
|
|
219
|
+
"patterns": {},
|
|
220
|
+
"patternField": "",
|
|
221
|
+
"unified": true
|
|
222
|
+
},
|
|
223
|
+
"exclusions": {
|
|
224
|
+
"active": false,
|
|
225
|
+
"keys": []
|
|
226
|
+
},
|
|
227
|
+
"twoColor": {
|
|
228
|
+
"palette": "monochrome-1",
|
|
229
|
+
"isPaletteReversed": false
|
|
230
|
+
},
|
|
231
|
+
"labels": false,
|
|
232
|
+
"dataFormat": {
|
|
233
|
+
"commas": false,
|
|
234
|
+
"prefix": "",
|
|
235
|
+
"suffix": "",
|
|
236
|
+
"abbreviated": false,
|
|
237
|
+
"bottomSuffix": "",
|
|
238
|
+
"bottomPrefix": "",
|
|
239
|
+
"bottomAbbreviated": false
|
|
240
|
+
},
|
|
241
|
+
"filters": [],
|
|
242
|
+
"confidenceKeys": {},
|
|
243
|
+
"visual": {
|
|
244
|
+
"border": true,
|
|
245
|
+
"accent": true,
|
|
246
|
+
"background": true,
|
|
247
|
+
"verticalHoverLine": false,
|
|
248
|
+
"horizontalHoverLine": false,
|
|
249
|
+
"lineDatapointSymbol": "none",
|
|
250
|
+
"maximumShapeAmount": 7
|
|
251
|
+
},
|
|
252
|
+
"useLogScale": false,
|
|
253
|
+
"filterBehavior": "Filter Change",
|
|
254
|
+
"highlightedBarValues": [],
|
|
255
|
+
"series": [
|
|
256
|
+
{
|
|
257
|
+
"dataKey": "Timeline Stage",
|
|
258
|
+
"type": "Forecasting",
|
|
259
|
+
"stages": [
|
|
260
|
+
{
|
|
261
|
+
"key": "Estimate",
|
|
262
|
+
"color": "Sequential Blue"
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"key": "Estimate Based on Partial Data",
|
|
266
|
+
"color": "Sequential Orange"
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"key": "Forecast",
|
|
270
|
+
"color": "Sequential Green"
|
|
271
|
+
}
|
|
272
|
+
],
|
|
273
|
+
"stageColumn": "Timeline Stage",
|
|
274
|
+
"axis": "Left",
|
|
275
|
+
"tooltip": true,
|
|
276
|
+
"confidenceIntervals": [
|
|
277
|
+
{
|
|
278
|
+
"high": "Upper 90%",
|
|
279
|
+
"low": "Lower 90%"
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"high": "Upper 50%",
|
|
283
|
+
"low": "Lower 50%"
|
|
284
|
+
}
|
|
285
|
+
]
|
|
286
|
+
}
|
|
287
|
+
],
|
|
288
|
+
"tooltips": {
|
|
289
|
+
"opacity": 90,
|
|
290
|
+
"singleSeries": false,
|
|
291
|
+
"dateDisplayFormat": ""
|
|
292
|
+
},
|
|
293
|
+
"forestPlot": {
|
|
294
|
+
"startAt": 0,
|
|
295
|
+
"colors": {
|
|
296
|
+
"line": "",
|
|
297
|
+
"shape": ""
|
|
298
|
+
},
|
|
299
|
+
"lineOfNoEffect": {
|
|
300
|
+
"show": true
|
|
301
|
+
},
|
|
302
|
+
"type": "",
|
|
303
|
+
"pooledResult": {
|
|
304
|
+
"diamondHeight": 5,
|
|
305
|
+
"column": ""
|
|
306
|
+
},
|
|
307
|
+
"estimateField": "",
|
|
308
|
+
"estimateRadius": "",
|
|
309
|
+
"shape": "square",
|
|
310
|
+
"rowHeight": 20,
|
|
311
|
+
"description": {
|
|
312
|
+
"show": true,
|
|
313
|
+
"text": "description",
|
|
314
|
+
"location": 0
|
|
315
|
+
},
|
|
316
|
+
"result": {
|
|
317
|
+
"show": true,
|
|
318
|
+
"text": "result",
|
|
319
|
+
"location": 100
|
|
320
|
+
},
|
|
321
|
+
"radius": {
|
|
322
|
+
"min": 2,
|
|
323
|
+
"max": 10,
|
|
324
|
+
"scalingColumn": ""
|
|
325
|
+
},
|
|
326
|
+
"regression": {
|
|
327
|
+
"lower": 0,
|
|
328
|
+
"upper": 0,
|
|
329
|
+
"estimateField": 0
|
|
330
|
+
},
|
|
331
|
+
"leftWidthOffset": 0,
|
|
332
|
+
"rightWidthOffset": 0,
|
|
333
|
+
"showZeroLine": false,
|
|
334
|
+
"leftLabel": "",
|
|
335
|
+
"rightLabel": ""
|
|
336
|
+
},
|
|
337
|
+
"area": {
|
|
338
|
+
"isStacked": false
|
|
339
|
+
},
|
|
340
|
+
"sankey": {
|
|
341
|
+
"title": {
|
|
342
|
+
"defaultColor": "black"
|
|
343
|
+
},
|
|
344
|
+
"iterations": 1,
|
|
345
|
+
"rxValue": 0.9,
|
|
346
|
+
"overallSize": {
|
|
347
|
+
"width": 900,
|
|
348
|
+
"height": 700
|
|
349
|
+
},
|
|
350
|
+
"margin": {
|
|
351
|
+
"margin_y": 25,
|
|
352
|
+
"margin_x": 0
|
|
353
|
+
},
|
|
354
|
+
"nodeSize": {
|
|
355
|
+
"nodeWidth": 26,
|
|
356
|
+
"nodeHeight": 40
|
|
357
|
+
},
|
|
358
|
+
"nodePadding": 55,
|
|
359
|
+
"nodeFontColor": "black",
|
|
360
|
+
"nodeColor": {
|
|
361
|
+
"default": "#ff8500",
|
|
362
|
+
"inactive": "#808080"
|
|
363
|
+
},
|
|
364
|
+
"linkColor": {
|
|
365
|
+
"default": "#ffc900",
|
|
366
|
+
"inactive": "#D3D3D3"
|
|
367
|
+
},
|
|
368
|
+
"opacity": {
|
|
369
|
+
"nodeOpacityDefault": 1,
|
|
370
|
+
"nodeOpacityInactive": 0.1,
|
|
371
|
+
"LinkOpacityDefault": 1,
|
|
372
|
+
"LinkOpacityInactive": 0.1
|
|
373
|
+
},
|
|
374
|
+
"storyNodeFontColor": "#006778",
|
|
375
|
+
"storyNodeText": [],
|
|
376
|
+
"nodeValueStyle": {
|
|
377
|
+
"textBefore": "(",
|
|
378
|
+
"textAfter": ")"
|
|
379
|
+
},
|
|
380
|
+
"data": []
|
|
381
|
+
},
|
|
382
|
+
"errors": [],
|
|
383
|
+
"currentViewport": "lg",
|
|
384
|
+
"id": 11,
|
|
385
|
+
"category": "Charts",
|
|
386
|
+
"label": "Forecast Chart",
|
|
387
|
+
"subType": "Forecasting",
|
|
388
|
+
"icon": {
|
|
389
|
+
"key": null,
|
|
390
|
+
"ref": null,
|
|
391
|
+
"props": {},
|
|
392
|
+
"_owner": null
|
|
393
|
+
},
|
|
394
|
+
"content": "Display a forecasting chart",
|
|
395
|
+
"visualizationType": "Forecasting",
|
|
396
|
+
"activeVizButtonID": 11,
|
|
397
|
+
"dataFileName": "https://wwwdev.cdc.gov/wcms/4.0/cdc-wp/data-presentation/data/indexed-data-files/65-forecast-data-with-2-CIs.csv",
|
|
398
|
+
"dataFileSourceType": "url",
|
|
399
|
+
"dataDescription": {
|
|
400
|
+
"horizontal": false,
|
|
401
|
+
"series": true,
|
|
402
|
+
"singleRow": true
|
|
403
|
+
},
|
|
404
|
+
"version": "4.25.9",
|
|
405
|
+
"migrations": {
|
|
406
|
+
"addColorMigration": true
|
|
407
|
+
},
|
|
408
|
+
"superTitle": "<Sup>super</sup> title",
|
|
409
|
+
"introText": "Message: Lorem ipsum dolor sit amet, <em>consectetur adipiscing elit</em>, sed do eiusmod tempor incididunt ut labore et <strong>dolore magna aliqua</strong>. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. <sup> 40</sup>",
|
|
410
|
+
"description": "Sub: Lorem ipsum dolor sit amet, <em>consectetur adipiscing elit</em>, sed do eiusmod tempor incididunt ut labore et <strong>dolore magna aliqua</strong>. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. <sup> 40</sup>",
|
|
411
|
+
"legacyFootnotes": "Foot: Lorem ipsum dolor sit amet, <em>consectetur adipiscing elit</em>, sed do eiusmod tempor incididunt ut labore et <strong>dolore magna aliqua</strong>. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. <sup> 40</sup>",
|
|
412
|
+
"dynamicMarginTop": 0,
|
|
413
|
+
"data": [
|
|
414
|
+
{
|
|
415
|
+
"Date": "6/20/2022",
|
|
416
|
+
"Timeline Stage": "Estimate",
|
|
417
|
+
"Lower 90%": "10",
|
|
418
|
+
"Lower 50%": "15",
|
|
419
|
+
"Upper 50%": "27",
|
|
420
|
+
"Upper 90%": "36",
|
|
421
|
+
"Confirmed Cases": "16"
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
"Date": "6/21/2022",
|
|
425
|
+
"Timeline Stage": "Estimate",
|
|
426
|
+
"Lower 90%": "13",
|
|
427
|
+
"Lower 50%": "20",
|
|
428
|
+
"Upper 50%": "33",
|
|
429
|
+
"Upper 90%": "45",
|
|
430
|
+
"Confirmed Cases": "14"
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
"Date": "6/22/2022",
|
|
434
|
+
"Timeline Stage": "Estimate",
|
|
435
|
+
"Lower 90%": "13",
|
|
436
|
+
"Lower 50%": "20",
|
|
437
|
+
"Upper 50%": "32",
|
|
438
|
+
"Upper 90%": "44",
|
|
439
|
+
"Confirmed Cases": "27"
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
"Date": "6/23/2022",
|
|
443
|
+
"Timeline Stage": "Estimate",
|
|
444
|
+
"Lower 90%": "15",
|
|
445
|
+
"Lower 50%": "24",
|
|
446
|
+
"Upper 50%": "39",
|
|
447
|
+
"Upper 90%": "53",
|
|
448
|
+
"Confirmed Cases": "25"
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"Date": "6/24/2022",
|
|
452
|
+
"Timeline Stage": "Estimate",
|
|
453
|
+
"Lower 90%": "16",
|
|
454
|
+
"Lower 50%": "24",
|
|
455
|
+
"Upper 50%": "39",
|
|
456
|
+
"Upper 90%": "54",
|
|
457
|
+
"Confirmed Cases": "19"
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
"Date": "6/25/2022",
|
|
461
|
+
"Timeline Stage": "Estimate",
|
|
462
|
+
"Lower 90%": "6",
|
|
463
|
+
"Lower 50%": "10",
|
|
464
|
+
"Upper 50%": "18",
|
|
465
|
+
"Upper 90%": "25",
|
|
466
|
+
"Confirmed Cases": "26"
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
"Date": "6/26/2022",
|
|
470
|
+
"Timeline Stage": "Estimate",
|
|
471
|
+
"Lower 90%": "4",
|
|
472
|
+
"Lower 50%": "7",
|
|
473
|
+
"Upper 50%": "13",
|
|
474
|
+
"Upper 90%": "19",
|
|
475
|
+
"Confirmed Cases": "16"
|
|
476
|
+
},
|
|
477
|
+
{
|
|
478
|
+
"Date": "6/27/2022",
|
|
479
|
+
"Timeline Stage": "Estimate",
|
|
480
|
+
"Lower 90%": "22",
|
|
481
|
+
"Lower 50%": "33",
|
|
482
|
+
"Upper 50%": "53",
|
|
483
|
+
"Upper 90%": "72",
|
|
484
|
+
"Confirmed Cases": "55"
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
"Date": "6/28/2022",
|
|
488
|
+
"Timeline Stage": "Estimate",
|
|
489
|
+
"Lower 90%": "29",
|
|
490
|
+
"Lower 50%": "42",
|
|
491
|
+
"Upper 50%": "65",
|
|
492
|
+
"Upper 90%": "88",
|
|
493
|
+
"Confirmed Cases": "53"
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
"Date": "6/29/2022",
|
|
497
|
+
"Timeline Stage": "Estimate",
|
|
498
|
+
"Lower 90%": "27",
|
|
499
|
+
"Lower 50%": "40",
|
|
500
|
+
"Upper 50%": "62",
|
|
501
|
+
"Upper 90%": "83",
|
|
502
|
+
"Confirmed Cases": "51"
|
|
503
|
+
},
|
|
504
|
+
{
|
|
505
|
+
"Date": "6/30/2022",
|
|
506
|
+
"Timeline Stage": "Estimate",
|
|
507
|
+
"Lower 90%": "33",
|
|
508
|
+
"Lower 50%": "47",
|
|
509
|
+
"Upper 50%": "74",
|
|
510
|
+
"Upper 90%": "97",
|
|
511
|
+
"Confirmed Cases": "69"
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
"Date": "7/1/2022",
|
|
515
|
+
"Timeline Stage": "Estimate",
|
|
516
|
+
"Lower 90%": "32",
|
|
517
|
+
"Lower 50%": "46",
|
|
518
|
+
"Upper 50%": "72",
|
|
519
|
+
"Upper 90%": "98",
|
|
520
|
+
"Confirmed Cases": "82"
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"Date": "7/2/2022",
|
|
524
|
+
"Timeline Stage": "Estimate",
|
|
525
|
+
"Lower 90%": "12",
|
|
526
|
+
"Lower 50%": "19",
|
|
527
|
+
"Upper 50%": "32",
|
|
528
|
+
"Upper 90%": "45",
|
|
529
|
+
"Confirmed Cases": "18"
|
|
530
|
+
},
|
|
531
|
+
{
|
|
532
|
+
"Date": "7/3/2022",
|
|
533
|
+
"Timeline Stage": "Estimate",
|
|
534
|
+
"Lower 90%": "9",
|
|
535
|
+
"Lower 50%": "14",
|
|
536
|
+
"Upper 50%": "24",
|
|
537
|
+
"Upper 90%": "33",
|
|
538
|
+
"Confirmed Cases": "21"
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
"Date": "7/4/2022",
|
|
542
|
+
"Timeline Stage": "Estimate",
|
|
543
|
+
"Lower 90%": "45",
|
|
544
|
+
"Lower 50%": "64",
|
|
545
|
+
"Upper 50%": "101",
|
|
546
|
+
"Upper 90%": "135",
|
|
547
|
+
"Confirmed Cases": "16"
|
|
548
|
+
},
|
|
549
|
+
{
|
|
550
|
+
"Date": "7/5/2022",
|
|
551
|
+
"Timeline Stage": "Estimate",
|
|
552
|
+
"Lower 90%": "54",
|
|
553
|
+
"Lower 50%": "79",
|
|
554
|
+
"Upper 50%": "121",
|
|
555
|
+
"Upper 90%": "163",
|
|
556
|
+
"Confirmed Cases": "95"
|
|
557
|
+
},
|
|
558
|
+
{
|
|
559
|
+
"Date": "7/6/2022",
|
|
560
|
+
"Timeline Stage": "Estimate",
|
|
561
|
+
"Lower 90%": "51",
|
|
562
|
+
"Lower 50%": "76",
|
|
563
|
+
"Upper 50%": "115",
|
|
564
|
+
"Upper 90%": "151",
|
|
565
|
+
"Confirmed Cases": "63"
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
"Date": "7/7/2022",
|
|
569
|
+
"Timeline Stage": "Estimate",
|
|
570
|
+
"Lower 90%": "64",
|
|
571
|
+
"Lower 50%": "90",
|
|
572
|
+
"Upper 50%": "139",
|
|
573
|
+
"Upper 90%": "183",
|
|
574
|
+
"Confirmed Cases": "141"
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
"Date": "7/8/2022",
|
|
578
|
+
"Timeline Stage": "Estimate",
|
|
579
|
+
"Lower 90%": "63",
|
|
580
|
+
"Lower 50%": "89",
|
|
581
|
+
"Upper 50%": "137",
|
|
582
|
+
"Upper 90%": "181",
|
|
583
|
+
"Confirmed Cases": "146"
|
|
584
|
+
},
|
|
585
|
+
{
|
|
586
|
+
"Date": "7/9/2022",
|
|
587
|
+
"Timeline Stage": "Estimate",
|
|
588
|
+
"Lower 90%": "25",
|
|
589
|
+
"Lower 50%": "38",
|
|
590
|
+
"Upper 50%": "60",
|
|
591
|
+
"Upper 90%": "80",
|
|
592
|
+
"Confirmed Cases": "52"
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
"Date": "7/10/2022",
|
|
596
|
+
"Timeline Stage": "Estimate",
|
|
597
|
+
"Lower 90%": "18",
|
|
598
|
+
"Lower 50%": "28",
|
|
599
|
+
"Upper 50%": "45",
|
|
600
|
+
"Upper 90%": "62",
|
|
601
|
+
"Confirmed Cases": "29"
|
|
602
|
+
},
|
|
603
|
+
{
|
|
604
|
+
"Date": "7/11/2022",
|
|
605
|
+
"Timeline Stage": "Estimate",
|
|
606
|
+
"Lower 90%": "84",
|
|
607
|
+
"Lower 50%": "121",
|
|
608
|
+
"Upper 50%": "185",
|
|
609
|
+
"Upper 90%": "248",
|
|
610
|
+
"Confirmed Cases": "185"
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
"Date": "7/12/2022",
|
|
614
|
+
"Timeline Stage": "Estimate",
|
|
615
|
+
"Lower 90%": "105",
|
|
616
|
+
"Lower 50%": "147",
|
|
617
|
+
"Upper 50%": "227",
|
|
618
|
+
"Upper 90%": "301",
|
|
619
|
+
"Confirmed Cases": "197"
|
|
620
|
+
},
|
|
621
|
+
{
|
|
622
|
+
"Date": "7/13/2022",
|
|
623
|
+
"Timeline Stage": "Estimate",
|
|
624
|
+
"Lower 90%": "95",
|
|
625
|
+
"Lower 50%": "137",
|
|
626
|
+
"Upper 50%": "208",
|
|
627
|
+
"Upper 90%": "281",
|
|
628
|
+
"Confirmed Cases": "194"
|
|
629
|
+
},
|
|
630
|
+
{
|
|
631
|
+
"Date": "7/14/2022",
|
|
632
|
+
"Timeline Stage": "Estimate",
|
|
633
|
+
"Lower 90%": "115",
|
|
634
|
+
"Lower 50%": "167",
|
|
635
|
+
"Upper 50%": "256",
|
|
636
|
+
"Upper 90%": "339",
|
|
637
|
+
"Confirmed Cases": "194"
|
|
638
|
+
},
|
|
639
|
+
{
|
|
640
|
+
"Date": "7/15/2022",
|
|
641
|
+
"Timeline Stage": "Estimate",
|
|
642
|
+
"Lower 90%": "114",
|
|
643
|
+
"Lower 50%": "162",
|
|
644
|
+
"Upper 50%": "244",
|
|
645
|
+
"Upper 90%": "319",
|
|
646
|
+
"Confirmed Cases": "245"
|
|
647
|
+
},
|
|
648
|
+
{
|
|
649
|
+
"Date": "7/16/2022",
|
|
650
|
+
"Timeline Stage": "Estimate",
|
|
651
|
+
"Lower 90%": "47",
|
|
652
|
+
"Lower 50%": "68",
|
|
653
|
+
"Upper 50%": "105",
|
|
654
|
+
"Upper 90%": "140",
|
|
655
|
+
"Confirmed Cases": "76"
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
"Date": "7/17/2022",
|
|
659
|
+
"Timeline Stage": "Estimate",
|
|
660
|
+
"Lower 90%": "33",
|
|
661
|
+
"Lower 50%": "50",
|
|
662
|
+
"Upper 50%": "77",
|
|
663
|
+
"Upper 90%": "104",
|
|
664
|
+
"Confirmed Cases": "72"
|
|
665
|
+
},
|
|
666
|
+
{
|
|
667
|
+
"Date": "7/18/2022",
|
|
668
|
+
"Timeline Stage": "Estimate",
|
|
669
|
+
"Lower 90%": "148",
|
|
670
|
+
"Lower 50%": "209",
|
|
671
|
+
"Upper 50%": "316",
|
|
672
|
+
"Upper 90%": "419",
|
|
673
|
+
"Confirmed Cases": "226"
|
|
674
|
+
},
|
|
675
|
+
{
|
|
676
|
+
"Date": "7/19/2022",
|
|
677
|
+
"Timeline Stage": "Estimate",
|
|
678
|
+
"Lower 90%": "176",
|
|
679
|
+
"Lower 50%": "249",
|
|
680
|
+
"Upper 50%": "372",
|
|
681
|
+
"Upper 90%": "489",
|
|
682
|
+
"Confirmed Cases": "275"
|
|
683
|
+
},
|
|
684
|
+
{
|
|
685
|
+
"Date": "7/20/2022",
|
|
686
|
+
"Timeline Stage": "Estimate",
|
|
687
|
+
"Lower 90%": "160",
|
|
688
|
+
"Lower 50%": "227",
|
|
689
|
+
"Upper 50%": "342",
|
|
690
|
+
"Upper 90%": "466",
|
|
691
|
+
"Confirmed Cases": "304"
|
|
692
|
+
},
|
|
693
|
+
{
|
|
694
|
+
"Date": "7/21/2022",
|
|
695
|
+
"Timeline Stage": "Estimate",
|
|
696
|
+
"Lower 90%": "194",
|
|
697
|
+
"Lower 50%": "267",
|
|
698
|
+
"Upper 50%": "399",
|
|
699
|
+
"Upper 90%": "536",
|
|
700
|
+
"Confirmed Cases": "291"
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
"Date": "7/22/2022",
|
|
704
|
+
"Timeline Stage": "Estimate",
|
|
705
|
+
"Lower 90%": "182",
|
|
706
|
+
"Lower 50%": "255",
|
|
707
|
+
"Upper 50%": "387",
|
|
708
|
+
"Upper 90%": "506",
|
|
709
|
+
"Confirmed Cases": "326"
|
|
710
|
+
},
|
|
711
|
+
{
|
|
712
|
+
"Date": "7/23/2022",
|
|
713
|
+
"Timeline Stage": "Estimate",
|
|
714
|
+
"Lower 90%": "74",
|
|
715
|
+
"Lower 50%": "104",
|
|
716
|
+
"Upper 50%": "162",
|
|
717
|
+
"Upper 90%": "213",
|
|
718
|
+
"Confirmed Cases": "136"
|
|
719
|
+
},
|
|
720
|
+
{
|
|
721
|
+
"Date": "7/24/2022",
|
|
722
|
+
"Timeline Stage": "Estimate",
|
|
723
|
+
"Lower 90%": "53",
|
|
724
|
+
"Lower 50%": "76",
|
|
725
|
+
"Upper 50%": "118",
|
|
726
|
+
"Upper 90%": "156",
|
|
727
|
+
"Confirmed Cases": "101"
|
|
728
|
+
},
|
|
729
|
+
{
|
|
730
|
+
"Date": "7/25/2022",
|
|
731
|
+
"Timeline Stage": "Estimate",
|
|
732
|
+
"Lower 90%": "214",
|
|
733
|
+
"Lower 50%": "308",
|
|
734
|
+
"Upper 50%": "470",
|
|
735
|
+
"Upper 90%": "619",
|
|
736
|
+
"Confirmed Cases": "741"
|
|
737
|
+
},
|
|
738
|
+
{
|
|
739
|
+
"Date": "7/26/2022",
|
|
740
|
+
"Timeline Stage": "Estimate",
|
|
741
|
+
"Lower 90%": "268",
|
|
742
|
+
"Lower 50%": "367",
|
|
743
|
+
"Upper 50%": "545",
|
|
744
|
+
"Upper 90%": "734",
|
|
745
|
+
"Confirmed Cases": "327"
|
|
746
|
+
},
|
|
747
|
+
{
|
|
748
|
+
"Date": "7/27/2022",
|
|
749
|
+
"Timeline Stage": "Estimate",
|
|
750
|
+
"Lower 90%": "231",
|
|
751
|
+
"Lower 50%": "325",
|
|
752
|
+
"Upper 50%": "494",
|
|
753
|
+
"Upper 90%": "650",
|
|
754
|
+
"Confirmed Cases": "451"
|
|
755
|
+
},
|
|
756
|
+
{
|
|
757
|
+
"Date": "7/28/2022",
|
|
758
|
+
"Timeline Stage": "Estimate",
|
|
759
|
+
"Lower 90%": "267",
|
|
760
|
+
"Lower 50%": "372",
|
|
761
|
+
"Upper 50%": "559",
|
|
762
|
+
"Upper 90%": "724",
|
|
763
|
+
"Confirmed Cases": "388"
|
|
764
|
+
},
|
|
765
|
+
{
|
|
766
|
+
"Date": "7/29/2022",
|
|
767
|
+
"Timeline Stage": "Estimate",
|
|
768
|
+
"Lower 90%": "249",
|
|
769
|
+
"Lower 50%": "345",
|
|
770
|
+
"Upper 50%": "526",
|
|
771
|
+
"Upper 90%": "685",
|
|
772
|
+
"Confirmed Cases": "485"
|
|
773
|
+
},
|
|
774
|
+
{
|
|
775
|
+
"Date": "7/30/2022",
|
|
776
|
+
"Timeline Stage": "Estimate",
|
|
777
|
+
"Lower 90%": "101",
|
|
778
|
+
"Lower 50%": "142",
|
|
779
|
+
"Upper 50%": "218",
|
|
780
|
+
"Upper 90%": "284",
|
|
781
|
+
"Confirmed Cases": "206"
|
|
782
|
+
},
|
|
783
|
+
{
|
|
784
|
+
"Date": "7/31/2022",
|
|
785
|
+
"Timeline Stage": "Estimate",
|
|
786
|
+
"Lower 90%": "69",
|
|
787
|
+
"Lower 50%": "99",
|
|
788
|
+
"Upper 50%": "153",
|
|
789
|
+
"Upper 90%": "205",
|
|
790
|
+
"Confirmed Cases": "155"
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
"Date": "8/1/2022",
|
|
794
|
+
"Timeline Stage": "Estimate",
|
|
795
|
+
"Lower 90%": "277",
|
|
796
|
+
"Lower 50%": "400",
|
|
797
|
+
"Upper 50%": "599",
|
|
798
|
+
"Upper 90%": "790",
|
|
799
|
+
"Confirmed Cases": "543"
|
|
800
|
+
},
|
|
801
|
+
{
|
|
802
|
+
"Date": "8/2/2022",
|
|
803
|
+
"Timeline Stage": "Estimate",
|
|
804
|
+
"Lower 90%": "331",
|
|
805
|
+
"Lower 50%": "453",
|
|
806
|
+
"Upper 50%": "678",
|
|
807
|
+
"Upper 90%": "897",
|
|
808
|
+
"Confirmed Cases": "422"
|
|
809
|
+
},
|
|
810
|
+
{
|
|
811
|
+
"Date": "8/3/2022",
|
|
812
|
+
"Timeline Stage": "Estimate",
|
|
813
|
+
"Lower 90%": "291",
|
|
814
|
+
"Lower 50%": "402",
|
|
815
|
+
"Upper 50%": "606",
|
|
816
|
+
"Upper 90%": "792",
|
|
817
|
+
"Confirmed Cases": "434"
|
|
818
|
+
},
|
|
819
|
+
{
|
|
820
|
+
"Date": "8/4/2022",
|
|
821
|
+
"Timeline Stage": "Estimate",
|
|
822
|
+
"Lower 90%": "329",
|
|
823
|
+
"Lower 50%": "447",
|
|
824
|
+
"Upper 50%": "678",
|
|
825
|
+
"Upper 90%": "899",
|
|
826
|
+
"Confirmed Cases": "491"
|
|
827
|
+
},
|
|
828
|
+
{
|
|
829
|
+
"Date": "8/5/2022",
|
|
830
|
+
"Timeline Stage": "Estimate",
|
|
831
|
+
"Lower 90%": "288",
|
|
832
|
+
"Lower 50%": "410",
|
|
833
|
+
"Upper 50%": "620",
|
|
834
|
+
"Upper 90%": "814",
|
|
835
|
+
"Confirmed Cases": "474"
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
"Date": "8/6/2022",
|
|
839
|
+
"Timeline Stage": "Estimate",
|
|
840
|
+
"Lower 90%": "116",
|
|
841
|
+
"Lower 50%": "161",
|
|
842
|
+
"Upper 50%": "246",
|
|
843
|
+
"Upper 90%": "328",
|
|
844
|
+
"Confirmed Cases": "240"
|
|
845
|
+
},
|
|
846
|
+
{
|
|
847
|
+
"Date": "8/7/2022",
|
|
848
|
+
"Timeline Stage": "Estimate",
|
|
849
|
+
"Lower 90%": "77",
|
|
850
|
+
"Lower 50%": "110",
|
|
851
|
+
"Upper 50%": "169",
|
|
852
|
+
"Upper 90%": "225",
|
|
853
|
+
"Confirmed Cases": "149"
|
|
854
|
+
},
|
|
855
|
+
{
|
|
856
|
+
"Date": "8/8/2022",
|
|
857
|
+
"Timeline Stage": "Estimate",
|
|
858
|
+
"Lower 90%": "315",
|
|
859
|
+
"Lower 50%": "435",
|
|
860
|
+
"Upper 50%": "664",
|
|
861
|
+
"Upper 90%": "869",
|
|
862
|
+
"Confirmed Cases": "516"
|
|
863
|
+
},
|
|
864
|
+
{
|
|
865
|
+
"Date": "8/9/2022",
|
|
866
|
+
"Timeline Stage": "Estimate",
|
|
867
|
+
"Lower 90%": "349",
|
|
868
|
+
"Lower 50%": "491",
|
|
869
|
+
"Upper 50%": "747",
|
|
870
|
+
"Upper 90%": "979",
|
|
871
|
+
"Confirmed Cases": "520"
|
|
872
|
+
},
|
|
873
|
+
{
|
|
874
|
+
"Date": "8/10/2022",
|
|
875
|
+
"Timeline Stage": "Estimate",
|
|
876
|
+
"Lower 90%": "304",
|
|
877
|
+
"Lower 50%": "422",
|
|
878
|
+
"Upper 50%": "642",
|
|
879
|
+
"Upper 90%": "839",
|
|
880
|
+
"Confirmed Cases": "934"
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
"Date": "8/11/2022",
|
|
884
|
+
"Timeline Stage": "Estimate",
|
|
885
|
+
"Lower 90%": "323",
|
|
886
|
+
"Lower 50%": "462",
|
|
887
|
+
"Upper 50%": "701",
|
|
888
|
+
"Upper 90%": "912",
|
|
889
|
+
"Confirmed Cases": "495"
|
|
890
|
+
},
|
|
891
|
+
{
|
|
892
|
+
"Date": "8/12/2022",
|
|
893
|
+
"Timeline Stage": "Estimate",
|
|
894
|
+
"Lower 90%": "303",
|
|
895
|
+
"Lower 50%": "416",
|
|
896
|
+
"Upper 50%": "627",
|
|
897
|
+
"Upper 90%": "820",
|
|
898
|
+
"Confirmed Cases": "426"
|
|
899
|
+
},
|
|
900
|
+
{
|
|
901
|
+
"Date": "8/13/2022",
|
|
902
|
+
"Timeline Stage": "Estimate",
|
|
903
|
+
"Lower 90%": "112",
|
|
904
|
+
"Lower 50%": "162",
|
|
905
|
+
"Upper 50%": "250",
|
|
906
|
+
"Upper 90%": "322",
|
|
907
|
+
"Confirmed Cases": "245"
|
|
908
|
+
},
|
|
909
|
+
{
|
|
910
|
+
"Date": "8/14/2022",
|
|
911
|
+
"Timeline Stage": "Estimate",
|
|
912
|
+
"Lower 90%": "79",
|
|
913
|
+
"Lower 50%": "112",
|
|
914
|
+
"Upper 50%": "171",
|
|
915
|
+
"Upper 90%": "223",
|
|
916
|
+
"Confirmed Cases": "155"
|
|
917
|
+
},
|
|
918
|
+
{
|
|
919
|
+
"Date": "8/15/2022",
|
|
920
|
+
"Timeline Stage": "Estimate",
|
|
921
|
+
"Lower 90%": "311",
|
|
922
|
+
"Lower 50%": "432",
|
|
923
|
+
"Upper 50%": "651",
|
|
924
|
+
"Upper 90%": "859",
|
|
925
|
+
"Confirmed Cases": "649"
|
|
926
|
+
},
|
|
927
|
+
{
|
|
928
|
+
"Date": "8/16/2022",
|
|
929
|
+
"Timeline Stage": "Estimate",
|
|
930
|
+
"Lower 90%": "334",
|
|
931
|
+
"Lower 50%": "459",
|
|
932
|
+
"Upper 50%": "704",
|
|
933
|
+
"Upper 90%": "924",
|
|
934
|
+
"Confirmed Cases": "395"
|
|
935
|
+
},
|
|
936
|
+
{
|
|
937
|
+
"Date": "8/17/2022",
|
|
938
|
+
"Timeline Stage": "Estimate",
|
|
939
|
+
"Lower 90%": "284",
|
|
940
|
+
"Lower 50%": "402",
|
|
941
|
+
"Upper 50%": "605",
|
|
942
|
+
"Upper 90%": "801",
|
|
943
|
+
"Confirmed Cases": "386"
|
|
944
|
+
},
|
|
945
|
+
{
|
|
946
|
+
"Date": "8/18/2022",
|
|
947
|
+
"Timeline Stage": "Estimate",
|
|
948
|
+
"Lower 90%": "309",
|
|
949
|
+
"Lower 50%": "432",
|
|
950
|
+
"Upper 50%": "646",
|
|
951
|
+
"Upper 90%": "845",
|
|
952
|
+
"Confirmed Cases": "486"
|
|
953
|
+
},
|
|
954
|
+
{
|
|
955
|
+
"Date": "8/19/2022",
|
|
956
|
+
"Timeline Stage": "Estimate",
|
|
957
|
+
"Lower 90%": "281",
|
|
958
|
+
"Lower 50%": "389",
|
|
959
|
+
"Upper 50%": "575",
|
|
960
|
+
"Upper 90%": "754",
|
|
961
|
+
"Confirmed Cases": "465"
|
|
962
|
+
},
|
|
963
|
+
{
|
|
964
|
+
"Date": "8/20/2022",
|
|
965
|
+
"Timeline Stage": "Estimate",
|
|
966
|
+
"Lower 90%": "104",
|
|
967
|
+
"Lower 50%": "146",
|
|
968
|
+
"Upper 50%": "224",
|
|
969
|
+
"Upper 90%": "297",
|
|
970
|
+
"Confirmed Cases": "195"
|
|
971
|
+
},
|
|
972
|
+
{
|
|
973
|
+
"Date": "8/21/2022",
|
|
974
|
+
"Timeline Stage": "Estimate",
|
|
975
|
+
"Lower 90%": "72",
|
|
976
|
+
"Lower 50%": "100",
|
|
977
|
+
"Upper 50%": "153",
|
|
978
|
+
"Upper 90%": "208",
|
|
979
|
+
"Confirmed Cases": "135"
|
|
980
|
+
},
|
|
981
|
+
{
|
|
982
|
+
"Date": "8/22/2022",
|
|
983
|
+
"Timeline Stage": "Estimate",
|
|
984
|
+
"Lower 90%": "273",
|
|
985
|
+
"Lower 50%": "380",
|
|
986
|
+
"Upper 50%": "573",
|
|
987
|
+
"Upper 90%": "754",
|
|
988
|
+
"Confirmed Cases": "552"
|
|
989
|
+
},
|
|
990
|
+
{
|
|
991
|
+
"Date": "8/23/2022",
|
|
992
|
+
"Timeline Stage": "Estimate",
|
|
993
|
+
"Lower 90%": "291",
|
|
994
|
+
"Lower 50%": "411",
|
|
995
|
+
"Upper 50%": "625",
|
|
996
|
+
"Upper 90%": "830",
|
|
997
|
+
"Confirmed Cases": "948"
|
|
998
|
+
},
|
|
999
|
+
{
|
|
1000
|
+
"Date": "8/24/2022",
|
|
1001
|
+
"Timeline Stage": "Estimate",
|
|
1002
|
+
"Lower 90%": "252",
|
|
1003
|
+
"Lower 50%": "352",
|
|
1004
|
+
"Upper 50%": "533",
|
|
1005
|
+
"Upper 90%": "702",
|
|
1006
|
+
"Confirmed Cases": "324"
|
|
1007
|
+
},
|
|
1008
|
+
{
|
|
1009
|
+
"Date": "8/25/2022",
|
|
1010
|
+
"Timeline Stage": "Estimate",
|
|
1011
|
+
"Lower 90%": "263",
|
|
1012
|
+
"Lower 50%": "378",
|
|
1013
|
+
"Upper 50%": "579",
|
|
1014
|
+
"Upper 90%": "754",
|
|
1015
|
+
"Confirmed Cases": "450"
|
|
1016
|
+
},
|
|
1017
|
+
{
|
|
1018
|
+
"Date": "8/26/2022",
|
|
1019
|
+
"Timeline Stage": "Estimate",
|
|
1020
|
+
"Lower 90%": "236",
|
|
1021
|
+
"Lower 50%": "331",
|
|
1022
|
+
"Upper 50%": "508",
|
|
1023
|
+
"Upper 90%": "663",
|
|
1024
|
+
"Confirmed Cases": "402"
|
|
1025
|
+
},
|
|
1026
|
+
{
|
|
1027
|
+
"Date": "8/27/2022",
|
|
1028
|
+
"Timeline Stage": "Estimate",
|
|
1029
|
+
"Lower 90%": "89",
|
|
1030
|
+
"Lower 50%": "125",
|
|
1031
|
+
"Upper 50%": "190",
|
|
1032
|
+
"Upper 90%": "256",
|
|
1033
|
+
"Confirmed Cases": "148"
|
|
1034
|
+
},
|
|
1035
|
+
{
|
|
1036
|
+
"Date": "8/28/2022",
|
|
1037
|
+
"Timeline Stage": "Estimate",
|
|
1038
|
+
"Lower 90%": "59",
|
|
1039
|
+
"Lower 50%": "86",
|
|
1040
|
+
"Upper 50%": "131",
|
|
1041
|
+
"Upper 90%": "170",
|
|
1042
|
+
"Confirmed Cases": "90"
|
|
1043
|
+
},
|
|
1044
|
+
{
|
|
1045
|
+
"Date": "8/29/2022",
|
|
1046
|
+
"Timeline Stage": "Estimate",
|
|
1047
|
+
"Lower 90%": "233",
|
|
1048
|
+
"Lower 50%": "326",
|
|
1049
|
+
"Upper 50%": "480",
|
|
1050
|
+
"Upper 90%": "627",
|
|
1051
|
+
"Confirmed Cases": "524"
|
|
1052
|
+
},
|
|
1053
|
+
{
|
|
1054
|
+
"Date": "8/30/2022",
|
|
1055
|
+
"Timeline Stage": "Estimate",
|
|
1056
|
+
"Lower 90%": "247",
|
|
1057
|
+
"Lower 50%": "347",
|
|
1058
|
+
"Upper 50%": "521",
|
|
1059
|
+
"Upper 90%": "694",
|
|
1060
|
+
"Confirmed Cases": "506"
|
|
1061
|
+
},
|
|
1062
|
+
{
|
|
1063
|
+
"Date": "8/31/2022",
|
|
1064
|
+
"Timeline Stage": "Estimate",
|
|
1065
|
+
"Lower 90%": "208",
|
|
1066
|
+
"Lower 50%": "295",
|
|
1067
|
+
"Upper 50%": "443",
|
|
1068
|
+
"Upper 90%": "584",
|
|
1069
|
+
"Confirmed Cases": "310"
|
|
1070
|
+
},
|
|
1071
|
+
{
|
|
1072
|
+
"Date": "9/1/2022",
|
|
1073
|
+
"Timeline Stage": "Estimate",
|
|
1074
|
+
"Lower 90%": "227",
|
|
1075
|
+
"Lower 50%": "317",
|
|
1076
|
+
"Upper 50%": "483",
|
|
1077
|
+
"Upper 90%": "634",
|
|
1078
|
+
"Confirmed Cases": "360"
|
|
1079
|
+
},
|
|
1080
|
+
{
|
|
1081
|
+
"Date": "9/2/2022",
|
|
1082
|
+
"Timeline Stage": "Estimate",
|
|
1083
|
+
"Lower 90%": "194",
|
|
1084
|
+
"Lower 50%": "276",
|
|
1085
|
+
"Upper 50%": "422",
|
|
1086
|
+
"Upper 90%": "552",
|
|
1087
|
+
"Confirmed Cases": "452"
|
|
1088
|
+
},
|
|
1089
|
+
{
|
|
1090
|
+
"Date": "9/3/2022",
|
|
1091
|
+
"Timeline Stage": "Estimate",
|
|
1092
|
+
"Lower 90%": "74",
|
|
1093
|
+
"Lower 50%": "105",
|
|
1094
|
+
"Upper 50%": "162",
|
|
1095
|
+
"Upper 90%": "210",
|
|
1096
|
+
"Confirmed Cases": "103"
|
|
1097
|
+
},
|
|
1098
|
+
{
|
|
1099
|
+
"Date": "9/4/2022",
|
|
1100
|
+
"Timeline Stage": "Estimate",
|
|
1101
|
+
"Lower 90%": "46",
|
|
1102
|
+
"Lower 50%": "68",
|
|
1103
|
+
"Upper 50%": "107",
|
|
1104
|
+
"Upper 90%": "143",
|
|
1105
|
+
"Confirmed Cases": "89"
|
|
1106
|
+
},
|
|
1107
|
+
{
|
|
1108
|
+
"Date": "9/5/2022",
|
|
1109
|
+
"Timeline Stage": "Estimate",
|
|
1110
|
+
"Lower 90%": "188",
|
|
1111
|
+
"Lower 50%": "263",
|
|
1112
|
+
"Upper 50%": "398",
|
|
1113
|
+
"Upper 90%": "529",
|
|
1114
|
+
"Confirmed Cases": "91"
|
|
1115
|
+
},
|
|
1116
|
+
{
|
|
1117
|
+
"Date": "9/6/2022",
|
|
1118
|
+
"Timeline Stage": "Estimate",
|
|
1119
|
+
"Lower 90%": "207",
|
|
1120
|
+
"Lower 50%": "284",
|
|
1121
|
+
"Upper 50%": "431",
|
|
1122
|
+
"Upper 90%": "565",
|
|
1123
|
+
"Confirmed Cases": "708"
|
|
1124
|
+
},
|
|
1125
|
+
{
|
|
1126
|
+
"Date": "9/7/2022",
|
|
1127
|
+
"Timeline Stage": "Estimate",
|
|
1128
|
+
"Lower 90%": "173",
|
|
1129
|
+
"Lower 50%": "238",
|
|
1130
|
+
"Upper 50%": "365",
|
|
1131
|
+
"Upper 90%": "478",
|
|
1132
|
+
"Confirmed Cases": "242"
|
|
1133
|
+
},
|
|
1134
|
+
{
|
|
1135
|
+
"Date": "9/8/2022",
|
|
1136
|
+
"Timeline Stage": "Estimate",
|
|
1137
|
+
"Lower 90%": "185",
|
|
1138
|
+
"Lower 50%": "258",
|
|
1139
|
+
"Upper 50%": "387",
|
|
1140
|
+
"Upper 90%": "509",
|
|
1141
|
+
"Confirmed Cases": "291"
|
|
1142
|
+
},
|
|
1143
|
+
{
|
|
1144
|
+
"Date": "9/9/2022",
|
|
1145
|
+
"Timeline Stage": "Estimate",
|
|
1146
|
+
"Lower 90%": "162",
|
|
1147
|
+
"Lower 50%": "224",
|
|
1148
|
+
"Upper 50%": "342",
|
|
1149
|
+
"Upper 90%": "448",
|
|
1150
|
+
"Confirmed Cases": "271"
|
|
1151
|
+
},
|
|
1152
|
+
{
|
|
1153
|
+
"Date": "9/10/2022",
|
|
1154
|
+
"Timeline Stage": "Estimate",
|
|
1155
|
+
"Lower 90%": "58",
|
|
1156
|
+
"Lower 50%": "84",
|
|
1157
|
+
"Upper 50%": "129",
|
|
1158
|
+
"Upper 90%": "168",
|
|
1159
|
+
"Confirmed Cases": "95"
|
|
1160
|
+
},
|
|
1161
|
+
{
|
|
1162
|
+
"Date": "9/11/2022",
|
|
1163
|
+
"Timeline Stage": "Estimate",
|
|
1164
|
+
"Lower 90%": "38",
|
|
1165
|
+
"Lower 50%": "56",
|
|
1166
|
+
"Upper 50%": "87",
|
|
1167
|
+
"Upper 90%": "114",
|
|
1168
|
+
"Confirmed Cases": "81"
|
|
1169
|
+
},
|
|
1170
|
+
{
|
|
1171
|
+
"Date": "9/12/2022",
|
|
1172
|
+
"Timeline Stage": "Estimate",
|
|
1173
|
+
"Lower 90%": "154",
|
|
1174
|
+
"Lower 50%": "213",
|
|
1175
|
+
"Upper 50%": "327",
|
|
1176
|
+
"Upper 90%": "424",
|
|
1177
|
+
"Confirmed Cases": "291"
|
|
1178
|
+
},
|
|
1179
|
+
{
|
|
1180
|
+
"Date": "9/13/2022",
|
|
1181
|
+
"Timeline Stage": "Estimate",
|
|
1182
|
+
"Lower 90%": "173",
|
|
1183
|
+
"Lower 50%": "237",
|
|
1184
|
+
"Upper 50%": "354",
|
|
1185
|
+
"Upper 90%": "454",
|
|
1186
|
+
"Confirmed Cases": "246"
|
|
1187
|
+
},
|
|
1188
|
+
{
|
|
1189
|
+
"Date": "9/14/2022",
|
|
1190
|
+
"Timeline Stage": "Estimate",
|
|
1191
|
+
"Lower 90%": "137",
|
|
1192
|
+
"Lower 50%": "191",
|
|
1193
|
+
"Upper 50%": "295",
|
|
1194
|
+
"Upper 90%": "378",
|
|
1195
|
+
"Confirmed Cases": "285"
|
|
1196
|
+
},
|
|
1197
|
+
{
|
|
1198
|
+
"Date": "9/15/2022",
|
|
1199
|
+
"Timeline Stage": "Estimate",
|
|
1200
|
+
"Lower 90%": "144",
|
|
1201
|
+
"Lower 50%": "207",
|
|
1202
|
+
"Upper 50%": "316",
|
|
1203
|
+
"Upper 90%": "416",
|
|
1204
|
+
"Confirmed Cases": "258"
|
|
1205
|
+
},
|
|
1206
|
+
{
|
|
1207
|
+
"Date": "9/16/2022",
|
|
1208
|
+
"Timeline Stage": "Estimate",
|
|
1209
|
+
"Lower 90%": "129",
|
|
1210
|
+
"Lower 50%": "178",
|
|
1211
|
+
"Upper 50%": "269",
|
|
1212
|
+
"Upper 90%": "350",
|
|
1213
|
+
"Confirmed Cases": "181"
|
|
1214
|
+
},
|
|
1215
|
+
{
|
|
1216
|
+
"Date": "9/17/2022",
|
|
1217
|
+
"Timeline Stage": "Estimate",
|
|
1218
|
+
"Lower 90%": "47",
|
|
1219
|
+
"Lower 50%": "68",
|
|
1220
|
+
"Upper 50%": "106",
|
|
1221
|
+
"Upper 90%": "144",
|
|
1222
|
+
"Confirmed Cases": "88"
|
|
1223
|
+
},
|
|
1224
|
+
{
|
|
1225
|
+
"Date": "9/18/2022",
|
|
1226
|
+
"Timeline Stage": "Estimate",
|
|
1227
|
+
"Lower 90%": "31",
|
|
1228
|
+
"Lower 50%": "44",
|
|
1229
|
+
"Upper 50%": "71",
|
|
1230
|
+
"Upper 90%": "91",
|
|
1231
|
+
"Confirmed Cases": "68"
|
|
1232
|
+
},
|
|
1233
|
+
{
|
|
1234
|
+
"Date": "9/19/2022",
|
|
1235
|
+
"Timeline Stage": "Estimate",
|
|
1236
|
+
"Lower 90%": "121",
|
|
1237
|
+
"Lower 50%": "169",
|
|
1238
|
+
"Upper 50%": "262",
|
|
1239
|
+
"Upper 90%": "344",
|
|
1240
|
+
"Confirmed Cases": "298"
|
|
1241
|
+
},
|
|
1242
|
+
{
|
|
1243
|
+
"Date": "9/20/2022",
|
|
1244
|
+
"Timeline Stage": "Estimate",
|
|
1245
|
+
"Lower 90%": "132",
|
|
1246
|
+
"Lower 50%": "186",
|
|
1247
|
+
"Upper 50%": "279",
|
|
1248
|
+
"Upper 90%": "372",
|
|
1249
|
+
"Confirmed Cases": "278"
|
|
1250
|
+
},
|
|
1251
|
+
{
|
|
1252
|
+
"Date": "9/21/2022",
|
|
1253
|
+
"Timeline Stage": "Estimate",
|
|
1254
|
+
"Lower 90%": "107",
|
|
1255
|
+
"Lower 50%": "153",
|
|
1256
|
+
"Upper 50%": "235",
|
|
1257
|
+
"Upper 90%": "304",
|
|
1258
|
+
"Confirmed Cases": "226"
|
|
1259
|
+
},
|
|
1260
|
+
{
|
|
1261
|
+
"Date": "9/22/2022",
|
|
1262
|
+
"Timeline Stage": "Estimate",
|
|
1263
|
+
"Lower 90%": "112",
|
|
1264
|
+
"Lower 50%": "161",
|
|
1265
|
+
"Upper 50%": "249",
|
|
1266
|
+
"Upper 90%": "324",
|
|
1267
|
+
"Confirmed Cases": "239"
|
|
1268
|
+
},
|
|
1269
|
+
{
|
|
1270
|
+
"Date": "9/23/2022",
|
|
1271
|
+
"Timeline Stage": "Estimate",
|
|
1272
|
+
"Lower 90%": "99",
|
|
1273
|
+
"Lower 50%": "142",
|
|
1274
|
+
"Upper 50%": "216",
|
|
1275
|
+
"Upper 90%": "290",
|
|
1276
|
+
"Confirmed Cases": "180"
|
|
1277
|
+
},
|
|
1278
|
+
{
|
|
1279
|
+
"Date": "9/24/2022",
|
|
1280
|
+
"Timeline Stage": "Estimate",
|
|
1281
|
+
"Lower 90%": "38",
|
|
1282
|
+
"Lower 50%": "54",
|
|
1283
|
+
"Upper 50%": "83",
|
|
1284
|
+
"Upper 90%": "112",
|
|
1285
|
+
"Confirmed Cases": "56"
|
|
1286
|
+
},
|
|
1287
|
+
{
|
|
1288
|
+
"Date": "9/25/2022",
|
|
1289
|
+
"Timeline Stage": "Estimate",
|
|
1290
|
+
"Lower 90%": "24",
|
|
1291
|
+
"Lower 50%": "35",
|
|
1292
|
+
"Upper 50%": "55",
|
|
1293
|
+
"Upper 90%": "75",
|
|
1294
|
+
"Confirmed Cases": "39"
|
|
1295
|
+
},
|
|
1296
|
+
{
|
|
1297
|
+
"Date": "9/26/2022",
|
|
1298
|
+
"Timeline Stage": "Estimate",
|
|
1299
|
+
"Lower 90%": "97",
|
|
1300
|
+
"Lower 50%": "135",
|
|
1301
|
+
"Upper 50%": "207",
|
|
1302
|
+
"Upper 90%": "271",
|
|
1303
|
+
"Confirmed Cases": "174"
|
|
1304
|
+
},
|
|
1305
|
+
{
|
|
1306
|
+
"Date": "9/27/2022",
|
|
1307
|
+
"Timeline Stage": "Estimate",
|
|
1308
|
+
"Lower 90%": "102",
|
|
1309
|
+
"Lower 50%": "145",
|
|
1310
|
+
"Upper 50%": "218",
|
|
1311
|
+
"Upper 90%": "288",
|
|
1312
|
+
"Confirmed Cases": "154"
|
|
1313
|
+
},
|
|
1314
|
+
{
|
|
1315
|
+
"Date": "9/28/2022",
|
|
1316
|
+
"Timeline Stage": "Estimate",
|
|
1317
|
+
"Lower 90%": "85",
|
|
1318
|
+
"Lower 50%": "121",
|
|
1319
|
+
"Upper 50%": "184",
|
|
1320
|
+
"Upper 90%": "239",
|
|
1321
|
+
"Confirmed Cases": "165"
|
|
1322
|
+
},
|
|
1323
|
+
{
|
|
1324
|
+
"Date": "9/29/2022",
|
|
1325
|
+
"Timeline Stage": "Estimate",
|
|
1326
|
+
"Lower 90%": "90",
|
|
1327
|
+
"Lower 50%": "127",
|
|
1328
|
+
"Upper 50%": "193",
|
|
1329
|
+
"Upper 90%": "258",
|
|
1330
|
+
"Confirmed Cases": "188"
|
|
1331
|
+
},
|
|
1332
|
+
{
|
|
1333
|
+
"Date": "9/30/2022",
|
|
1334
|
+
"Timeline Stage": "Estimate",
|
|
1335
|
+
"Lower 90%": "79",
|
|
1336
|
+
"Lower 50%": "111",
|
|
1337
|
+
"Upper 50%": "169",
|
|
1338
|
+
"Upper 90%": "224",
|
|
1339
|
+
"Confirmed Cases": "125"
|
|
1340
|
+
},
|
|
1341
|
+
{
|
|
1342
|
+
"Date": "10/1/2022",
|
|
1343
|
+
"Timeline Stage": "Estimate",
|
|
1344
|
+
"Lower 90%": "27",
|
|
1345
|
+
"Lower 50%": "40",
|
|
1346
|
+
"Upper 50%": "65",
|
|
1347
|
+
"Upper 90%": "87",
|
|
1348
|
+
"Confirmed Cases": "54"
|
|
1349
|
+
},
|
|
1350
|
+
{
|
|
1351
|
+
"Date": "10/2/2022",
|
|
1352
|
+
"Timeline Stage": "Estimate",
|
|
1353
|
+
"Lower 90%": "18",
|
|
1354
|
+
"Lower 50%": "27",
|
|
1355
|
+
"Upper 50%": "42",
|
|
1356
|
+
"Upper 90%": "57",
|
|
1357
|
+
"Confirmed Cases": "27"
|
|
1358
|
+
},
|
|
1359
|
+
{
|
|
1360
|
+
"Date": "10/3/2022",
|
|
1361
|
+
"Timeline Stage": "Estimate",
|
|
1362
|
+
"Lower 90%": "70",
|
|
1363
|
+
"Lower 50%": "102",
|
|
1364
|
+
"Upper 50%": "158",
|
|
1365
|
+
"Upper 90%": "206",
|
|
1366
|
+
"Confirmed Cases": "129"
|
|
1367
|
+
},
|
|
1368
|
+
{
|
|
1369
|
+
"Date": "10/4/2022",
|
|
1370
|
+
"Timeline Stage": "Estimate",
|
|
1371
|
+
"Lower 90%": "79",
|
|
1372
|
+
"Lower 50%": "110",
|
|
1373
|
+
"Upper 50%": "166",
|
|
1374
|
+
"Upper 90%": "221",
|
|
1375
|
+
"Confirmed Cases": "135"
|
|
1376
|
+
},
|
|
1377
|
+
{
|
|
1378
|
+
"Date": "10/5/2022",
|
|
1379
|
+
"Timeline Stage": "Estimate Based on Partial Data",
|
|
1380
|
+
"Lower 90%": "62",
|
|
1381
|
+
"Lower 50%": "88",
|
|
1382
|
+
"Upper 50%": "138",
|
|
1383
|
+
"Upper 90%": "182",
|
|
1384
|
+
"Confirmed Cases": "102"
|
|
1385
|
+
},
|
|
1386
|
+
{
|
|
1387
|
+
"Date": "10/6/2022",
|
|
1388
|
+
"Timeline Stage": "Estimate Based on Partial Data",
|
|
1389
|
+
"Lower 90%": "64",
|
|
1390
|
+
"Lower 50%": "93",
|
|
1391
|
+
"Upper 50%": "145",
|
|
1392
|
+
"Upper 90%": "194",
|
|
1393
|
+
"Confirmed Cases": "170"
|
|
1394
|
+
},
|
|
1395
|
+
{
|
|
1396
|
+
"Date": "10/7/2022",
|
|
1397
|
+
"Timeline Stage": "Estimate Based on Partial Data",
|
|
1398
|
+
"Lower 90%": "56",
|
|
1399
|
+
"Lower 50%": "81",
|
|
1400
|
+
"Upper 50%": "124",
|
|
1401
|
+
"Upper 90%": "165",
|
|
1402
|
+
"Confirmed Cases": "109"
|
|
1403
|
+
},
|
|
1404
|
+
{
|
|
1405
|
+
"Date": "10/8/2022",
|
|
1406
|
+
"Timeline Stage": "Estimate Based on Partial Data",
|
|
1407
|
+
"Lower 90%": "19",
|
|
1408
|
+
"Lower 50%": "30",
|
|
1409
|
+
"Upper 50%": "48",
|
|
1410
|
+
"Upper 90%": "65",
|
|
1411
|
+
"Confirmed Cases": "33"
|
|
1412
|
+
},
|
|
1413
|
+
{
|
|
1414
|
+
"Date": "10/9/2022",
|
|
1415
|
+
"Timeline Stage": "Estimate Based on Partial Data",
|
|
1416
|
+
"Lower 90%": "13",
|
|
1417
|
+
"Lower 50%": "19",
|
|
1418
|
+
"Upper 50%": "31",
|
|
1419
|
+
"Upper 90%": "42",
|
|
1420
|
+
"Confirmed Cases": "19"
|
|
1421
|
+
},
|
|
1422
|
+
{
|
|
1423
|
+
"Date": "10/10/2022",
|
|
1424
|
+
"Timeline Stage": "Estimate Based on Partial Data",
|
|
1425
|
+
"Lower 90%": "51",
|
|
1426
|
+
"Lower 50%": "74",
|
|
1427
|
+
"Upper 50%": "114",
|
|
1428
|
+
"Upper 90%": "148",
|
|
1429
|
+
"Confirmed Cases": "42"
|
|
1430
|
+
},
|
|
1431
|
+
{
|
|
1432
|
+
"Date": "10/11/2022",
|
|
1433
|
+
"Timeline Stage": "Estimate Based on Partial Data",
|
|
1434
|
+
"Lower 90%": "55",
|
|
1435
|
+
"Lower 50%": "78",
|
|
1436
|
+
"Upper 50%": "118",
|
|
1437
|
+
"Upper 90%": "157",
|
|
1438
|
+
"Confirmed Cases": "143"
|
|
1439
|
+
},
|
|
1440
|
+
{
|
|
1441
|
+
"Date": "10/12/2022",
|
|
1442
|
+
"Timeline Stage": "Estimate Based on Partial Data",
|
|
1443
|
+
"Lower 90%": "45",
|
|
1444
|
+
"Lower 50%": "62",
|
|
1445
|
+
"Upper 50%": "99",
|
|
1446
|
+
"Upper 90%": "131",
|
|
1447
|
+
"Confirmed Cases": "106"
|
|
1448
|
+
},
|
|
1449
|
+
{
|
|
1450
|
+
"Date": "10/13/2022",
|
|
1451
|
+
"Timeline Stage": "Estimate Based on Partial Data",
|
|
1452
|
+
"Lower 90%": "47",
|
|
1453
|
+
"Lower 50%": "66",
|
|
1454
|
+
"Upper 50%": "103",
|
|
1455
|
+
"Upper 90%": "135",
|
|
1456
|
+
"Confirmed Cases": "127"
|
|
1457
|
+
},
|
|
1458
|
+
{
|
|
1459
|
+
"Date": "10/14/2022",
|
|
1460
|
+
"Timeline Stage": "Estimate Based on Partial Data",
|
|
1461
|
+
"Lower 90%": "40",
|
|
1462
|
+
"Lower 50%": "56",
|
|
1463
|
+
"Upper 50%": "89",
|
|
1464
|
+
"Upper 90%": "120",
|
|
1465
|
+
"Confirmed Cases": "80"
|
|
1466
|
+
},
|
|
1467
|
+
{
|
|
1468
|
+
"Date": "10/15/2022",
|
|
1469
|
+
"Timeline Stage": "Estimate Based on Partial Data",
|
|
1470
|
+
"Lower 90%": "13",
|
|
1471
|
+
"Lower 50%": "21",
|
|
1472
|
+
"Upper 50%": "34",
|
|
1473
|
+
"Upper 90%": "46",
|
|
1474
|
+
"Confirmed Cases": "24"
|
|
1475
|
+
},
|
|
1476
|
+
{
|
|
1477
|
+
"Date": "10/16/2022",
|
|
1478
|
+
"Timeline Stage": "Estimate Based on Partial Data",
|
|
1479
|
+
"Lower 90%": "8",
|
|
1480
|
+
"Lower 50%": "13",
|
|
1481
|
+
"Upper 50%": "22",
|
|
1482
|
+
"Upper 90%": "31",
|
|
1483
|
+
"Confirmed Cases": "8"
|
|
1484
|
+
},
|
|
1485
|
+
{
|
|
1486
|
+
"Date": "10/17/2022",
|
|
1487
|
+
"Timeline Stage": "Estimate Based on Partial Data",
|
|
1488
|
+
"Lower 90%": "34",
|
|
1489
|
+
"Lower 50%": "49",
|
|
1490
|
+
"Upper 50%": "80",
|
|
1491
|
+
"Upper 90%": "109",
|
|
1492
|
+
"Confirmed Cases": "95"
|
|
1493
|
+
},
|
|
1494
|
+
{
|
|
1495
|
+
"Date": "10/18/2022",
|
|
1496
|
+
"Timeline Stage": "Estimate Based on Partial Data",
|
|
1497
|
+
"Lower 90%": "37",
|
|
1498
|
+
"Lower 50%": "54",
|
|
1499
|
+
"Upper 50%": "84",
|
|
1500
|
+
"Upper 90%": "113",
|
|
1501
|
+
"Confirmed Cases": "37"
|
|
1502
|
+
},
|
|
1503
|
+
{
|
|
1504
|
+
"Date": "10/19/2022",
|
|
1505
|
+
"Timeline Stage": "Estimate Based on Partial Data",
|
|
1506
|
+
"Lower 90%": "29",
|
|
1507
|
+
"Lower 50%": "42",
|
|
1508
|
+
"Upper 50%": "68",
|
|
1509
|
+
"Upper 90%": "92",
|
|
1510
|
+
"Confirmed Cases": "52"
|
|
1511
|
+
},
|
|
1512
|
+
{
|
|
1513
|
+
"Date": "10/20/2022",
|
|
1514
|
+
"Timeline Stage": "Forecast",
|
|
1515
|
+
"Lower 90%": "29",
|
|
1516
|
+
"Lower 50%": "44",
|
|
1517
|
+
"Upper 50%": "72",
|
|
1518
|
+
"Upper 90%": "99",
|
|
1519
|
+
"Confirmed Cases": "NA"
|
|
1520
|
+
},
|
|
1521
|
+
{
|
|
1522
|
+
"Date": "10/21/2022",
|
|
1523
|
+
"Timeline Stage": "Forecast",
|
|
1524
|
+
"Lower 90%": "24",
|
|
1525
|
+
"Lower 50%": "36",
|
|
1526
|
+
"Upper 50%": "61",
|
|
1527
|
+
"Upper 90%": "87",
|
|
1528
|
+
"Confirmed Cases": "NA"
|
|
1529
|
+
},
|
|
1530
|
+
{
|
|
1531
|
+
"Date": "10/22/2022",
|
|
1532
|
+
"Timeline Stage": "Forecast",
|
|
1533
|
+
"Lower 90%": "7",
|
|
1534
|
+
"Lower 50%": "13",
|
|
1535
|
+
"Upper 50%": "24",
|
|
1536
|
+
"Upper 90%": "35",
|
|
1537
|
+
"Confirmed Cases": "NA"
|
|
1538
|
+
},
|
|
1539
|
+
{
|
|
1540
|
+
"Date": "10/23/2022",
|
|
1541
|
+
"Timeline Stage": "Forecast",
|
|
1542
|
+
"Lower 90%": "5",
|
|
1543
|
+
"Lower 50%": "8",
|
|
1544
|
+
"Upper 50%": "16",
|
|
1545
|
+
"Upper 90%": "24",
|
|
1546
|
+
"Confirmed Cases": "NA"
|
|
1547
|
+
},
|
|
1548
|
+
{
|
|
1549
|
+
"Date": "10/24/2022",
|
|
1550
|
+
"Timeline Stage": "Forecast",
|
|
1551
|
+
"Lower 90%": "21",
|
|
1552
|
+
"Lower 50%": "33",
|
|
1553
|
+
"Upper 50%": "56",
|
|
1554
|
+
"Upper 90%": "81",
|
|
1555
|
+
"Confirmed Cases": "NA"
|
|
1556
|
+
},
|
|
1557
|
+
{
|
|
1558
|
+
"Date": "10/25/2022",
|
|
1559
|
+
"Timeline Stage": "Forecast",
|
|
1560
|
+
"Lower 90%": "21",
|
|
1561
|
+
"Lower 50%": "33",
|
|
1562
|
+
"Upper 50%": "59",
|
|
1563
|
+
"Upper 90%": "85",
|
|
1564
|
+
"Confirmed Cases": "NA"
|
|
1565
|
+
},
|
|
1566
|
+
{
|
|
1567
|
+
"Date": "10/26/2022",
|
|
1568
|
+
"Timeline Stage": "Forecast",
|
|
1569
|
+
"Lower 90%": "17",
|
|
1570
|
+
"Lower 50%": "26",
|
|
1571
|
+
"Upper 50%": "48",
|
|
1572
|
+
"Upper 90%": "75",
|
|
1573
|
+
"Confirmed Cases": "NA"
|
|
1574
|
+
}
|
|
1575
|
+
],
|
|
1576
|
+
"datasets": {}
|
|
1577
|
+
}
|