@cdc/chart 4.26.1 → 4.26.3

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.
Files changed (173) hide show
  1. package/CLAUDE.local.md +79 -0
  2. package/LICENSE +201 -0
  3. package/dist/{cdcchart-dgT_1dIT.es.js → cdcchart-DQ00cQCm.es.js} +1 -20
  4. package/dist/cdcchart.js +54742 -49796
  5. package/examples/data/data-with-metadata.json +10 -0
  6. package/examples/default.json +378 -0
  7. package/examples/feature/__data__/horizon-chart-data.json +373 -0
  8. package/examples/feature/annotations/index.json +3 -6
  9. package/examples/feature/horizon/horizon-chart.json +395 -0
  10. package/examples/feature/pie/planet-pie-example-config.json +2 -1
  11. package/examples/line-chart-states.json +1085 -0
  12. package/examples/metadata-variables.json +58 -0
  13. package/examples/private/123.json +694 -0
  14. package/examples/private/anchor-issue.json +4094 -0
  15. package/examples/private/backwards-slider.json +10430 -0
  16. package/examples/private/georgia.csv +160 -0
  17. package/examples/private/timeline-data.json +1 -0
  18. package/examples/private/timeline.json +389 -0
  19. package/examples/radar-chart-simple.json +133 -0
  20. package/examples/radar-chart.json +148 -0
  21. package/index.html +1 -31
  22. package/package.json +57 -59
  23. package/src/CdcChart.tsx +8 -4
  24. package/src/CdcChartComponent.tsx +398 -284
  25. package/src/_stories/Chart.Anchors.stories.tsx +10 -0
  26. package/src/_stories/Chart.BoxPlot.stories.tsx +7 -0
  27. package/src/_stories/Chart.CI.stories.tsx +13 -0
  28. package/src/_stories/Chart.Combo.stories.tsx +17 -0
  29. package/src/_stories/Chart.CustomColors.stories.tsx +78 -0
  30. package/src/_stories/Chart.Defaults.stories.tsx +95 -0
  31. package/src/_stories/Chart.DynamicSeries.stories.tsx +19 -0
  32. package/src/_stories/Chart.Filters.stories.tsx +4 -0
  33. package/src/_stories/Chart.Forecast.stories.tsx +4 -0
  34. package/src/_stories/Chart.HTMLInDataTable.stories.tsx +22 -0
  35. package/src/_stories/Chart.Legend.Gradient.stories.tsx +28 -0
  36. package/src/_stories/Chart.Patterns.stories.tsx +4 -0
  37. package/src/_stories/Chart.PreserveDecimals.stories.tsx +25 -0
  38. package/src/_stories/Chart.Regions.Categorical.stories.tsx +13 -0
  39. package/src/_stories/Chart.Regions.DateScale.stories.tsx +19 -0
  40. package/src/_stories/Chart.Regions.DateTimeScale.stories.tsx +25 -10
  41. package/src/_stories/Chart.ScatterPlot.stories.tsx +4 -0
  42. package/src/_stories/Chart.SmallMultiples.stories.tsx +16 -0
  43. package/src/_stories/Chart.SmallestLeftAxisMax.stories.tsx +64 -0
  44. package/src/_stories/Chart.stories.tsx +72 -1
  45. package/src/_stories/Chart.tooltip.stories.tsx +7 -0
  46. package/src/_stories/ChartAnnotation.stories.tsx +10 -0
  47. package/src/_stories/ChartAxisLabels.stories.tsx +4 -0
  48. package/src/_stories/ChartAxisTitles.stories.tsx +10 -0
  49. package/src/_stories/ChartBar.Editor.stories.tsx +97 -38
  50. package/src/_stories/ChartBrush.Editor.stories.tsx +11 -25
  51. package/src/_stories/ChartBrush.Matrix.Continuous.stories.tsx +41 -0
  52. package/src/_stories/ChartBrush.Matrix.Date.stories.tsx +114 -0
  53. package/src/_stories/ChartBrush.Matrix.DateTime.stories.tsx +78 -0
  54. package/src/_stories/ChartBrush.stories.tsx +7 -0
  55. package/src/_stories/ChartEditor.Editor.stories.tsx +1 -1
  56. package/src/_stories/ChartEditor.stories.tsx +7 -0
  57. package/src/_stories/ChartLine.QuadrantAngles.stories.tsx +89 -0
  58. package/src/_stories/ChartLine.Suppression.stories.tsx +7 -0
  59. package/src/_stories/ChartLine.Symbols.stories.tsx +4 -0
  60. package/src/_stories/ChartPrefixSuffix.stories.tsx +46 -1
  61. package/src/_stories/TechAdoptionWithLinks.stories.tsx +7 -0
  62. package/src/_stories/_mock/brush_continuous.json +86 -0
  63. package/src/_stories/_mock/brush_date_large.json +176 -0
  64. package/src/_stories/_mock/line_chart_angle_near_zero_fall.json +195 -0
  65. package/src/_stories/_mock/line_chart_angle_near_zero_rise.json +195 -0
  66. package/src/_stories/_mock/line_chart_angle_q1_steep_upward.json +195 -0
  67. package/src/_stories/_mock/line_chart_angle_q2_gentle_downward.json +195 -0
  68. package/src/_stories/_mock/line_chart_angle_q3_steep_downward.json +195 -0
  69. package/src/_stories/_mock/line_chart_angle_q4_gentle_upward.json +195 -0
  70. package/src/_stories/_mock/line_chart_quadrant_angles.json +264 -0
  71. package/src/_stories/_mock/paired-bar-abbr.json +421 -0
  72. package/src/_stories/_mock/pie_custom_colors.json +268 -0
  73. package/src/_stories/_mock/smallest_left_axis_max.json +104 -0
  74. package/src/components/Annotations/components/AnnotationDraggable.styles.css +14 -20
  75. package/src/components/Annotations/components/AnnotationDraggable.tsx +240 -116
  76. package/src/components/Annotations/components/AnnotationDropdown.styles.css +1 -2
  77. package/src/components/Annotations/components/AnnotationDropdown.tsx +8 -12
  78. package/src/components/Annotations/components/AnnotationList.styles.css +12 -18
  79. package/src/components/Annotations/components/AnnotationList.tsx +5 -4
  80. package/src/components/Annotations/components/findNearestDatum.ts +75 -85
  81. package/src/components/Annotations/helpers/getVisibleAnnotations.ts +38 -0
  82. package/src/components/Axis/BottomAxis.tsx +277 -0
  83. package/src/components/Axis/LeftAxis.tsx +404 -0
  84. package/src/components/Axis/LeftAxisGridlines.tsx +77 -0
  85. package/src/components/Axis/PairedBarAxis.tsx +192 -0
  86. package/src/components/Axis/README.md +94 -0
  87. package/src/components/Axis/RightAxis.tsx +108 -0
  88. package/src/components/Axis/axis.constants.ts +21 -0
  89. package/src/components/Axis/index.ts +7 -0
  90. package/src/components/BarChart/components/BarChart.Horizontal.tsx +12 -28
  91. package/src/components/BarChart/components/BarChart.StackedHorizontal.tsx +12 -30
  92. package/src/components/BarChart/components/BarChart.StackedVertical.tsx +12 -31
  93. package/src/components/BarChart/components/BarChart.Vertical.tsx +12 -28
  94. package/src/components/BarChart/components/BarChart.tsx +7 -1
  95. package/src/components/BarChart/helpers/getPatternUrl.ts +94 -0
  96. package/src/components/BarChart/helpers/tests/getPatternUrl.test.ts +134 -0
  97. package/src/components/BarChart/helpers/useBarChart.ts +3 -0
  98. package/src/components/Brush/BrushSelector.tsx +155 -22
  99. package/src/components/Brush/MiniChartPreview.tsx +133 -21
  100. package/src/components/EditorPanel/EditorPanel.tsx +81 -54
  101. package/src/components/EditorPanel/components/Panels/Panel.Annotate.tsx +67 -29
  102. package/src/components/EditorPanel/components/Panels/Panel.ForestPlotSettings.tsx +0 -78
  103. package/src/components/EditorPanel/components/Panels/Panel.General.tsx +120 -2
  104. package/src/components/EditorPanel/components/Panels/Panel.PatternSettings.tsx +25 -43
  105. package/src/components/EditorPanel/components/Panels/Panel.Radar.tsx +353 -0
  106. package/src/components/EditorPanel/components/Panels/Panel.Series.tsx +83 -3
  107. package/src/components/EditorPanel/components/Panels/Panel.Visual.tsx +66 -43
  108. package/src/components/EditorPanel/components/Panels/index.tsx +2 -0
  109. package/src/components/EditorPanel/editor-panel.scss +1 -1
  110. package/src/components/EditorPanel/useEditorPermissions.ts +55 -26
  111. package/src/components/ForestPlot/ForestPlot.tsx +26 -22
  112. package/src/components/HorizonChart/HorizonChart.tsx +131 -0
  113. package/src/components/HorizonChart/components/HorizonBand.tsx +160 -0
  114. package/src/components/HorizonChart/helpers/calculateHorizonBands.ts +27 -0
  115. package/src/components/HorizonChart/helpers/getHorizonLayerColors.ts +40 -0
  116. package/src/components/HorizonChart/index.tsx +3 -0
  117. package/src/components/Legend/Legend.Component.tsx +52 -4
  118. package/src/components/Legend/Legend.tsx +1 -1
  119. package/src/components/Legend/LegendGroup/LegendGroup.styles.css +4 -4
  120. package/src/components/Legend/LegendValueRange.tsx +77 -0
  121. package/src/components/Legend/helpers/createFormatLabels.tsx +16 -2
  122. package/src/components/Legend/helpers/generateValueRanges.ts +92 -0
  123. package/src/components/LineChart/helpers/README.md +292 -0
  124. package/src/components/LineChart/helpers/labelPositioning.test.ts +245 -0
  125. package/src/components/LineChart/helpers/labelPositioning.ts +304 -0
  126. package/src/components/LineChart/index.tsx +44 -8
  127. package/src/components/LinearChart/README.md +109 -0
  128. package/src/components/LinearChart/VisualizationRenderer.tsx +267 -0
  129. package/src/components/LinearChart/linearChart.constants.ts +84 -0
  130. package/src/components/LinearChart/tests/LinearChart.test.tsx +278 -0
  131. package/src/components/LinearChart/tests/mockConfigContext.ts +131 -0
  132. package/src/components/LinearChart/utils/tickFormatting.ts +146 -0
  133. package/src/components/LinearChart.tsx +268 -1057
  134. package/src/components/PieChart/PieChart.tsx +20 -5
  135. package/src/components/RadarChart/RadarAxis.tsx +78 -0
  136. package/src/components/RadarChart/RadarChart.tsx +298 -0
  137. package/src/components/RadarChart/RadarGrid.tsx +64 -0
  138. package/src/components/RadarChart/RadarPolygon.tsx +91 -0
  139. package/src/components/RadarChart/helpers.ts +83 -0
  140. package/src/components/RadarChart/index.tsx +3 -0
  141. package/src/components/Regions/components/Regions.tsx +6 -6
  142. package/src/components/Sankey/components/Sankey.tsx +3 -3
  143. package/src/components/Sankey/sankey.scss +1 -1
  144. package/src/components/SmallMultiples/SmallMultiples.css +5 -5
  145. package/src/components/Sparkline/index.scss +4 -2
  146. package/src/components/WarmingStripes/WarmingStripes.tsx +95 -25
  147. package/src/components/WarmingStripes/WarmingStripesGradientLegend.css +8 -8
  148. package/src/data/initial-state.js +37 -15
  149. package/src/data/legacy-defaults.ts +18 -0
  150. package/src/helpers/abbreviateNumber.ts +24 -17
  151. package/src/helpers/getChartPatternId.ts +17 -0
  152. package/src/helpers/getExcludedData.ts +4 -0
  153. package/src/helpers/getMinMax.ts +16 -2
  154. package/src/helpers/handleChartAriaLabels.ts +19 -19
  155. package/src/helpers/handleLineType.ts +22 -18
  156. package/src/helpers/seriesColumnSettings.ts +114 -0
  157. package/src/helpers/tests/countNumOfTicks.test.ts +77 -0
  158. package/src/helpers/tests/seriesColumnSettings.test.ts +84 -0
  159. package/src/hooks/useProgrammaticTooltip.ts +23 -2
  160. package/src/hooks/useRightAxis.ts +14 -0
  161. package/src/hooks/useScales.ts +99 -56
  162. package/src/hooks/useTooltip.tsx +23 -3
  163. package/src/scss/main.scss +157 -79
  164. package/src/selectors/README.md +68 -0
  165. package/src/store/chart.reducer.ts +2 -0
  166. package/src/test/CdcChart.test.jsx +2 -2
  167. package/src/types/ChartConfig.ts +22 -0
  168. package/src/types/ChartContext.ts +1 -0
  169. package/src/types/Horizon.ts +64 -0
  170. package/tests/fixtures/chart-config-with-metadata.json +29 -0
  171. package/tests/fixtures/data-with-metadata.json +10 -0
  172. package/preview.html +0 -1616
  173. package/src/components/Annotations/components/helpers/index.tsx +0 -46
@@ -0,0 +1 @@
1
+ [{"Week_End":"2026-01-24","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"Very High","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"Low","West_WVAL_Category":"Low","National_WVAL":3.59,"Midwest_WVAL":8.02,"Northeast_WVAL":3.93,"South_WVAL":3.25,"West_WVAL":2.04,"Time_Period":"January 18, 2026 - January 24, 2026","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2026-01-17","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"Very High","Northeast_WVAL_Category":"High","South_WVAL_Category":"Low","West_WVAL_Category":"Very Low","National_WVAL":4.02,"Midwest_WVAL":7.95,"Northeast_WVAL":5.51,"South_WVAL":2.53,"West_WVAL":1.49,"Time_Period":"January 11, 2026 - January 17, 2026","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2026-01-10","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"Very High","Northeast_WVAL_Category":"High","South_WVAL_Category":"Moderate","West_WVAL_Category":"Very Low","National_WVAL":5.11,"Midwest_WVAL":10.16,"Northeast_WVAL":6.79,"South_WVAL":3.43,"West_WVAL":1.89,"Time_Period":"January 04, 2026 - January 10, 2026","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2026-01-03","National_WVAL_Category":"High","Midwest_WVAL_Category":"Very High","Northeast_WVAL_Category":"High","South_WVAL_Category":"Moderate","West_WVAL_Category":"Very Low","National_WVAL":6.08,"Midwest_WVAL":9.33,"Northeast_WVAL":7.52,"South_WVAL":4.64,"West_WVAL":1.92,"Time_Period":"December 28, 2025 - January 03, 2026","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-12-27","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"Very High","Northeast_WVAL_Category":"High","South_WVAL_Category":"Low","West_WVAL_Category":"Very Low","National_WVAL":4.27,"Midwest_WVAL":8.13,"Northeast_WVAL":5.62,"South_WVAL":2.91,"West_WVAL":1.34,"Time_Period":"December 21, 2025 - December 27, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-12-20","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"High","Northeast_WVAL_Category":"High","South_WVAL_Category":"Low","West_WVAL_Category":"Very Low","National_WVAL":3.91,"Midwest_WVAL":6.42,"Northeast_WVAL":5.43,"South_WVAL":2.38,"West_WVAL":1.67,"Time_Period":"December 14, 2025 - December 20, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-12-13","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":2.78,"Midwest_WVAL":4.47,"Northeast_WVAL":3.62,"South_WVAL":1.93,"West_WVAL":1.41,"Time_Period":"December 07, 2025 - December 13, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-12-06","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"Very Low","West_WVAL_Category":"Low","National_WVAL":2.83,"Midwest_WVAL":3.44,"Northeast_WVAL":3.73,"South_WVAL":1.99,"West_WVAL":2.22,"Time_Period":"November 30, 2025 - December 06, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-11-29","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1.88,"Midwest_WVAL":2.44,"Northeast_WVAL":2.18,"South_WVAL":1.35,"West_WVAL":1.58,"Time_Period":"November 23, 2025 - November 29, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-11-22","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1.9,"Midwest_WVAL":2.41,"Northeast_WVAL":2.12,"South_WVAL":1.38,"West_WVAL":1.69,"Time_Period":"November 16, 2025 - November 22, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-11-15","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1.78,"Midwest_WVAL":2.01,"Northeast_WVAL":1.93,"South_WVAL":1.61,"West_WVAL":1.62,"Time_Period":"November 09, 2025 - November 15, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-11-08","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1.78,"Midwest_WVAL":1.78,"Northeast_WVAL":1.78,"South_WVAL":1.55,"West_WVAL":1.98,"Time_Period":"November 02, 2025 - November 08, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-11-01","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1.39,"Midwest_WVAL":1.22,"Northeast_WVAL":1.45,"South_WVAL":1.33,"West_WVAL":1.83,"Time_Period":"October 26, 2025 - November 01, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-10-25","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1.58,"Midwest_WVAL":1.34,"Northeast_WVAL":1.76,"South_WVAL":1.4,"West_WVAL":1.88,"Time_Period":"October 19, 2025 - October 25, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-10-18","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Low","National_WVAL":1.81,"Midwest_WVAL":1.79,"Northeast_WVAL":1.75,"South_WVAL":1.83,"West_WVAL":2.26,"Time_Period":"October 12, 2025 - October 18, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-10-11","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Low","West_WVAL_Category":"Low","National_WVAL":2.29,"Midwest_WVAL":1.81,"Northeast_WVAL":2.3,"South_WVAL":2.27,"West_WVAL":3.15,"Time_Period":"October 05, 2025 - October 11, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-10-04","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Low","West_WVAL_Category":"Moderate","National_WVAL":3.09,"Midwest_WVAL":2.62,"Northeast_WVAL":3.28,"South_WVAL":2.9,"West_WVAL":3.42,"Time_Period":"September 28, 2025 - October 04, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-09-27","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"Moderate","West_WVAL_Category":"Moderate","National_WVAL":3.99,"Midwest_WVAL":3.2,"Northeast_WVAL":4.6,"South_WVAL":3.81,"West_WVAL":4.16,"Time_Period":"September 21, 2025 - September 27, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-09-20","National_WVAL_Category":"High","Midwest_WVAL_Category":"High","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"High","West_WVAL_Category":"High","National_WVAL":5.48,"Midwest_WVAL":5.48,"Northeast_WVAL":5.3,"South_WVAL":5.47,"West_WVAL":6.33,"Time_Period":"September 14, 2025 - September 20, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-09-13","National_WVAL_Category":"High","Midwest_WVAL_Category":"High","Northeast_WVAL_Category":"High","South_WVAL_Category":"Very High","West_WVAL_Category":"Very High","National_WVAL":7.35,"Midwest_WVAL":5.64,"Northeast_WVAL":6.63,"South_WVAL":8.81,"West_WVAL":8.07,"Time_Period":"September 07, 2025 - September 13, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-09-06","National_WVAL_Category":"High","Midwest_WVAL_Category":"High","Northeast_WVAL_Category":"High","South_WVAL_Category":"Very High","West_WVAL_Category":"Very High","National_WVAL":7.34,"Midwest_WVAL":5.71,"Northeast_WVAL":5.46,"South_WVAL":10.27,"West_WVAL":8.98,"Time_Period":"August 31, 2025 - September 06, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-08-30","National_WVAL_Category":"High","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"Very High","West_WVAL_Category":"High","National_WVAL":6,"Midwest_WVAL":4.56,"Northeast_WVAL":4.42,"South_WVAL":8.9,"West_WVAL":7.43,"Time_Period":"August 24, 2025 - August 30, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-08-23","National_WVAL_Category":"High","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"High","West_WVAL_Category":"High","National_WVAL":5.95,"Midwest_WVAL":4.45,"Northeast_WVAL":3.83,"South_WVAL":7.44,"West_WVAL":7.64,"Time_Period":"August 17, 2025 - August 23, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-08-16","National_WVAL_Category":"High","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"High","West_WVAL_Category":"Very High","National_WVAL":5.34,"Midwest_WVAL":4.06,"Northeast_WVAL":4.02,"South_WVAL":6.62,"West_WVAL":8.32,"Time_Period":"August 10, 2025 - August 16, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-08-09","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Moderate","West_WVAL_Category":"High","National_WVAL":4.34,"Midwest_WVAL":3.65,"Northeast_WVAL":3.39,"South_WVAL":5.02,"West_WVAL":5.83,"Time_Period":"August 03, 2025 - August 09, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-08-02","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Moderate","West_WVAL_Category":"High","National_WVAL":3.27,"Midwest_WVAL":2.39,"Northeast_WVAL":2.43,"South_WVAL":4.1,"West_WVAL":5.33,"Time_Period":"July 27, 2025 - August 02, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-07-26","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Low","West_WVAL_Category":"Moderate","National_WVAL":2.86,"Midwest_WVAL":2.41,"Northeast_WVAL":2.27,"South_WVAL":3.3,"West_WVAL":4.06,"Time_Period":"July 20, 2025 - July 26, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-07-19","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Low","West_WVAL_Category":"Low","National_WVAL":2.65,"Midwest_WVAL":1.87,"Northeast_WVAL":2.14,"South_WVAL":3.15,"West_WVAL":3.27,"Time_Period":"July 13, 2025 - July 19, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-07-12","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Moderate","National_WVAL":1.87,"Midwest_WVAL":1.64,"Northeast_WVAL":1.75,"South_WVAL":1.99,"West_WVAL":3.66,"Time_Period":"July 06, 2025 - July 12, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-07-05","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Low","West_WVAL_Category":"Low","National_WVAL":1.87,"Midwest_WVAL":1.47,"Northeast_WVAL":1.37,"South_WVAL":2.28,"West_WVAL":3.22,"Time_Period":"June 29, 2025 - July 05, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-06-28","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Low","West_WVAL_Category":"Moderate","National_WVAL":1.94,"Midwest_WVAL":1.29,"Northeast_WVAL":1.12,"South_WVAL":2.6,"West_WVAL":3.52,"Time_Period":"June 22, 2025 - June 28, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-06-21","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Low","West_WVAL_Category":"Low","National_WVAL":1.83,"Midwest_WVAL":1.23,"Northeast_WVAL":1.52,"South_WVAL":2.15,"West_WVAL":3.18,"Time_Period":"June 15, 2025 - June 21, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-06-14","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Low","National_WVAL":1.88,"Midwest_WVAL":1.33,"Northeast_WVAL":1.88,"South_WVAL":1.87,"West_WVAL":2.88,"Time_Period":"June 08, 2025 - June 14, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-06-07","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Low","West_WVAL_Category":"Low","National_WVAL":1.87,"Midwest_WVAL":1.26,"Northeast_WVAL":1.65,"South_WVAL":2.1,"West_WVAL":3.12,"Time_Period":"June 01, 2025 - June 07, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-05-31","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Low","National_WVAL":1.66,"Midwest_WVAL":1.33,"Northeast_WVAL":1.6,"South_WVAL":1.72,"West_WVAL":2.94,"Time_Period":"May 25, 2025 - May 31, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-05-24","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Low","West_WVAL_Category":"Low","National_WVAL":1.83,"Midwest_WVAL":1.58,"Northeast_WVAL":1.65,"South_WVAL":2.01,"West_WVAL":3.02,"Time_Period":"May 18, 2025 - May 24, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-05-17","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Low","National_WVAL":1.94,"Midwest_WVAL":1.88,"Northeast_WVAL":1.39,"South_WVAL":2,"West_WVAL":2.71,"Time_Period":"May 11, 2025 - May 17, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-05-10","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Low","West_WVAL_Category":"Low","National_WVAL":1.93,"Midwest_WVAL":1.72,"Northeast_WVAL":1.4,"South_WVAL":2.15,"West_WVAL":3.31,"Time_Period":"May 04, 2025 - May 10, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-05-03","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Low","West_WVAL_Category":"Low","National_WVAL":2.3,"Midwest_WVAL":2.02,"Northeast_WVAL":2.06,"South_WVAL":2.54,"West_WVAL":3.37,"Time_Period":"April 27, 2025 - May 03, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-04-26","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Low","West_WVAL_Category":"Low","National_WVAL":3.01,"Midwest_WVAL":1.98,"Northeast_WVAL":3.31,"South_WVAL":3.12,"West_WVAL":2.91,"Time_Period":"April 20, 2025 - April 26, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-04-19","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Low","West_WVAL_Category":"Low","National_WVAL":2.58,"Midwest_WVAL":2.55,"Northeast_WVAL":2.6,"South_WVAL":3.38,"West_WVAL":2.55,"Time_Period":"April 13, 2025 - April 19, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-04-12","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Low","West_WVAL_Category":"Low","National_WVAL":2.6,"Midwest_WVAL":2.4,"Northeast_WVAL":2.66,"South_WVAL":3.02,"West_WVAL":2.55,"Time_Period":"April 06, 2025 - April 12, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-04-05","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Moderate","West_WVAL_Category":"Low","National_WVAL":2.8,"Midwest_WVAL":2.69,"Northeast_WVAL":2.56,"South_WVAL":4.1,"West_WVAL":2.9,"Time_Period":"March 30, 2025 - April 05, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-03-29","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Low","South_WVAL_Category":"High","West_WVAL_Category":"Low","National_WVAL":3.48,"Midwest_WVAL":3.96,"Northeast_WVAL":2.99,"South_WVAL":5.34,"West_WVAL":2.86,"Time_Period":"March 23, 2025 - March 29, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-03-22","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Moderate","West_WVAL_Category":"Low","National_WVAL":2.78,"Midwest_WVAL":3.27,"Northeast_WVAL":2.29,"South_WVAL":5.26,"West_WVAL":2.03,"Time_Period":"March 16, 2025 - March 22, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-03-15","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"High","West_WVAL_Category":"Low","National_WVAL":4.23,"Midwest_WVAL":4.79,"Northeast_WVAL":3.68,"South_WVAL":6.72,"West_WVAL":2.69,"Time_Period":"March 09, 2025 - March 15, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-03-08","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Low","South_WVAL_Category":"High","West_WVAL_Category":"Low","National_WVAL":3.68,"Midwest_WVAL":4.01,"Northeast_WVAL":3.35,"South_WVAL":5.66,"West_WVAL":2.98,"Time_Period":"March 02, 2025 - March 08, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-03-01","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"High","West_WVAL_Category":"Moderate","National_WVAL":4.34,"Midwest_WVAL":4.52,"Northeast_WVAL":4,"South_WVAL":5.8,"West_WVAL":4.15,"Time_Period":"February 23, 2025 - March 01, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-02-22","National_WVAL_Category":"High","Midwest_WVAL_Category":"High","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"High","West_WVAL_Category":"Moderate","National_WVAL":5.38,"Midwest_WVAL":6.28,"Northeast_WVAL":5.07,"South_WVAL":5.69,"West_WVAL":3.89,"Time_Period":"February 16, 2025 - February 22, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-02-15","National_WVAL_Category":"High","Midwest_WVAL_Category":"Very High","Northeast_WVAL_Category":"High","South_WVAL_Category":"High","West_WVAL_Category":"Moderate","National_WVAL":6.7,"Midwest_WVAL":8.86,"Northeast_WVAL":7.02,"South_WVAL":6.38,"West_WVAL":5.14,"Time_Period":"February 09, 2025 - February 15, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-02-08","National_WVAL_Category":"Very High","Midwest_WVAL_Category":"Very High","Northeast_WVAL_Category":"Very High","South_WVAL_Category":"Very High","West_WVAL_Category":"High","National_WVAL":8.11,"Midwest_WVAL":8.62,"Northeast_WVAL":8.26,"South_WVAL":7.95,"West_WVAL":5.52,"Time_Period":"February 02, 2025 - February 08, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-02-01","National_WVAL_Category":"High","Midwest_WVAL_Category":"Very High","Northeast_WVAL_Category":"Very High","South_WVAL_Category":"High","West_WVAL_Category":"Moderate","National_WVAL":7.41,"Midwest_WVAL":8.71,"Northeast_WVAL":9.15,"South_WVAL":6.11,"West_WVAL":4.91,"Time_Period":"January 26, 2025 - February 01, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-01-25","National_WVAL_Category":"High","Midwest_WVAL_Category":"Very High","Northeast_WVAL_Category":"Very High","South_WVAL_Category":"High","West_WVAL_Category":"Moderate","National_WVAL":7.15,"Midwest_WVAL":8.05,"Northeast_WVAL":10.02,"South_WVAL":6.26,"West_WVAL":3.91,"Time_Period":"January 19, 2025 - January 25, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-01-18","National_WVAL_Category":"High","Midwest_WVAL_Category":"Very High","Northeast_WVAL_Category":"Very High","South_WVAL_Category":"High","West_WVAL_Category":"Moderate","National_WVAL":7.13,"Midwest_WVAL":8.02,"Northeast_WVAL":9.27,"South_WVAL":6.25,"West_WVAL":4.82,"Time_Period":"January 12, 2025 - January 18, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-01-11","National_WVAL_Category":"Very High","Midwest_WVAL_Category":"Very High","Northeast_WVAL_Category":"Very High","South_WVAL_Category":"High","West_WVAL_Category":"High","National_WVAL":8.36,"Midwest_WVAL":10.58,"Northeast_WVAL":10.3,"South_WVAL":6.41,"West_WVAL":5.95,"Time_Period":"January 05, 2025 - January 11, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2025-01-04","National_WVAL_Category":"Very High","Midwest_WVAL_Category":"Very High","Northeast_WVAL_Category":"Very High","South_WVAL_Category":"High","West_WVAL_Category":"High","National_WVAL":8.49,"Midwest_WVAL":10.5,"Northeast_WVAL":12.45,"South_WVAL":6.44,"West_WVAL":6.49,"Time_Period":"December 29, 2024 - January 04, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-12-28","National_WVAL_Category":"Very High","Midwest_WVAL_Category":"Very High","Northeast_WVAL_Category":"Very High","South_WVAL_Category":"High","West_WVAL_Category":"Moderate","National_WVAL":8.52,"Midwest_WVAL":11.39,"Northeast_WVAL":13.35,"South_WVAL":5.65,"West_WVAL":3.94,"Time_Period":"December 22, 2024 - December 28, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-12-21","National_WVAL_Category":"High","Midwest_WVAL_Category":"High","Northeast_WVAL_Category":"Very High","South_WVAL_Category":"High","West_WVAL_Category":"Very High","National_WVAL":7.65,"Midwest_WVAL":7.4,"Northeast_WVAL":7.91,"South_WVAL":5.6,"West_WVAL":8.86,"Time_Period":"December 15, 2024 - December 21, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-12-14","National_WVAL_Category":"High","Midwest_WVAL_Category":"High","Northeast_WVAL_Category":"High","South_WVAL_Category":"Moderate","West_WVAL_Category":"High","National_WVAL":6.22,"Midwest_WVAL":7.39,"Northeast_WVAL":6.73,"South_WVAL":4.74,"West_WVAL":5.71,"Time_Period":"December 08, 2024 - December 14, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-12-07","National_WVAL_Category":"High","Midwest_WVAL_Category":"High","Northeast_WVAL_Category":"High","South_WVAL_Category":"Moderate","West_WVAL_Category":"High","National_WVAL":6.15,"Midwest_WVAL":6.25,"Northeast_WVAL":6.05,"South_WVAL":3.87,"West_WVAL":6.52,"Time_Period":"December 01, 2024 - December 07, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-11-30","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"Low","West_WVAL_Category":"Low","National_WVAL":3.49,"Midwest_WVAL":3.77,"Northeast_WVAL":4.4,"South_WVAL":2.53,"West_WVAL":3.21,"Time_Period":"November 24, 2024 - November 30, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-11-23","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Low","West_WVAL_Category":"Moderate","National_WVAL":3.06,"Midwest_WVAL":2.83,"Northeast_WVAL":3.3,"South_WVAL":2.31,"West_WVAL":4.21,"Time_Period":"November 17, 2024 - November 23, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-11-16","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Moderate","National_WVAL":3.23,"Midwest_WVAL":3.22,"Northeast_WVAL":3.25,"South_WVAL":1.88,"West_WVAL":4.91,"Time_Period":"November 10, 2024 - November 16, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-11-09","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Moderate","National_WVAL":2.7,"Midwest_WVAL":2.55,"Northeast_WVAL":2.85,"South_WVAL":1.84,"West_WVAL":4.33,"Time_Period":"November 03, 2024 - November 09, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-11-02","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Low","West_WVAL_Category":"Low","National_WVAL":3.15,"Midwest_WVAL":3.3,"Northeast_WVAL":3.25,"South_WVAL":2.38,"West_WVAL":3.05,"Time_Period":"October 27, 2024 - November 02, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-10-26","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"Low","West_WVAL_Category":"Moderate","National_WVAL":3.84,"Midwest_WVAL":4.19,"Northeast_WVAL":4.28,"South_WVAL":2.94,"West_WVAL":3.5,"Time_Period":"October 20, 2024 - October 26, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-10-19","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"Low","West_WVAL_Category":"Moderate","National_WVAL":3.92,"Midwest_WVAL":3.28,"Northeast_WVAL":4.56,"South_WVAL":3.05,"West_WVAL":5.02,"Time_Period":"October 13, 2024 - October 19, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-10-12","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"High","South_WVAL_Category":"Moderate","West_WVAL_Category":"Moderate","National_WVAL":4.04,"Midwest_WVAL":3.71,"Northeast_WVAL":5.58,"South_WVAL":3.42,"West_WVAL":4.37,"Time_Period":"October 06, 2024 - October 12, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-10-05","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"High","South_WVAL_Category":"Moderate","West_WVAL_Category":"High","National_WVAL":5.01,"Midwest_WVAL":4.18,"Northeast_WVAL":7.09,"South_WVAL":3.52,"West_WVAL":5.84,"Time_Period":"September 29, 2024 - October 05, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-09-28","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Very High","South_WVAL_Category":"Moderate","West_WVAL_Category":"Moderate","National_WVAL":5.19,"Midwest_WVAL":5.16,"Northeast_WVAL":8.26,"South_WVAL":4.83,"West_WVAL":5.22,"Time_Period":"September 22, 2024 - September 28, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-09-21","National_WVAL_Category":"High","Midwest_WVAL_Category":"High","Northeast_WVAL_Category":"Very High","South_WVAL_Category":"High","West_WVAL_Category":"High","National_WVAL":7.29,"Midwest_WVAL":7.15,"Northeast_WVAL":9.18,"South_WVAL":7.44,"West_WVAL":6.33,"Time_Period":"September 15, 2024 - September 21, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-09-14","National_WVAL_Category":"Very High","Midwest_WVAL_Category":"Very High","Northeast_WVAL_Category":"Very High","South_WVAL_Category":"High","West_WVAL_Category":"Very High","National_WVAL":8.6,"Midwest_WVAL":8.64,"Northeast_WVAL":8.56,"South_WVAL":7.76,"West_WVAL":9.62,"Time_Period":"September 08, 2024 - September 14, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-09-07","National_WVAL_Category":"Very High","Midwest_WVAL_Category":"Very High","Northeast_WVAL_Category":"Very High","South_WVAL_Category":"Very High","West_WVAL_Category":"Very High","National_WVAL":10.26,"Midwest_WVAL":10.19,"Northeast_WVAL":11.23,"South_WVAL":9.81,"West_WVAL":10.32,"Time_Period":"September 01, 2024 - September 07, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-08-31","National_WVAL_Category":"Very High","Midwest_WVAL_Category":"Very High","Northeast_WVAL_Category":"Very High","South_WVAL_Category":"Very High","West_WVAL_Category":"Very High","National_WVAL":10.34,"Midwest_WVAL":9.87,"Northeast_WVAL":8.06,"South_WVAL":11.02,"West_WVAL":10.8,"Time_Period":"August 25, 2024 - August 31, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-08-24","National_WVAL_Category":"Very High","Midwest_WVAL_Category":"Very High","Northeast_WVAL_Category":"High","South_WVAL_Category":"Very High","West_WVAL_Category":"Very High","National_WVAL":11.01,"Midwest_WVAL":11.5,"Northeast_WVAL":7.73,"South_WVAL":11.79,"West_WVAL":10.51,"Time_Period":"August 18, 2024 - August 24, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-08-17","National_WVAL_Category":"Very High","Midwest_WVAL_Category":"Very High","Northeast_WVAL_Category":"Very High","South_WVAL_Category":"Very High","West_WVAL_Category":"Very High","National_WVAL":11.72,"Midwest_WVAL":10.71,"Northeast_WVAL":9.27,"South_WVAL":12.73,"West_WVAL":12.77,"Time_Period":"August 11, 2024 - August 17, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-08-10","National_WVAL_Category":"Very High","Midwest_WVAL_Category":"Very High","Northeast_WVAL_Category":"Very High","South_WVAL_Category":"Very High","West_WVAL_Category":"Very High","National_WVAL":10.93,"Midwest_WVAL":8.64,"Northeast_WVAL":7.9,"South_WVAL":13.22,"West_WVAL":13.75,"Time_Period":"August 04, 2024 - August 10, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-08-03","National_WVAL_Category":"Very High","Midwest_WVAL_Category":"Very High","Northeast_WVAL_Category":"Very High","South_WVAL_Category":"Very High","West_WVAL_Category":"Very High","National_WVAL":10.72,"Midwest_WVAL":8.96,"Northeast_WVAL":9.1,"South_WVAL":12.35,"West_WVAL":13.28,"Time_Period":"July 28, 2024 - August 03, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-07-27","National_WVAL_Category":"Very High","Midwest_WVAL_Category":"High","Northeast_WVAL_Category":"High","South_WVAL_Category":"Very High","West_WVAL_Category":"Very High","National_WVAL":8.82,"Midwest_WVAL":7.74,"Northeast_WVAL":6.88,"South_WVAL":9.9,"West_WVAL":12.04,"Time_Period":"July 21, 2024 - July 27, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-07-20","National_WVAL_Category":"Very High","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"High","South_WVAL_Category":"Very High","West_WVAL_Category":"Very High","National_WVAL":8.68,"Midwest_WVAL":5.27,"Northeast_WVAL":7.37,"South_WVAL":10,"West_WVAL":12.11,"Time_Period":"July 14, 2024 - July 20, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-07-13","National_WVAL_Category":"High","Midwest_WVAL_Category":"High","Northeast_WVAL_Category":"High","South_WVAL_Category":"High","West_WVAL_Category":"Very High","National_WVAL":7.18,"Midwest_WVAL":5.68,"Northeast_WVAL":7.05,"South_WVAL":7.31,"West_WVAL":11.86,"Time_Period":"July 07, 2024 - July 13, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-07-06","National_WVAL_Category":"High","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"High","South_WVAL_Category":"High","West_WVAL_Category":"Very High","National_WVAL":6.1,"Midwest_WVAL":4.16,"Northeast_WVAL":6.17,"South_WVAL":6.03,"West_WVAL":8.19,"Time_Period":"June 30, 2024 - July 06, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-06-29","National_WVAL_Category":"High","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"High","West_WVAL_Category":"Very High","National_WVAL":5.39,"Midwest_WVAL":3.47,"Northeast_WVAL":5.28,"South_WVAL":5.5,"West_WVAL":8.5,"Time_Period":"June 23, 2024 - June 29, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-06-22","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"Moderate","West_WVAL_Category":"High","National_WVAL":4.19,"Midwest_WVAL":2.57,"Northeast_WVAL":3.71,"South_WVAL":4.68,"West_WVAL":6.6,"Time_Period":"June 16, 2024 - June 22, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-06-15","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Moderate","West_WVAL_Category":"Moderate","National_WVAL":3.36,"Midwest_WVAL":2.52,"Northeast_WVAL":3.31,"South_WVAL":3.41,"West_WVAL":4.2,"Time_Period":"June 09, 2024 - June 15, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-06-08","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Low","West_WVAL_Category":"High","National_WVAL":2.6,"Midwest_WVAL":2.04,"Northeast_WVAL":3.16,"South_WVAL":2.05,"West_WVAL":5.66,"Time_Period":"June 02, 2024 - June 08, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-06-01","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Low","West_WVAL_Category":"Moderate","National_WVAL":2.2,"Midwest_WVAL":2.12,"Northeast_WVAL":2.13,"South_WVAL":2.26,"West_WVAL":4.94,"Time_Period":"May 26, 2024 - June 01, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-05-25","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Moderate","National_WVAL":2.05,"Midwest_WVAL":1.61,"Northeast_WVAL":2.35,"South_WVAL":1.75,"West_WVAL":3.73,"Time_Period":"May 19, 2024 - May 25, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-05-18","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Low","National_WVAL":2.07,"Midwest_WVAL":1.36,"Northeast_WVAL":2.41,"South_WVAL":1.74,"West_WVAL":3.35,"Time_Period":"May 12, 2024 - May 18, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-05-11","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Low","National_WVAL":1.51,"Midwest_WVAL":1.28,"Northeast_WVAL":1.73,"South_WVAL":1.28,"West_WVAL":2.94,"Time_Period":"May 05, 2024 - May 11, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-05-04","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1.61,"Midwest_WVAL":1.43,"Northeast_WVAL":1.45,"South_WVAL":1.76,"West_WVAL":1.97,"Time_Period":"April 28, 2024 - May 04, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-04-27","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Low","National_WVAL":2.02,"Midwest_WVAL":2.04,"Northeast_WVAL":1.15,"South_WVAL":2,"West_WVAL":2.26,"Time_Period":"April 21, 2024 - April 27, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-04-20","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Low","National_WVAL":2.02,"Midwest_WVAL":2.08,"Northeast_WVAL":1.01,"South_WVAL":1.95,"West_WVAL":2.34,"Time_Period":"April 14, 2024 - April 20, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-04-13","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Low","West_WVAL_Category":"Low","National_WVAL":2.22,"Midwest_WVAL":2.37,"Northeast_WVAL":1.22,"South_WVAL":2.56,"West_WVAL":2.07,"Time_Period":"April 07, 2024 - April 13, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-04-06","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Low","West_WVAL_Category":"Low","National_WVAL":2.29,"Midwest_WVAL":2.08,"Northeast_WVAL":1.29,"South_WVAL":3.14,"West_WVAL":2.5,"Time_Period":"March 31, 2024 - April 06, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-03-30","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Low","West_WVAL_Category":"Low","National_WVAL":2.59,"Midwest_WVAL":3.51,"Northeast_WVAL":1.88,"South_WVAL":3.14,"West_WVAL":2.05,"Time_Period":"March 24, 2024 - March 30, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-03-23","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Moderate","West_WVAL_Category":"Low","National_WVAL":3.19,"Midwest_WVAL":4.18,"Northeast_WVAL":2.19,"South_WVAL":3.59,"West_WVAL":2.8,"Time_Period":"March 17, 2024 - March 23, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-03-16","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Moderate","West_WVAL_Category":"Low","National_WVAL":3.34,"Midwest_WVAL":3.67,"Northeast_WVAL":1.83,"South_WVAL":4.36,"West_WVAL":3.02,"Time_Period":"March 10, 2024 - March 16, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-03-09","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Low","South_WVAL_Category":"High","West_WVAL_Category":"Moderate","National_WVAL":4.36,"Midwest_WVAL":5.15,"Northeast_WVAL":2.93,"South_WVAL":5.68,"West_WVAL":3.56,"Time_Period":"March 03, 2024 - March 09, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-03-02","National_WVAL_Category":"High","Midwest_WVAL_Category":"Very High","Northeast_WVAL_Category":"High","South_WVAL_Category":"Very High","West_WVAL_Category":"Moderate","National_WVAL":6.72,"Midwest_WVAL":7.84,"Northeast_WVAL":5.61,"South_WVAL":7.99,"West_WVAL":3.98,"Time_Period":"February 25, 2024 - March 02, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-02-24","National_WVAL_Category":"High","Midwest_WVAL_Category":"Very High","Northeast_WVAL_Category":"High","South_WVAL_Category":"Very High","West_WVAL_Category":"High","National_WVAL":6.93,"Midwest_WVAL":7.95,"Northeast_WVAL":5.91,"South_WVAL":8.89,"West_WVAL":5.45,"Time_Period":"February 18, 2024 - February 24, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-02-17","National_WVAL_Category":"Very High","Midwest_WVAL_Category":"Very High","Northeast_WVAL_Category":"High","South_WVAL_Category":"Very High","West_WVAL_Category":"High","National_WVAL":7.9,"Midwest_WVAL":9.36,"Northeast_WVAL":6.45,"South_WVAL":9.55,"West_WVAL":6.33,"Time_Period":"February 11, 2024 - February 17, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-02-10","National_WVAL_Category":"High","Midwest_WVAL_Category":"Very High","Northeast_WVAL_Category":"High","South_WVAL_Category":"Very High","West_WVAL_Category":"High","National_WVAL":7.79,"Midwest_WVAL":8.12,"Northeast_WVAL":7.47,"South_WVAL":11.72,"West_WVAL":6.64,"Time_Period":"February 04, 2024 - February 10, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2024-02-03","National_WVAL_Category":"High","Midwest_WVAL_Category":"High","Northeast_WVAL_Category":"High","South_WVAL_Category":"Very High","West_WVAL_Category":"High","National_WVAL":7.49,"Midwest_WVAL":7.73,"Northeast_WVAL":6.25,"South_WVAL":8.74,"West_WVAL":7.24,"Time_Period":"January 28, 2024 - February 03, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"COVID-19"},{"Week_End":"2026-01-24","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"Low","West_WVAL_Category":"Moderate","National_WVAL":6.12,"Midwest_WVAL":5.42,"Northeast_WVAL":6.79,"South_WVAL":5.47,"West_WVAL":6.78,"Time_Period":"January 18, 2026 - January 24, 2026","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2026-01-17","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"Low","West_WVAL_Category":"Low","National_WVAL":7.67,"Midwest_WVAL":9.91,"Northeast_WVAL":10.01,"South_WVAL":5.13,"West_WVAL":5.44,"Time_Period":"January 11, 2026 - January 17, 2026","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2026-01-10","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"High","Northeast_WVAL_Category":"High","South_WVAL_Category":"Moderate","West_WVAL_Category":"Moderate","National_WVAL":10.79,"Midwest_WVAL":12.22,"Northeast_WVAL":13.15,"South_WVAL":9.37,"West_WVAL":8.5,"Time_Period":"January 04, 2026 - January 10, 2026","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2026-01-03","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"High","Northeast_WVAL_Category":"High","South_WVAL_Category":"Moderate","West_WVAL_Category":"Moderate","National_WVAL":11.19,"Midwest_WVAL":12.06,"Northeast_WVAL":13.78,"South_WVAL":10.32,"West_WVAL":8.81,"Time_Period":"December 28, 2025 - January 03, 2026","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-12-27","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"High","Northeast_WVAL_Category":"High","South_WVAL_Category":"Moderate","West_WVAL_Category":"Moderate","National_WVAL":10.65,"Midwest_WVAL":11.36,"Northeast_WVAL":13.84,"South_WVAL":9.94,"West_WVAL":6.99,"Time_Period":"December 21, 2025 - December 27, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-12-20","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"Moderate","West_WVAL_Category":"Moderate","National_WVAL":6.79,"Midwest_WVAL":5.32,"Northeast_WVAL":11.06,"South_WVAL":7.34,"West_WVAL":6.24,"Time_Period":"December 14, 2025 - December 20, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-12-13","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Low","West_WVAL_Category":"Low","National_WVAL":3.26,"Midwest_WVAL":1.42,"Northeast_WVAL":5.6,"South_WVAL":3.66,"West_WVAL":2.87,"Time_Period":"December 07, 2025 - December 13, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-12-06","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":2.04,"Midwest_WVAL":1,"Northeast_WVAL":3.16,"South_WVAL":1.73,"West_WVAL":2.35,"Time_Period":"November 30, 2025 - December 06, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-11-29","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1.4,"Midwest_WVAL":1,"Northeast_WVAL":1.8,"South_WVAL":1,"West_WVAL":1.91,"Time_Period":"November 23, 2025 - November 29, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-11-22","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"November 16, 2025 - November 22, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-11-15","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"November 09, 2025 - November 15, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-11-08","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"November 02, 2025 - November 08, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-11-01","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"October 26, 2025 - November 01, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-10-25","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"October 19, 2025 - October 25, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-10-18","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"October 12, 2025 - October 18, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-10-11","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"October 05, 2025 - October 11, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-10-04","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"September 28, 2025 - October 04, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-09-27","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"September 21, 2025 - September 27, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-09-20","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"September 14, 2025 - September 20, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-09-13","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"September 07, 2025 - September 13, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-09-06","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"August 31, 2025 - September 06, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-08-30","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"August 24, 2025 - August 30, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-08-23","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"August 17, 2025 - August 23, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-08-16","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"August 10, 2025 - August 16, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-08-09","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"August 03, 2025 - August 09, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-08-02","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"July 27, 2025 - August 02, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-07-26","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"July 20, 2025 - July 26, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-07-19","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"July 13, 2025 - July 19, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-07-12","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"July 06, 2025 - July 12, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-07-05","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"June 29, 2025 - July 05, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-06-28","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"June 22, 2025 - June 28, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-06-21","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"June 15, 2025 - June 21, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-06-14","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"June 08, 2025 - June 14, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-06-07","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"June 01, 2025 - June 07, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-05-31","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"May 25, 2025 - May 31, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-05-24","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"May 18, 2025 - May 24, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-05-17","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"May 11, 2025 - May 17, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-05-10","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"May 04, 2025 - May 10, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-05-03","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"April 27, 2025 - May 03, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-04-26","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"April 20, 2025 - April 26, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-04-19","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1.35,"South_WVAL":1,"West_WVAL":1,"Time_Period":"April 13, 2025 - April 19, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-04-12","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1.08,"Midwest_WVAL":1,"Northeast_WVAL":1.16,"South_WVAL":1,"West_WVAL":1.2,"Time_Period":"April 06, 2025 - April 12, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-04-05","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1.57,"Midwest_WVAL":1.64,"Northeast_WVAL":1.93,"South_WVAL":1,"West_WVAL":1.51,"Time_Period":"March 30, 2025 - April 05, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-03-29","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1.55,"Midwest_WVAL":1.47,"Northeast_WVAL":2.6,"South_WVAL":1.62,"West_WVAL":1.28,"Time_Period":"March 23, 2025 - March 29, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-03-22","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Low","West_WVAL_Category":"Very Low","National_WVAL":3.4,"Midwest_WVAL":3.56,"Northeast_WVAL":3.79,"South_WVAL":3.24,"West_WVAL":2.19,"Time_Period":"March 16, 2025 - March 22, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-03-15","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"Low","West_WVAL_Category":"Low","National_WVAL":5.22,"Midwest_WVAL":5.89,"Northeast_WVAL":9.04,"South_WVAL":4.54,"West_WVAL":3.22,"Time_Period":"March 09, 2025 - March 15, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-03-08","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"Moderate","West_WVAL_Category":"Moderate","National_WVAL":7.65,"Midwest_WVAL":9.1,"Northeast_WVAL":7.85,"South_WVAL":7.45,"West_WVAL":7.18,"Time_Period":"March 02, 2025 - March 08, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-03-01","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"High","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"Moderate","West_WVAL_Category":"Moderate","National_WVAL":9.8,"Midwest_WVAL":12.66,"Northeast_WVAL":10.74,"South_WVAL":7.79,"West_WVAL":8.87,"Time_Period":"February 23, 2025 - March 01, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-02-22","National_WVAL_Category":"High","Midwest_WVAL_Category":"High","Northeast_WVAL_Category":"High","South_WVAL_Category":"Moderate","West_WVAL_Category":"High","National_WVAL":13.51,"Midwest_WVAL":16.37,"Northeast_WVAL":14.01,"South_WVAL":9.84,"West_WVAL":13.02,"Time_Period":"February 16, 2025 - February 22, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-02-15","National_WVAL_Category":"High","Midwest_WVAL_Category":"Very High","Northeast_WVAL_Category":"Very High","South_WVAL_Category":"High","West_WVAL_Category":"High","National_WVAL":17.22,"Midwest_WVAL":20.24,"Northeast_WVAL":19.82,"South_WVAL":14.21,"West_WVAL":14.62,"Time_Period":"February 09, 2025 - February 15, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-02-08","National_WVAL_Category":"Very High","Midwest_WVAL_Category":"Very High","Northeast_WVAL_Category":"Very High","South_WVAL_Category":"Very High","West_WVAL_Category":"High","National_WVAL":20.59,"Midwest_WVAL":23.48,"Northeast_WVAL":21.5,"South_WVAL":19.69,"West_WVAL":13.79,"Time_Period":"February 02, 2025 - February 08, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-02-01","National_WVAL_Category":"Very High","Midwest_WVAL_Category":"Very High","Northeast_WVAL_Category":"Very High","South_WVAL_Category":"High","West_WVAL_Category":"High","National_WVAL":18.41,"Midwest_WVAL":25.41,"Northeast_WVAL":20.72,"South_WVAL":16.1,"West_WVAL":15.78,"Time_Period":"January 26, 2025 - February 01, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-01-25","National_WVAL_Category":"Very High","Midwest_WVAL_Category":"Very High","Northeast_WVAL_Category":"Very High","South_WVAL_Category":"Very High","West_WVAL_Category":"High","National_WVAL":19.56,"Midwest_WVAL":19.47,"Northeast_WVAL":20.22,"South_WVAL":19.64,"West_WVAL":14.61,"Time_Period":"January 19, 2025 - January 25, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-01-18","National_WVAL_Category":"High","Midwest_WVAL_Category":"High","Northeast_WVAL_Category":"High","South_WVAL_Category":"Moderate","West_WVAL_Category":"High","National_WVAL":11.9,"Midwest_WVAL":13.35,"Northeast_WVAL":11.26,"South_WVAL":10.45,"West_WVAL":12.54,"Time_Period":"January 12, 2025 - January 18, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-01-11","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"Moderate","West_WVAL_Category":"High","National_WVAL":10.35,"Midwest_WVAL":8.92,"Northeast_WVAL":10,"South_WVAL":10.7,"West_WVAL":16.57,"Time_Period":"January 05, 2025 - January 11, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2025-01-04","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"High","South_WVAL_Category":"Moderate","West_WVAL_Category":"High","National_WVAL":10.55,"Midwest_WVAL":7.35,"Northeast_WVAL":11.31,"South_WVAL":9.78,"West_WVAL":17.43,"Time_Period":"December 29, 2024 - January 04, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-12-28","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"Moderate","West_WVAL_Category":"High","National_WVAL":7.85,"Midwest_WVAL":6.56,"Northeast_WVAL":7.91,"South_WVAL":7.8,"West_WVAL":14.99,"Time_Period":"December 22, 2024 - December 28, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-12-21","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Low","West_WVAL_Category":"Moderate","National_WVAL":4.32,"Midwest_WVAL":3.77,"Northeast_WVAL":4.38,"South_WVAL":4.26,"West_WVAL":10.53,"Time_Period":"December 15, 2024 - December 21, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-12-14","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Low","National_WVAL":2.17,"Midwest_WVAL":2.14,"Northeast_WVAL":2.01,"South_WVAL":2.21,"West_WVAL":6.1,"Time_Period":"December 08, 2024 - December 14, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-12-07","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Low","National_WVAL":1.62,"Midwest_WVAL":1.58,"Northeast_WVAL":1.65,"South_WVAL":1.4,"West_WVAL":4.66,"Time_Period":"December 01, 2024 - December 07, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-11-30","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1.71,"Time_Period":"November 24, 2024 - November 30, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-11-23","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1.42,"Time_Period":"November 17, 2024 - November 23, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-11-16","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1.63,"Time_Period":"November 10, 2024 - November 16, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-11-09","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1.09,"Time_Period":"November 03, 2024 - November 09, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-11-02","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"October 27, 2024 - November 02, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-10-26","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1.01,"Time_Period":"October 20, 2024 - October 26, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-10-19","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"October 13, 2024 - October 19, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-10-12","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"October 06, 2024 - October 12, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-10-05","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"September 29, 2024 - October 05, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-09-28","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"September 22, 2024 - September 28, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-09-21","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"September 15, 2024 - September 21, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-09-14","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"September 08, 2024 - September 14, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-09-07","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"September 01, 2024 - September 07, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-08-31","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"August 25, 2024 - August 31, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-08-24","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"August 18, 2024 - August 24, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-08-17","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1.11,"Time_Period":"August 11, 2024 - August 17, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-08-10","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1.28,"Time_Period":"August 04, 2024 - August 10, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-08-03","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"July 28, 2024 - August 03, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-07-27","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1.42,"Time_Period":"July 21, 2024 - July 27, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-07-20","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1.17,"Time_Period":"July 14, 2024 - July 20, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-07-13","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1.72,"Time_Period":"July 07, 2024 - July 13, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-07-06","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1.27,"Time_Period":"June 30, 2024 - July 06, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-06-29","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1.59,"Time_Period":"June 23, 2024 - June 29, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-06-22","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1.7,"Time_Period":"June 16, 2024 - June 22, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-06-15","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1.71,"Time_Period":"June 09, 2024 - June 15, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-06-08","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1.65,"Time_Period":"June 02, 2024 - June 08, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-06-01","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1.8,"Time_Period":"May 26, 2024 - June 01, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-05-25","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1.35,"Midwest_WVAL":1.55,"Northeast_WVAL":1.15,"South_WVAL":1,"West_WVAL":1.87,"Time_Period":"May 19, 2024 - May 25, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-05-18","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1.75,"Midwest_WVAL":2.04,"Northeast_WVAL":1.56,"South_WVAL":1,"West_WVAL":1.94,"Time_Period":"May 12, 2024 - May 18, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-05-11","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Low","National_WVAL":1.53,"Midwest_WVAL":1.5,"Northeast_WVAL":1.55,"South_WVAL":1,"West_WVAL":2.93,"Time_Period":"May 05, 2024 - May 11, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-05-04","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":2.07,"Midwest_WVAL":2.87,"Northeast_WVAL":1.54,"South_WVAL":1,"West_WVAL":2.6,"Time_Period":"April 28, 2024 - May 04, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-04-27","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Low","National_WVAL":2.02,"Midwest_WVAL":2.27,"Northeast_WVAL":1.77,"South_WVAL":1.69,"West_WVAL":2.79,"Time_Period":"April 21, 2024 - April 27, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-04-20","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":2.05,"Midwest_WVAL":2.35,"Northeast_WVAL":1.75,"South_WVAL":1.24,"West_WVAL":2.42,"Time_Period":"April 14, 2024 - April 20, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-04-13","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Low","National_WVAL":2.92,"Midwest_WVAL":3.16,"Northeast_WVAL":2.91,"South_WVAL":2.05,"West_WVAL":2.92,"Time_Period":"April 07, 2024 - April 13, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-04-06","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":2.72,"Midwest_WVAL":4.82,"Northeast_WVAL":3.15,"South_WVAL":2.28,"West_WVAL":2.23,"Time_Period":"March 31, 2024 - April 06, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-03-30","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":3.42,"Midwest_WVAL":5.66,"Northeast_WVAL":4.78,"South_WVAL":2.05,"West_WVAL":1.97,"Time_Period":"March 24, 2024 - March 30, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-03-23","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":3.33,"Midwest_WVAL":4.13,"Northeast_WVAL":4.49,"South_WVAL":2.13,"West_WVAL":2.54,"Time_Period":"March 17, 2024 - March 23, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-03-16","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":3.16,"Midwest_WVAL":5.79,"Northeast_WVAL":3.97,"South_WVAL":2.17,"West_WVAL":2.35,"Time_Period":"March 10, 2024 - March 16, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-03-09","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Low","West_WVAL_Category":"Low","National_WVAL":4.58,"Midwest_WVAL":6.61,"Northeast_WVAL":5.92,"South_WVAL":3.24,"West_WVAL":2.96,"Time_Period":"March 03, 2024 - March 09, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-03-02","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"Low","West_WVAL_Category":"Very Low","National_WVAL":5.84,"Midwest_WVAL":7.78,"Northeast_WVAL":8.15,"South_WVAL":3.91,"West_WVAL":2.65,"Time_Period":"February 25, 2024 - March 02, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-02-24","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"Low","West_WVAL_Category":"Low","National_WVAL":6.11,"Midwest_WVAL":8.2,"Northeast_WVAL":8.82,"South_WVAL":4.01,"West_WVAL":3.08,"Time_Period":"February 18, 2024 - February 24, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-02-17","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"Low","West_WVAL_Category":"Low","National_WVAL":6.47,"Midwest_WVAL":8.21,"Northeast_WVAL":8.87,"South_WVAL":4.73,"West_WVAL":4.05,"Time_Period":"February 11, 2024 - February 17, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-02-10","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"Moderate","West_WVAL_Category":"Low","National_WVAL":6.94,"Midwest_WVAL":7.63,"Northeast_WVAL":8.5,"South_WVAL":6.26,"West_WVAL":4.08,"Time_Period":"February 04, 2024 - February 10, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2024-02-03","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"Low","West_WVAL_Category":"Low","National_WVAL":6.33,"Midwest_WVAL":6.84,"Northeast_WVAL":6.77,"South_WVAL":5.89,"West_WVAL":5.27,"Time_Period":"January 28, 2024 - February 03, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"Influenza A"},{"Week_End":"2026-01-24","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"Moderate","West_WVAL_Category":"Low","National_WVAL":4.58,"Midwest_WVAL":3.08,"Northeast_WVAL":5.34,"South_WVAL":6.55,"West_WVAL":3.82,"Time_Period":"January 18, 2026 - January 24, 2026","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2026-01-17","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"Moderate","West_WVAL_Category":"Low","National_WVAL":4.74,"Midwest_WVAL":4.21,"Northeast_WVAL":5.28,"South_WVAL":6.98,"West_WVAL":3.5,"Time_Period":"January 11, 2026 - January 17, 2026","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2026-01-10","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Moderate","West_WVAL_Category":"Low","National_WVAL":3.7,"Midwest_WVAL":3.67,"Northeast_WVAL":3.73,"South_WVAL":7.59,"West_WVAL":2.92,"Time_Period":"January 04, 2026 - January 10, 2026","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2026-01-03","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Moderate","West_WVAL_Category":"Very Low","National_WVAL":1.87,"Midwest_WVAL":1,"Northeast_WVAL":2.41,"South_WVAL":6.17,"West_WVAL":1.32,"Time_Period":"December 28, 2025 - January 03, 2026","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-12-27","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Low","West_WVAL_Category":"Very Low","National_WVAL":1.56,"Midwest_WVAL":1,"Northeast_WVAL":1.82,"South_WVAL":4.92,"West_WVAL":1.3,"Time_Period":"December 21, 2025 - December 27, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-12-20","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Low","West_WVAL_Category":"Very Low","National_WVAL":1.59,"Midwest_WVAL":1,"Northeast_WVAL":1.75,"South_WVAL":4.64,"West_WVAL":1.44,"Time_Period":"December 14, 2025 - December 20, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-12-13","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Low","West_WVAL_Category":"Very Low","National_WVAL":1.07,"Midwest_WVAL":1,"Northeast_WVAL":1.13,"South_WVAL":3.64,"West_WVAL":1,"Time_Period":"December 07, 2025 - December 13, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-12-06","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Low","West_WVAL_Category":"Very Low","National_WVAL":1.29,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":3.14,"West_WVAL":1.58,"Time_Period":"November 30, 2025 - December 06, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-11-29","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"November 23, 2025 - November 29, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-11-22","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"November 16, 2025 - November 22, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-11-15","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"November 09, 2025 - November 15, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-11-08","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"November 02, 2025 - November 08, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-11-01","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"October 26, 2025 - November 01, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-10-25","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"October 19, 2025 - October 25, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-10-18","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"October 12, 2025 - October 18, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-10-11","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"October 05, 2025 - October 11, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-10-04","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"September 28, 2025 - October 04, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-09-27","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"September 21, 2025 - September 27, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-09-20","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"September 14, 2025 - September 20, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-09-13","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"September 07, 2025 - September 13, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-09-06","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"August 31, 2025 - September 06, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-08-30","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"August 24, 2025 - August 30, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-08-23","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"August 17, 2025 - August 23, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-08-16","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"August 10, 2025 - August 16, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-08-09","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"August 03, 2025 - August 09, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-08-02","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"July 27, 2025 - August 02, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-07-26","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"July 20, 2025 - July 26, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-07-19","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"July 13, 2025 - July 19, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-07-12","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"July 06, 2025 - July 12, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-07-05","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"June 29, 2025 - July 05, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-06-28","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"June 22, 2025 - June 28, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-06-21","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"June 15, 2025 - June 21, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-06-14","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"June 08, 2025 - June 14, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-06-07","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"June 01, 2025 - June 07, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-05-31","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"May 25, 2025 - May 31, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-05-24","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"May 18, 2025 - May 24, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-05-17","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"May 11, 2025 - May 17, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-05-10","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"May 04, 2025 - May 10, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-05-03","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"April 27, 2025 - May 03, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-04-26","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"April 20, 2025 - April 26, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-04-19","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1.97,"Time_Period":"April 13, 2025 - April 19, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-04-12","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":2.92,"Time_Period":"April 06, 2025 - April 12, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-04-05","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Low","National_WVAL":2.31,"Midwest_WVAL":2.55,"Northeast_WVAL":2.08,"South_WVAL":1,"West_WVAL":3.82,"Time_Period":"March 30, 2025 - April 05, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-03-29","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Low","National_WVAL":3.66,"Midwest_WVAL":4.47,"Northeast_WVAL":2.85,"South_WVAL":1.65,"West_WVAL":4.63,"Time_Period":"March 23, 2025 - March 29, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-03-22","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Low","National_WVAL":2.99,"Midwest_WVAL":3.94,"Northeast_WVAL":2.03,"South_WVAL":1.38,"West_WVAL":4.57,"Time_Period":"March 16, 2025 - March 22, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-03-15","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Low","West_WVAL_Category":"Moderate","National_WVAL":4.68,"Midwest_WVAL":7.66,"Northeast_WVAL":3.46,"South_WVAL":2.7,"West_WVAL":5.91,"Time_Period":"March 09, 2025 - March 15, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-03-08","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"High","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Low","West_WVAL_Category":"Moderate","National_WVAL":6.43,"Midwest_WVAL":8.03,"Northeast_WVAL":5.08,"South_WVAL":3.11,"West_WVAL":7.77,"Time_Period":"March 02, 2025 - March 08, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-03-01","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Low","West_WVAL_Category":"High","National_WVAL":5.75,"Midwest_WVAL":6.35,"Northeast_WVAL":5.14,"South_WVAL":3.77,"West_WVAL":9.5,"Time_Period":"February 23, 2025 - March 01, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-02-22","National_WVAL_Category":"High","Midwest_WVAL_Category":"High","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"Low","West_WVAL_Category":"Very High","National_WVAL":8.38,"Midwest_WVAL":8.81,"Northeast_WVAL":7.95,"South_WVAL":4.81,"West_WVAL":12.64,"Time_Period":"February 16, 2025 - February 22, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-02-15","National_WVAL_Category":"High","Midwest_WVAL_Category":"High","Northeast_WVAL_Category":"High","South_WVAL_Category":"Low","West_WVAL_Category":"High","National_WVAL":8.24,"Midwest_WVAL":8.11,"Northeast_WVAL":8.38,"South_WVAL":5.19,"West_WVAL":10.73,"Time_Period":"February 09, 2025 - February 15, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-02-08","National_WVAL_Category":"High","Midwest_WVAL_Category":"High","Northeast_WVAL_Category":"High","South_WVAL_Category":"Moderate","West_WVAL_Category":"High","National_WVAL":8.93,"Midwest_WVAL":8.64,"Northeast_WVAL":9.21,"South_WVAL":6.91,"West_WVAL":10.02,"Time_Period":"February 02, 2025 - February 08, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-02-01","National_WVAL_Category":"High","Midwest_WVAL_Category":"High","Northeast_WVAL_Category":"Very High","South_WVAL_Category":"Moderate","West_WVAL_Category":"High","National_WVAL":9.28,"Midwest_WVAL":8.11,"Northeast_WVAL":12.7,"South_WVAL":6.6,"West_WVAL":10.45,"Time_Period":"January 26, 2025 - February 01, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-01-25","National_WVAL_Category":"High","Midwest_WVAL_Category":"High","Northeast_WVAL_Category":"High","South_WVAL_Category":"Moderate","West_WVAL_Category":"Moderate","National_WVAL":8.11,"Midwest_WVAL":8.68,"Northeast_WVAL":9.93,"South_WVAL":7.37,"West_WVAL":7.55,"Time_Period":"January 19, 2025 - January 25, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-01-18","National_WVAL_Category":"High","Midwest_WVAL_Category":"High","Northeast_WVAL_Category":"High","South_WVAL_Category":"High","West_WVAL_Category":"High","National_WVAL":9.86,"Midwest_WVAL":8.85,"Northeast_WVAL":10.03,"South_WVAL":9.68,"West_WVAL":10.62,"Time_Period":"January 12, 2025 - January 18, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-01-11","National_WVAL_Category":"High","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Very High","South_WVAL_Category":"Very High","West_WVAL_Category":"High","National_WVAL":10.33,"Midwest_WVAL":7.12,"Northeast_WVAL":11.98,"South_WVAL":12.67,"West_WVAL":8.68,"Time_Period":"January 05, 2025 - January 11, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2025-01-04","National_WVAL_Category":"Very High","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Very High","South_WVAL_Category":"Very High","West_WVAL_Category":"High","National_WVAL":11.4,"Midwest_WVAL":2.54,"Northeast_WVAL":12.25,"South_WVAL":13.27,"West_WVAL":10.54,"Time_Period":"December 29, 2024 - January 04, 2025","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-12-28","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"Very High","West_WVAL_Category":"Moderate","National_WVAL":7.12,"Midwest_WVAL":5.3,"Northeast_WVAL":7.71,"South_WVAL":11.36,"West_WVAL":6.53,"Time_Period":"December 22, 2024 - December 28, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-12-21","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"High","West_WVAL_Category":"Low","National_WVAL":4.78,"Midwest_WVAL":3.72,"Northeast_WVAL":5.84,"South_WVAL":8.68,"West_WVAL":3.1,"Time_Period":"December 15, 2024 - December 21, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-12-14","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"High","West_WVAL_Category":"Low","National_WVAL":4.33,"Midwest_WVAL":2.48,"Northeast_WVAL":5.31,"South_WVAL":10.4,"West_WVAL":3.35,"Time_Period":"December 08, 2024 - December 14, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-12-07","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Low","South_WVAL_Category":"High","West_WVAL_Category":"Low","National_WVAL":3.53,"Midwest_WVAL":1.65,"Northeast_WVAL":2.88,"South_WVAL":10.16,"West_WVAL":4.18,"Time_Period":"December 01, 2024 - December 07, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-11-30","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Moderate","West_WVAL_Category":"Low","National_WVAL":2.36,"Midwest_WVAL":1,"Northeast_WVAL":2.21,"South_WVAL":5.51,"West_WVAL":2.52,"Time_Period":"November 24, 2024 - November 30, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-11-23","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Low","West_WVAL_Category":"Very Low","National_WVAL":1.65,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":3.62,"West_WVAL":2.31,"Time_Period":"November 17, 2024 - November 23, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-11-16","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":2.72,"West_WVAL":1,"Time_Period":"November 10, 2024 - November 16, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-11-09","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1.11,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":2.34,"West_WVAL":1.21,"Time_Period":"November 03, 2024 - November 09, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-11-02","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1.06,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1.13,"West_WVAL":1.12,"Time_Period":"October 27, 2024 - November 02, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-10-26","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"October 20, 2024 - October 26, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-10-19","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"October 13, 2024 - October 19, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-10-12","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"October 06, 2024 - October 12, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-10-05","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"September 29, 2024 - October 05, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-09-28","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"September 22, 2024 - September 28, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-09-21","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"September 15, 2024 - September 21, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-09-14","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"September 08, 2024 - September 14, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-09-07","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"September 01, 2024 - September 07, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-08-31","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"August 25, 2024 - August 31, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-08-24","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"August 18, 2024 - August 24, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-08-17","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"August 11, 2024 - August 17, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-08-10","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"August 04, 2024 - August 10, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-08-03","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"July 28, 2024 - August 03, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-07-27","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"July 21, 2024 - July 27, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-07-20","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"July 14, 2024 - July 20, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-07-13","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"July 07, 2024 - July 13, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-07-06","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"June 30, 2024 - July 06, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-06-29","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"June 23, 2024 - June 29, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-06-22","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"June 16, 2024 - June 22, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-06-15","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"June 09, 2024 - June 15, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-06-08","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"June 02, 2024 - June 08, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-06-01","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"May 26, 2024 - June 01, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-05-25","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"May 19, 2024 - May 25, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-05-18","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"May 12, 2024 - May 18, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-05-11","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"May 05, 2024 - May 11, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-05-04","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1.45,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"April 28, 2024 - May 04, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-04-27","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1,"Time_Period":"April 21, 2024 - April 27, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-04-20","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1,"Midwest_WVAL":1,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1.02,"Time_Period":"April 14, 2024 - April 20, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-04-13","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1.25,"Midwest_WVAL":2.23,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1.49,"Time_Period":"April 07, 2024 - April 13, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-04-06","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Very Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1.35,"Midwest_WVAL":2.49,"Northeast_WVAL":1,"South_WVAL":1,"West_WVAL":1.71,"Time_Period":"March 31, 2024 - April 06, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-03-30","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":1.47,"Midwest_WVAL":2.64,"Northeast_WVAL":1.28,"South_WVAL":1,"West_WVAL":1.67,"Time_Period":"March 24, 2024 - March 30, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-03-23","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Very Low","National_WVAL":2.13,"Midwest_WVAL":3.35,"Northeast_WVAL":1.91,"South_WVAL":1,"West_WVAL":2.36,"Time_Period":"March 17, 2024 - March 23, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-03-16","National_WVAL_Category":"Very Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Very Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Low","National_WVAL":2.41,"Midwest_WVAL":4.26,"Northeast_WVAL":1.65,"South_WVAL":1.44,"West_WVAL":3.17,"Time_Period":"March 10, 2024 - March 16, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-03-09","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Low","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Low","National_WVAL":3.67,"Midwest_WVAL":5.12,"Northeast_WVAL":3.34,"South_WVAL":1.5,"West_WVAL":4,"Time_Period":"March 03, 2024 - March 09, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-03-02","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Low","National_WVAL":4.46,"Midwest_WVAL":5.53,"Northeast_WVAL":4.25,"South_WVAL":1.87,"West_WVAL":4.67,"Time_Period":"February 25, 2024 - March 02, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-02-24","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Very Low","West_WVAL_Category":"Low","National_WVAL":4.51,"Midwest_WVAL":7.07,"Northeast_WVAL":4.6,"South_WVAL":2.32,"West_WVAL":4.41,"Time_Period":"February 18, 2024 - February 24, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-02-17","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"Low","West_WVAL_Category":"Moderate","National_WVAL":6.19,"Midwest_WVAL":7.62,"Northeast_WVAL":5.92,"South_WVAL":3.4,"West_WVAL":6.46,"Time_Period":"February 11, 2024 - February 17, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-02-10","National_WVAL_Category":"Moderate","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Moderate","South_WVAL_Category":"Low","West_WVAL_Category":"Moderate","National_WVAL":6.25,"Midwest_WVAL":6.4,"Northeast_WVAL":6.13,"South_WVAL":2.97,"West_WVAL":6.36,"Time_Period":"February 04, 2024 - February 10, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"},{"Week_End":"2024-02-03","National_WVAL_Category":"Low","Midwest_WVAL_Category":"Moderate","Northeast_WVAL_Category":"Low","South_WVAL_Category":"Low","West_WVAL_Category":"Moderate","National_WVAL":5.19,"Midwest_WVAL":7.09,"Northeast_WVAL":4.79,"South_WVAL":3.78,"West_WVAL":5.6,"Time_Period":"January 28, 2024 - February 03, 2024","Date_Updated":"January 30, 2026 2:29 PM","Pathogen_Target":"RSV"}]