@cdc/dashboard 4.25.8 → 4.25.11

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 (88) hide show
  1. package/dist/{cdcdashboard-fce76882.es.js → cdcdashboard-BnB1QM5d.es.js} +6 -13
  2. package/dist/{cdcdashboard-c55ac1ea.es.js → cdcdashboard-D6CG2-Hb.es.js} +5 -12
  3. package/dist/{cdcdashboard-31a33da1.es.js → cdcdashboard-MXgURbdZ.es.js} +6 -13
  4. package/dist/{cdcdashboard-1a1724a1.es.js → cdcdashboard-dgT_1dIT.es.js} +136 -151
  5. package/dist/cdcdashboard.js +80040 -75976
  6. package/examples/api-test/categories.json +18 -0
  7. package/examples/api-test/chart-data.json +602 -0
  8. package/examples/api-test/topics.json +47 -0
  9. package/examples/api-test/years.json +22 -0
  10. package/examples/markup-axis-label.json +4167 -0
  11. package/examples/private/DEV-10538.json +407 -0
  12. package/examples/private/DEV-11405.json +39112 -0
  13. package/examples/private/big-dashboard.json +39112 -0
  14. package/examples/private/brfs-2.json +1532 -0
  15. package/examples/private/brfs.json +2128 -2138
  16. package/examples/private/clade-2.json +430 -0
  17. package/examples/private/delete.json +32919 -0
  18. package/examples/private/diabetes.json +5582 -0
  19. package/examples/private/example-2.json +49796 -0
  20. package/examples/private/group-legend-test.json +328 -0
  21. package/examples/private/map.json +1211 -0
  22. package/examples/private/markup-footer/burden_toolkit_mortality_diabetes_attributable_deaths_data.csv +14041 -0
  23. package/examples/private/markup-footer/burden_toolkit_mortality_diabetes_attributable_deaths_per_100000_data.csv +14041 -0
  24. package/examples/private/markup-footer/burden_toolkit_mortality_qaly_data.csv +18721 -0
  25. package/examples/private/markup-footer/burden_toolkit_mortality_yll_data.csv +18721 -0
  26. package/examples/private/markup-footer/mortality-deaths-footnotes-age.csv +3 -0
  27. package/examples/private/markup-variables.json +1451 -0
  28. package/examples/private/markup.json +5471 -0
  29. package/examples/private/mpox.json +38128 -0
  30. package/examples/private/north-dakota.json +1132 -0
  31. package/examples/private/ophdst.json +38754 -0
  32. package/examples/private/pedro.json +1 -0
  33. package/examples/private/pivot.json +683 -0
  34. package/examples/private/reset.json +32920 -0
  35. package/examples/private/sewershed.json +435 -0
  36. package/examples/private/tobacco.json +1938 -0
  37. package/examples/test-api-filter-reset.json +132 -0
  38. package/index.html +2 -2
  39. package/package.json +16 -10
  40. package/src/CdcDashboard.tsx +1 -3
  41. package/src/CdcDashboardComponent.tsx +34 -16
  42. package/src/DashboardContext.tsx +5 -1
  43. package/src/_stories/Dashboard.API.stories.tsx +62 -0
  44. package/src/_stories/Dashboard.stories.tsx +492 -472
  45. package/src/_stories/_mock/api/cessation.json +1 -0
  46. package/src/_stories/_mock/api/data-explorer.json +1 -0
  47. package/src/_stories/_mock/api/explore-by-location.json +1 -0
  48. package/src/_stories/_mock/api/explore-by-topic.json +1 -0
  49. package/src/_stories/_mock/api/legislation.json +1 -0
  50. package/src/_stories/_mock/api/oral-health-data.json +1 -0
  51. package/src/_stories/_mock/custom-order-new-values.json +116 -0
  52. package/src/components/CollapsibleVisualizationRow.tsx +1 -1
  53. package/src/components/DashboardFilters/DashboardFilters.tsx +34 -23
  54. package/src/components/DashboardFilters/DashboardFiltersEditor/DashboardFiltersEditor.tsx +29 -12
  55. package/src/components/DashboardFilters/DashboardFiltersEditor/components/FilterEditor.tsx +81 -112
  56. package/src/components/DashboardFilters/DashboardFiltersEditor/components/NestedDropDownDashboard.tsx +82 -52
  57. package/src/components/DashboardFilters/DashboardFiltersWrapper.tsx +130 -31
  58. package/src/components/DashboardFilters/_stories/DashboardFilters.stories.tsx +80 -21
  59. package/src/components/DataDesignerModal.tsx +227 -210
  60. package/src/components/Header/Header.tsx +13 -12
  61. package/src/components/Toggle/Toggle.tsx +48 -47
  62. package/src/components/VisualizationRow.tsx +13 -6
  63. package/src/components/VisualizationsPanel/VisualizationsPanel.tsx +2 -0
  64. package/src/components/Widget/Widget.tsx +47 -18
  65. package/src/helpers/addValuesToDashboardFilters.ts +111 -60
  66. package/src/helpers/apiFilterHelpers.ts +190 -166
  67. package/src/helpers/filterData.ts +52 -7
  68. package/src/helpers/filterResetHelpers.ts +102 -0
  69. package/src/helpers/formatConfigBeforeSave.ts +137 -0
  70. package/src/helpers/getVizConfig.ts +36 -18
  71. package/src/helpers/loadAPIFilters.ts +109 -99
  72. package/src/helpers/reloadURLHelpers.ts +1 -1
  73. package/src/helpers/tests/filterResetHelpers.test.ts +532 -0
  74. package/src/helpers/tests/formatConfigBeforeSave.test.ts +69 -0
  75. package/src/index.tsx +1 -1
  76. package/src/scss/editor-panel.scss +3 -431
  77. package/src/scss/grid.scss +7 -5
  78. package/src/scss/main.scss +1 -24
  79. package/src/store/errorMessage/errorMessage.reducer.ts +1 -1
  80. package/src/types/DashboardFilters.ts +9 -8
  81. package/src/types/InitialState.ts +12 -12
  82. package/vite.config.js +1 -1
  83. package/vitest.config.ts +16 -0
  84. package/src/coreStyles_dashboard.scss +0 -3
  85. package/src/helpers/getAutoLoadVisualization.ts +0 -11
  86. package/src/scss/mixins.scss +0 -47
  87. package/src/scss/variables.scss +0 -5
  88. /package/dist/{cdcdashboard-548642e6.es.js → cdcdashboard-Ct2SB0vL.es.js} +0 -0
@@ -0,0 +1,1211 @@
1
+ {
2
+ "dashboard": {
3
+ "theme": "theme-blue",
4
+ "sharedFilters": [
5
+ {
6
+ "key": "State",
7
+ "values": [
8
+ "Alabama",
9
+ "Alaska",
10
+ "Arizona",
11
+ "Arkansas",
12
+ "California",
13
+ "Colorado",
14
+ "Connecticut",
15
+ "Delaware",
16
+ "District of Columbia",
17
+ "Florida",
18
+ "Georgia",
19
+ "Hawaii",
20
+ "Idaho",
21
+ "Illinois",
22
+ "Indiana",
23
+ "Iowa",
24
+ "Kansas",
25
+ "Kentucky",
26
+ "Louisiana",
27
+ "Maine",
28
+ "Maryland",
29
+ "Massachusetts",
30
+ "Michigan",
31
+ "Minnesota",
32
+ "Mississippi",
33
+ "Missouri",
34
+ "Montana",
35
+ "Nebraska",
36
+ "Nevada",
37
+ "New Hampshire",
38
+ "New Jersey",
39
+ "New Mexico",
40
+ "New York",
41
+ "North Carolina",
42
+ "North Dakota",
43
+ "Ohio",
44
+ "Oklahoma",
45
+ "Oregon",
46
+ "Pennsylvania",
47
+ "Rhode Island",
48
+ "South Carolina",
49
+ "South Dakota",
50
+ "Tennessee",
51
+ "Texas",
52
+ "Utah",
53
+ "Vermont",
54
+ "Virginia",
55
+ "Washington",
56
+ "West Virginia",
57
+ "Wisconsin",
58
+ "Wyoming"
59
+ ],
60
+ "columnName": "stateName",
61
+ "showDropdown": true,
62
+ "setBy": "",
63
+ "usedBy": [
64
+ "map1683566539590"
65
+ ],
66
+ "type": "datafilter",
67
+ "tier": 1,
68
+ "orderedValues": [
69
+ "Alabama",
70
+ "Alaska",
71
+ "Arizona",
72
+ "Arkansas",
73
+ "California",
74
+ "Colorado",
75
+ "Connecticut",
76
+ "Delaware",
77
+ "District of Columbia",
78
+ "Florida",
79
+ "Georgia",
80
+ "Hawaii",
81
+ "Idaho",
82
+ "Illinois",
83
+ "Indiana",
84
+ "Iowa",
85
+ "Kansas",
86
+ "Kentucky",
87
+ "Louisiana",
88
+ "Maine",
89
+ "Maryland",
90
+ "Massachusetts",
91
+ "Michigan",
92
+ "Minnesota",
93
+ "Mississippi",
94
+ "Missouri",
95
+ "Montana",
96
+ "Nebraska",
97
+ "Nevada",
98
+ "New Hampshire",
99
+ "New Jersey",
100
+ "New Mexico",
101
+ "New York",
102
+ "North Carolina",
103
+ "North Dakota",
104
+ "Ohio",
105
+ "Oklahoma",
106
+ "Oregon",
107
+ "Pennsylvania",
108
+ "Rhode Island",
109
+ "South Carolina",
110
+ "South Dakota",
111
+ "Tennessee",
112
+ "Texas",
113
+ "Utah",
114
+ "Vermont",
115
+ "Virginia",
116
+ "Washington",
117
+ "West Virginia",
118
+ "Wisconsin",
119
+ "Wyoming"
120
+ ]
121
+ }
122
+ ]
123
+ },
124
+ "rows": [
125
+ {
126
+ "columns": [
127
+ {
128
+ "width": 12,
129
+ "widget": "legacySharedFilters"
130
+ }
131
+ ]
132
+ },
133
+ {
134
+ "columns": [
135
+ {
136
+ "width": 12,
137
+ "widget": "map1683566539590"
138
+ },
139
+ {},
140
+ {}
141
+ ],
142
+ "dataDescription": {
143
+ "horizontal": false
144
+ },
145
+ "dataKey": "US-50-states.csv"
146
+ }
147
+ ],
148
+ "visualizations": {
149
+ "map1683566539590": {
150
+ "annotations": [],
151
+ "general": {
152
+ "navigationTarget": "_self",
153
+ "noStateFoundMessage": "Map Unavailable",
154
+ "annotationDropdownText": "Annotations",
155
+ "geoBorderColor": "darkGray",
156
+ "headerColor": "theme-blue",
157
+ "title": "",
158
+ "showTitle": false,
159
+ "showSidebar": false,
160
+ "showDownloadMediaButton": false,
161
+ "displayAsHex": false,
162
+ "displayStateLabels": true,
163
+ "territoriesAlwaysShow": false,
164
+ "language": "en",
165
+ "geoType": "us",
166
+ "geoLabelOverride": "",
167
+ "hasRegions": false,
168
+ "fullBorder": false,
169
+ "type": "data",
170
+ "convertFipsCodes": true,
171
+ "palette": {
172
+ "isReversed": false
173
+ },
174
+ "allowMapZoom": true,
175
+ "hideGeoColumnInTooltip": false,
176
+ "hidePrimaryColumnInTooltip": false,
177
+ "statePicked": {
178
+ "fipsCode": "01",
179
+ "stateName": "Alabama"
180
+ },
181
+ "territoriesLabel": "Territories",
182
+ "expandDataTable": false
183
+ },
184
+ "type": "map",
185
+ "color": "pinkpurple",
186
+ "columns": {
187
+ "geo": {
188
+ "name": "stateName",
189
+ "label": "Location",
190
+ "tooltip": false,
191
+ "dataTable": true
192
+ },
193
+ "primary": {
194
+ "dataTable": false,
195
+ "tooltip": false,
196
+ "prefix": "",
197
+ "suffix": "",
198
+ "name": "stateName",
199
+ "label": "",
200
+ "roundToPlace": 0
201
+ },
202
+ "navigate": {
203
+ "name": "Select Option"
204
+ },
205
+ "latitude": {
206
+ "name": ""
207
+ },
208
+ "longitude": {
209
+ "name": ""
210
+ }
211
+ },
212
+ "legend": {
213
+ "descriptions": {},
214
+ "specialClasses": [],
215
+ "unified": false,
216
+ "singleColumn": false,
217
+ "singleRow": false,
218
+ "verticalSorted": false,
219
+ "showSpecialClassesLast": false,
220
+ "dynamicDescription": false,
221
+ "type": "equalnumber",
222
+ "numberOfItems": 3,
223
+ "position": "side",
224
+ "title": "Legend",
225
+ "style": "circles",
226
+ "subStyle": "linear blocks",
227
+ "tickRotation": "",
228
+ "singleColumnLegend": false,
229
+ "hideBorder": false,
230
+ "groupBy": ""
231
+ },
232
+ "filters": [],
233
+ "table": {
234
+ "wrapColumns": false,
235
+ "label": "Data Table",
236
+ "expanded": false,
237
+ "limitHeight": false,
238
+ "height": "",
239
+ "caption": "",
240
+ "showDownloadUrl": false,
241
+ "showDataTableLink": true,
242
+ "showDownloadLinkBelow": true,
243
+ "showFullGeoNameInCSV": false,
244
+ "forceDisplay": false,
245
+ "download": true,
246
+ "indexLabel": "",
247
+ "cellMinWidth": "0",
248
+ "sharedFilterColumns": [
249
+ "stateName"
250
+ ]
251
+ },
252
+ "tooltips": {
253
+ "appearanceType": "hover",
254
+ "linkLabel": "Learn More",
255
+ "capitalizeLabels": true,
256
+ "opacity": 90
257
+ },
258
+ "visual": {
259
+ "minBubbleSize": 1,
260
+ "maxBubbleSize": 20,
261
+ "extraBubbleBorder": false,
262
+ "cityStyle": "circle",
263
+ "cityStyleLabel": "",
264
+ "showBubbleZeros": false,
265
+ "additionalCityStyles": [],
266
+ "geoCodeCircleSize": 2
267
+ },
268
+ "mapPosition": {
269
+ "coordinates": [
270
+ 0,
271
+ 30
272
+ ],
273
+ "zoom": 1
274
+ },
275
+ "map": {
276
+ "layers": [],
277
+ "patterns": []
278
+ },
279
+ "hexMap": {
280
+ "type": "",
281
+ "shapeGroups": [
282
+ {
283
+ "legendTitle": "",
284
+ "legendDescription": "",
285
+ "items": [
286
+ {
287
+ "key": "",
288
+ "shape": "Arrow up",
289
+ "column": "",
290
+ "operator": "=",
291
+ "value": ""
292
+ }
293
+ ]
294
+ }
295
+ ]
296
+ },
297
+ "filterBehavior": "Filter Change",
298
+ "filterIntro": "",
299
+ "dataTable": {
300
+ "title": "Data Table",
301
+ "forceDisplay": false
302
+ },
303
+ "openModal": false,
304
+ "uid": "map1683566539590",
305
+ "dataKey": "US-50-states.csv",
306
+ "dataDescription": {
307
+ "horizontal": false
308
+ },
309
+ "validated": 4.23,
310
+ "version": "4.24.4"
311
+ },
312
+ "legacySharedFilters": {
313
+ "type": "dashboardFilters",
314
+ "visualizationType": "dashboardFilters",
315
+ "sharedFilterIndexes": [
316
+ 0
317
+ ],
318
+ "filterBehavior": "Apply Button",
319
+ "uid": "legacySharedFilters"
320
+ }
321
+ },
322
+ "table": {
323
+ "label": "Data Table",
324
+ "show": true,
325
+ "showDownloadUrl": false,
326
+ "download": true
327
+ },
328
+ "datasets": {
329
+ "US-50-states.csv": {
330
+ "data": [
331
+ {
332
+ "stateName": "Alabama",
333
+ "stateAbbr": "AL",
334
+ "keyFactOne": "18.6",
335
+ "keyFactTwo": "5.7",
336
+ "keyFactState": "Alabama",
337
+ "keyFactState2": "Alabama",
338
+ "activities": "1.7M",
339
+ "smokedCig": "14.2%",
340
+ "adultsDie": "8,600",
341
+ "spentOnHC": "$1.9B",
342
+ "PHResonse": "Alabama has identified ways to help increase quitline use among the Medicaid population. The state tobacco program partnered with the state Medicaid program to conduct targeted media campaigns for Medicaid recipients and sent direct mailings to more than 235,000 Medicaid recipients promoting the quitline. Medicaid callers increased by more than 200% during these targeted outreach efforts. Approximately 44% of quitline users reported Medicaid as their insurance provider during that period. Efforts like this in states complement the efforts of the Tips From Former Smokers (Tips) Campaign.",
343
+ "quitCalls": "Incoming calls to the Alabama state quitline increased by an average of 51% during the 2023 Tips From Former Smokers (Tips) Campaign. The Alabama state quitline received more than 8,781 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800- QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023.",
344
+ "url": "#Alabama",
345
+ "ProdLost": " $2.4M ",
346
+ "uid": "US-AL"
347
+ },
348
+ {
349
+ "stateName": "Alaska",
350
+ "stateAbbr": "AK",
351
+ "keyFactOne": "18.7",
352
+ "keyFactTwo": "3.8",
353
+ "keyFactState": "US",
354
+ "keyFactState2": "US",
355
+ "activities": "1.3M",
356
+ "smokedCig": "15.3%",
357
+ "adultsDie": "600",
358
+ "spentOnHC": "$438M",
359
+ "PHResonse": "There is no safe level of exposure to secondhand smoke. It causes stroke, lung cancer, and coronary heart disease in adults. Alaska does not have a statewide law protecting people from secondhand smoke in workplaces, restaurants, and bars. However, the state provides research, data and analysis, and scientific consultation to communities, tribes and businesses that want to protect residents from secondhand smoke. As a result, over 40% of Alaska residents are protected by local smoke-free laws that prohibit smoking in all indoor areas of workplaces, restaurants, and bars. Further, 59% (134 of 228) of the Federally recognized tribes in Alaska have adopted smoke-free and tobacco-free policies. The University of Alaska system has a tobacco free policy for all campuses and 10 of 14 public housing authorities are smoke-free, including those in Juneau, Petersburg, and Bristol Bay Borough. Finally, 41 of the state's 54 public school districts have tobacco-free school policies.",
360
+ "quitCalls": "The Alaska state quitline received more than 1,763 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023.",
361
+ "url": "#Alaska",
362
+ "ProdLost": " $2.3M ",
363
+ "uid": "US-AK"
364
+ },
365
+ {
366
+ "stateName": "Arkansas",
367
+ "stateAbbr": "AR",
368
+ "keyFactOne": "20.0",
369
+ "keyFactTwo": "3.4",
370
+ "keyFactState": "Arkansas",
371
+ "keyFactState2": "Arkansas",
372
+ "activities": "1.7M",
373
+ "smokedCig": "10.0%",
374
+ "adultsDie": "8,300",
375
+ "spentOnHC": "$2.4B",
376
+ "PHResonse": "There is no safe level of exposure to secondhand smoke. It causes stroke, lung cancer, and coronary heart disease in adults. In 2007, Arizona became the 10th state to enact a comprehensive smoke-free law that prohibits smoking in all indoor areas of workplaces, restaurants, and bars. However, smoke-free efforts did not end in 2007. Upon request, the state provides research, data and analysis, and scientific consultation to communities, multiunit housing operators, and colleges and universities that want to protect residents from secondhand smoke. In 2015, 10 local ordinances were enacted prohibiting tobacco use in parks or vehicles to protect children from secondhand smoke in these settings. Over a six-month period, the state worked with 20 multiunit property operators of more than 2,000 rental units to inform the development of smoke-free policies. The state continues to work with an additional 70 properties as they voluntarily transition to a smoke-free policy. Northern Arizona University recently enacted a tobacco-free campus policy, becoming the 5th tobacco-free campus in the state.",
377
+ "quitCalls": "Incoming calls to the Arkansas state quitline increased by an average of 78% during the 2023 Tips From Former Smokers (Tips) Campaign. The Arkansas state quitline received more than 4,617 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800- QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023.",
378
+ "url": "#Arkansas",
379
+ "ProdLost": " $2.3M ",
380
+ "uid": "US-AR"
381
+ },
382
+ {
383
+ "stateName": "Arizona",
384
+ "stateAbbr": "AZ",
385
+ "keyFactOne": "17.4",
386
+ "keyFactTwo": "4.9",
387
+ "keyFactState": "Arizona",
388
+ "keyFactState2": "Arizona",
389
+ "activities": "1.5M",
390
+ "smokedCig": "15.0%",
391
+ "adultsDie": "5,800",
392
+ "spentOnHC": "$1.2B",
393
+ "PHResonse": "There is no safe level of exposure to secondhand smoke. It causes stroke, lung cancer, and coronary heart disease in adults. Arkansas does not have a comprehensive smoke-free law to protect people from secondhand smoke in all indoor areas of workplaces, restaurants, and bars, but the state has implemented a state law that prohibits smoking in cars with children. Upon request, the state provides research, data, and scientific consultation to communities, multiunit housing operators, hospitals, businesses, and colleges and universities that want to protect residents from secondhand smoke. Through state and local collaborations with community-based partners, Arkansas has established over 126 tobacco-free policies protecting more than 669,421 residents in parks, colleges, and businesses. Further, every college campus in Arkansas has been smoke-free since 2009, including the use of electronic cigarettes since 2015.",
394
+ "quitCalls": "Incoming calls to the Arizona state quitline increased by an average of 86% during the 2023 Tips From Former Smokers (Tips) Campaign. The Arizona state quitline received more than 3,403 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023.",
395
+ "url": "#Arizona",
396
+ "ProdLost": " $2.4M ",
397
+ "uid": "US-AZ"
398
+ },
399
+ {
400
+ "stateName": "California",
401
+ "stateAbbr": "CA",
402
+ "keyFactOne": "18.7",
403
+ "keyFactTwo": "3.8",
404
+ "keyFactState": "US",
405
+ "keyFactState2": "US",
406
+ "activities": "3.6M",
407
+ "smokedCig": "8.5%",
408
+ "adultsDie": "40,000",
409
+ "spentOnHC": "$13.3B",
410
+ "PHResonse": "Secondhand smoke causes stroke, lung cancer, and coronary heart disease in adults; in addition, it increases risks for sudden infant death syndrome, middle-ear disease, respiratory symptoms, and slows lung growth in children. In 2016, California enacted multiple tobacco control laws as part of a special legislative session in the state. The new laws: closed loopholes in the state's smoke-free law making hotel lobbies, small businesses, and break rooms smoke-free; defined e-cigarettes as a tobacco product; prohibited vaping wherever smoking is also not allowed; required all K-12 public schools to be tobacco free; raised tobacco retail licensure fees; and increased the legal age of sale of tobacco from 18 to 21. These policies will further protect youth and adults in California from secondhand smoke exposure and e-cigarette vapor in public places. Increasing the age of sales for tobacco to 21 and requiring all public schools to be tobacco-free will protect youth from exposure to these products and further change social norms in California about the acceptability of smoking. The Institute of Medicine projects that if the age of sale were raised now to 21 nationwide, then there would be approximately 223,000 fewer premature deaths, 50,000 fewer deaths from lung cancer, and 4.2 million fewer years of life lost for those born between 2000 and 2019.",
411
+ "quitCalls": "Incoming calls to the California state quitline increased by an average of 105% during the 2023 Tips From Former Smokers (Tips) Campaign. The California state quitline received more than 9,345 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023.",
412
+ "url": "#California",
413
+ "ProdLost": " $2.7M ",
414
+ "uid": "US-CA"
415
+ },
416
+ {
417
+ "stateName": "Colorado",
418
+ "stateAbbr": "CO",
419
+ "keyFactOne": "18.9",
420
+ "keyFactTwo": "4.5",
421
+ "keyFactState": "Colorado",
422
+ "keyFactState2": "Colorado",
423
+ "activities": "1.7M",
424
+ "smokedCig": "10.2%",
425
+ "adultsDie": "5,100",
426
+ "spentOnHC": "$1.9B",
427
+ "PHResonse": "There is no safe level of exposure to secondhand smoke. It causes stroke, lung cancer, and coronary heart disease in adults. In 2006, Colorado became the 7th state to enact a comprehensive smoke-free law that prohibits smoking in all indoor areas of workplaces, restaurants, and bars. However, smoke-free efforts did not end in 2006. Upon request, the state provides research findings, data and analysis, and scientific consultation to communities, multiunit housing operators, hospitals, businesses, and colleges and universities that want to protect residents from secondhand smoke. In Colorado, at least 25 public housing authorities have adopted smoke-free policies for housing units, and seven colleges and universities have adopted tobacco-free campus policies, including the University of Colorado campuses in Boulder and Denver.",
428
+ "quitCalls": "Incoming calls to the Colorado state quitline increased by an average of 11% during the 2023 Tips From Former Smokers (Tips) Campaign. The Colorado state quitline received more than 10,370 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023.",
429
+ "url": "#Colorado",
430
+ "ProdLost": " $2.7M ",
431
+ "uid": "US-CO"
432
+ },
433
+ {
434
+ "stateName": "Connecticut",
435
+ "stateAbbr": "CT",
436
+ "keyFactOne": "10.6",
437
+ "keyFactTwo": "1.3",
438
+ "keyFactState": "Connecticut",
439
+ "keyFactState2": "Connecticut",
440
+ "activities": "1.2M",
441
+ "smokedCig": "8.4%",
442
+ "adultsDie": "4,900",
443
+ "spentOnHC": "$2.0B",
444
+ "PHResonse": "There is no safe level of exposure to secondhand smoke. It causes stroke, lung cancer, and coronary heart disease in adults. Upon request, Connecticut provides research, data and analysis, and scientific consultation to communities, multiunit housing operators, hospitals, businesses, and colleges and universities that want to protect residents from secondhand smoke. Currently, four universities in Connecticut have a campus tobacco-free policy, and eight public housing authorities have implemented smoke-free policies for all housing units. At least 12 more public housing authorities have adopted such policies that are currently being implemented. Additionally, towns such as Hamden have enacted an ordinance that prohibits all tobacco use in city parks.",
445
+ "quitCalls": "Incoming calls to the Connecticut state quitline increased by an average of 52% during the 2023 Tips From Former Smokers (Tips) Campaign. The Connecticut state quitline received more than 2,857 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023. ",
446
+ "url": "#Connecticut",
447
+ "ProdLost": " $3.1M ",
448
+ "uid": "US-CT"
449
+ },
450
+ {
451
+ "stateName": "Delaware",
452
+ "stateAbbr": "DE",
453
+ "keyFactOne": "18.3",
454
+ "keyFactTwo": "2.7",
455
+ "keyFactState": "Delaware",
456
+ "keyFactState2": "Delaware",
457
+ "activities": "990K",
458
+ "smokedCig": "11.4%",
459
+ "adultsDie": "1,400",
460
+ "spentOnHC": "$532M",
461
+ "PHResonse": "There is no safe level of exposure to secondhand smoke. It causes stroke, lung cancer, and coronary heart disease in adults. In 2002, Delaware became the first state to enact a comprehensive smoke-free law that prohibits smoking in all indoor areas of workplaces, restaurants, and bars. However, smoke-free work did not end in the state in 2002. Upon request, the state provides research, data and analysis, and scientific consultation to communities, multiunit housing operators, hospitals, businesses, and colleges and universities that want to protect residents from secondhand smoke. Every hospital in the state has a tobacco-free campus policy that prohibits tobacco use in buildings and on hospital grounds; five beaches in the state have prohibited smoking as well. Furthermore, each of the seven college or university systems in the state have tobacco-free campus policies across all of their campuses statewide, including Delaware State University, University of Delaware, Widener University, and Delaware Technical & Community College. Additionally in 2015, Delaware prohibited e-cigarettes use in places where smoking is not allowed.",
462
+ "quitCalls": "Incoming calls to the Delaware state quitline increased by an average of 75% during the 2023 Tips From Former Smokers (Tips) Campaign. The Delaware state quitline received more than 1,083 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023.",
463
+ "url": "#Delaware",
464
+ "ProdLost": " $3.0M ",
465
+ "uid": "US-DE"
466
+ },
467
+ {
468
+ "stateName": "District of Columbia",
469
+ "stateAbbr": "DC",
470
+ "keyFactOne": "18.7",
471
+ "keyFactTwo": "3.8",
472
+ "keyFactState": "US",
473
+ "keyFactState2": "US",
474
+ "activities": "1.0M",
475
+ "smokedCig": "9.8%",
476
+ "adultsDie": "800",
477
+ "spentOnHC": "$391M",
478
+ "PHResonse": "To help raise awareness and provide cessation support to all residents, the District of Columbia held its second annual DC Calls It Quits awareness week. The goal of the awareness week was to inspire, equip, and support DC residents to quit smoking. This District-wide effort united more than 40 community and health organizations, businesses, and public agencies. During this week, local groups partnered to highlight the importance of quitting smoking, as well as the available resources to help DC residents quit for good. There were twelve unique DC Calls it Quits events beginning with a press conference to promote smoking cessation as a critical element in protecting the health of District residents. The week ended with a highly successful Tobacco Control Summit hosted by the DC Tobacco-Free Coalition.",
479
+ "quitCalls": "Incoming calls to the District of Columbia quitline increased by an average of 31% during the 2023 Tips From Former Smokers (Tips) Campaign. The District of Columbia state quitline received more than 1,447 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023.",
480
+ "url": "#District of Co",
481
+ "ProdLost": " $5.0M ",
482
+ "uid": "DISTRICT OF COLUMBIA"
483
+ },
484
+ {
485
+ "stateName": "Florida",
486
+ "stateAbbr": "FL",
487
+ "keyFactOne": "18.7",
488
+ "keyFactTwo": "3.3",
489
+ "keyFactState": "US",
490
+ "keyFactState2": "Florida",
491
+ "activities": "2.9M",
492
+ "smokedCig": "10.5%",
493
+ "adultsDie": "32,300",
494
+ "spentOnHC": "$8.6B",
495
+ "PHResonse": "There is no safe level of exposure to secondhand smoke. It causes stroke, lung cancer, and coronary heart disease in adults. Florida was an early adopter of smoke-free policies in the United States when voters approved a constitutional amendment to prohibit smoking in workplaces and restaurants, but not bars. Since that law was adopted, local efforts to protect people from secondhand smoke have continued in other locations. Upon request, the state provides research, data and analysis, and scientific consultation to communities, multiunit housing operators, hospitals, businesses, and colleges and universities that want to protect residents from secondhand smoke. For example, 28 Florida colleges and universities have smoke-free or tobacco-free campus policies. Furthermore, 16 public housing authorities in the state have implemented a smoke-free rule.",
496
+ "quitCalls": "Incoming calls to the Florida state quitline increased by an average of 78% during the 2023 Tips From Former Smokers (Tips) Campaign. The Florida state quitline received more than 11,940 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023.",
497
+ "url": "#Florida",
498
+ "ProdLost": " $2.8M ",
499
+ "uid": "US-FL"
500
+ },
501
+ {
502
+ "stateName": "Georgia",
503
+ "stateAbbr": "GA",
504
+ "keyFactOne": "18.8",
505
+ "keyFactTwo": "3.3",
506
+ "keyFactState": "Georgia",
507
+ "keyFactState2": "Georgia",
508
+ "activities": "2.1M",
509
+ "smokedCig": "12.0%",
510
+ "adultsDie": "11,700",
511
+ "spentOnHC": "$3.2B",
512
+ "PHResonse": "There is no safe level of exposure to secondhand smoke. It causes stroke, lung cancer, and coronary heart disease in adults. Georgia does not have a comprehensive smoke-free law to protect people from secondhand smoke in all indoor areas of workplaces, restaurants, and bars. However, the state has continued to identify opportunities to protect people from secondhand smoke in other locations. Upon request, the state provides research, data and analysis, and scientific consultation to communities, multiunit housing operators, hospitals, businesses, and colleges and universities that want to protect residents from secondhand smoke. Currently, five cities and one county have adopted a comprehensive smoke-free ordinance, and 33 University of Georgia campuses have adopted tobacco-free campus policies. Further, the state has partnered with the Georgia Hospital Association and now 132 hospitals are tobacco-free and 31 are smoke-free. Furthermore, these policies prohibit tobacco use at school-sponsored or school-related events both on and off campus. Currently, 116 out of 181 public school districts in the state have adopted tobacco-free school policies.",
513
+ "quitCalls": "Incoming calls to the Georgia state quitline increased by an average of 102% during the 2023 Tips From Former Smokers (Tips) Campaign. The Georgia state quitline received more than 7,611 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023. ",
514
+ "url": "#Georgia",
515
+ "ProdLost": " $2.8M ",
516
+ "uid": "US-GA"
517
+ },
518
+ {
519
+ "stateName": "Hawaii",
520
+ "stateAbbr": "HI",
521
+ "keyFactOne": "18.7",
522
+ "keyFactTwo": "3.0",
523
+ "keyFactState": "US",
524
+ "keyFactState2": "Hawaii",
525
+ "activities": "1.2M",
526
+ "smokedCig": "9.0%",
527
+ "adultsDie": "1,400",
528
+ "spentOnHC": "$526M",
529
+ "PHResonse": "Hawaii was one of the first states in the country to adopt a comprehensive smoke-free law that prohibits smoking in workplaces, restaurants and bars. Hawaii made history in 2016, when it became the first state in the country to raise the legal age of sales for tobacco from 18 to 21 in an effort to prevent young people from nicotine addiction and the harms of tobacco use. Although communities in the U.S. had adopted such measures, Hawaii was the first state to enact such a law. Tobacco products, including electronic cigarettes or e-cigs, can only be sold to people who are at least 21 years old. The Institute of Medicine projects that if the age of sale were raised now to 21 nationwide, then there would be approximately 223,000 fewer premature deaths, 50,000 fewer deaths from lung cancer, and 4.2 million fewer years of life lost for those born between 2000 and 2019.",
530
+ "quitCalls": "The Hawaii state quitline received more than 1,555 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023. ",
531
+ "url": "#Hawaii",
532
+ "ProdLost": " $2.6M ",
533
+ "uid": "US-HI"
534
+ },
535
+ {
536
+ "stateName": "Idaho",
537
+ "stateAbbr": "ID",
538
+ "keyFactOne": "18.5",
539
+ "keyFactTwo": "3.8",
540
+ "keyFactState": "Idaho",
541
+ "keyFactState2": "Idaho",
542
+ "activities": "1.2M",
543
+ "smokedCig": "10.4%",
544
+ "adultsDie": "1,800",
545
+ "spentOnHC": "$508M",
546
+ "PHResonse": "There is no safe level of exposure to secondhand smoke. It causes stroke, lung cancer, and coronary heart disease in adults. While Idaho does not have a comprehensive statewide law that prohibits smoking in workplaces, restaurants, and bars, efforts have continued in the state to protect people from secondhand smoke in other locations. Upon request, the state provides research, data and analysis, and scientific consultation to communities, multiunit housing operators, hospitals, businesses, and colleges and universities that want to protect residents from secondhand smoke. On August 17, 2016, the University of Idaho established a tobacco-free campus, making 5 colleges or universities in the state tobacco-free. Additionally, the state's public health districts, tribes, and the Idaho Commission of Hispanic Affairs (ICHA) have partnered to increase the amount of smoke-free multiunit housing authorities in the state.",
547
+ "quitCalls": "Incoming calls to the Idaho state quitline increased by an average of 34% during the 2023 Tips From Former Smokers (Tips) Campaign. The Idaho state quitline received more than 2,225 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023. ",
548
+ "url": "#Idaho",
549
+ "ProdLost": " $2.0M ",
550
+ "uid": "US-ID"
551
+ },
552
+ {
553
+ "stateName": "Illinois",
554
+ "stateAbbr": "IL",
555
+ "keyFactOne": "17.1",
556
+ "keyFactTwo": "2.5",
557
+ "keyFactState": "Illinois",
558
+ "keyFactState2": "Illinois",
559
+ "activities": "2.2M",
560
+ "smokedCig": "10.8%",
561
+ "adultsDie": "18,300",
562
+ "spentOnHC": "$5.5B",
563
+ "PHResonse": "Illinois is a state with strong tobacco control policies and programs. The state has a comprehensive smoke-free law, and recently Chicago increased the legal age of sale of tobacco products from 18 to 21 in an effort to protect young people from nicotine addiction and the harms of tobacco use. The state is also working to determine how to reach populations that have higher rates of tobacco use compared to other adults. In Illinois, smoking prevalence among persons with disabilities is approximately 25% higher compared to adults without a disability. Nearly 30% of callers to the Illinois quitline identify themselves as having a disability. The Illinois tobacco program responded by providing cultural competency training to quitline staff that includes information on how to successfully counsel persons with disabilities. The state has also developed appropriate media tools for deaf and hearing-impaired individuals, which includes a video guide in American Sign Language on the benefits of the state quitline.",
564
+ "quitCalls": "Incoming calls to the Illinois state quitline increased by an average of 117% during the 2023 Tips From Former Smokers (Tips) Campaign. The Illinois state quitline received more than 8,240 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023. ",
565
+ "url": "#Illinois",
566
+ "ProdLost": " $3.2M ",
567
+ "uid": "US-IL"
568
+ },
569
+ {
570
+ "stateName": "Indiana",
571
+ "stateAbbr": "IN",
572
+ "keyFactOne": "18.7",
573
+ "keyFactTwo": "4.2",
574
+ "keyFactState": "US",
575
+ "keyFactState2": "Indiana",
576
+ "activities": "1.8M",
577
+ "smokedCig": "14.5%",
578
+ "adultsDie": "11,100",
579
+ "spentOnHC": "$2.9B",
580
+ "PHResonse": "Indiana has recently begun to work with large healthcare systems to integrate referrals to the state quitline into electronic medical records systems. People are more likely to quit smoking successfully if they have access to FDA-approved cessation medications and counseling, such as state quitlines. State quitlines allow smokers to call and receive free counseling to help them quit. As part of these efforts, the state continues to provide ongoing technical assistance to hospital staff to ensure that the proper steps are taken prior to referral. Working directly with hospital staff allows the state to improve outcomes and increase the acceptance rate of referrals to the quitline.",
581
+ "quitCalls": "Incoming calls to the Indiana state quitline increased by an average of 21% during the 2023 Tips From Former Smokers (Tips) Campaign. The Indiana state quitline received more than 11,182 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023. ",
582
+ "url": "#Indiana",
583
+ "ProdLost": " $2.6M ",
584
+ "uid": "US-IN"
585
+ },
586
+ {
587
+ "stateName": "Iowa",
588
+ "stateAbbr": "IA",
589
+ "keyFactOne": "16.2",
590
+ "keyFactTwo": "4.1",
591
+ "keyFactState": "Iowa",
592
+ "keyFactState2": "Iowa",
593
+ "activities": "1.1M",
594
+ "smokedCig": "13.7%",
595
+ "adultsDie": "5,100",
596
+ "spentOnHC": "$1.3B",
597
+ "PHResonse": "There is no safe level of exposure to secondhand smoke. It causes stroke, lung cancer, and coronary heart disease in adults. Iowa has a comprehensive smoke-free law that prohibits smoking in all indoor areas of workplaces, restaurants, and bars, which has been in effect since 2008. Since that law was enacted, and upon request, the state provides research, data and analysis, and scientific consultation to communities, multiunit housing operators, hospitals, businesses, and colleges and universities that want to protect residents from secondhand smoke. In Iowa, all institutions of higher education are required to have a smoke-free campus. An additional 18 colleges or universities have adopted tobacco-free campus policies. Further, more than 10 public housing authorities have adopted policies making some or all of their housing units smoke-free.",
598
+ "quitCalls": "Incoming calls to the Iowa state quitline increased by an average of 30% during the 2023 Tips From Former Smokers (Tips) Campaign. The Iowa state quitline received more than 3,223 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023. ",
599
+ "url": "#Iowa",
600
+ "ProdLost": " $2.7M ",
601
+ "uid": "US-IA"
602
+ },
603
+ {
604
+ "stateName": "Kansas",
605
+ "stateAbbr": "KS",
606
+ "keyFactOne": "14.9",
607
+ "keyFactTwo": "4.6",
608
+ "keyFactState": "Kansas",
609
+ "keyFactState2": "Kansas",
610
+ "activities": "1.5M",
611
+ "smokedCig": "13.9%",
612
+ "adultsDie": "4,400",
613
+ "spentOnHC": "$1.1B",
614
+ "PHResonse": "The public health community and businesses have worked together in the Kansas City metro areas to prevent teen smoking by raising the legal age of smoking from 18 to 21. Currently, 22 metro area cities, including 15 in Kansas, have raised the legal age of sale to 21 in an effort led by a coalition that includes business leaders from the Greater Kansas City Chamber of Commerce. The Institute of Medicine projects that if the age of sale were raised now to 21 nationwide, then there would be approximately 223,000 fewer premature deaths, 50,000 fewer deaths from lung cancer, and 4.2 million fewer years of life lost for those born between 2000 and 2019.",
615
+ "quitCalls": "Incoming calls to the Kansas state quitline increased by an average of 55% during the 2023 Tips From Former Smokers (Tips) Campaign. The Kansas state quitline received more than 2,765 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023. ",
616
+ "url": "#Kansas",
617
+ "ProdLost": " $2.9M ",
618
+ "uid": "US-KS"
619
+ },
620
+ {
621
+ "stateName": "Kentucky",
622
+ "stateAbbr": "KY",
623
+ "keyFactOne": "22.5",
624
+ "keyFactTwo": "4.9",
625
+ "keyFactState": "Kentucky",
626
+ "keyFactState2": "Kentucky",
627
+ "activities": "1.7M",
628
+ "smokedCig": "Data Not Available",
629
+ "adultsDie": "8,900",
630
+ "spentOnHC": "$1.9B",
631
+ "PHResonse": "In 2015, Kentucky's tobacco control program was one of five states to participate in a pilot program where CDC's Tips From Former Smokers (Tips) ads promoted the availability of free nicotine replacement therapies (NRT) for individuals who called the state quitline. People are more likely to quit successfully if they have access to counseling and medications, such as nicotine replacement therapy (NRT). State quitlines allow smokers to call and receive free counseling to help them quit smoking, as well as free NRT in many states. As a result of Kentucky's pilot program, NRT utilization rates for quitline callers increased by 821% during this two-week period. In addition, call volume to the quitline increased by 150%. After the pilot ended, Kentucky's tobacco control program decided to continue to provide free NRT for an additional eight weeks for all callers who enrolled in counseling. The quitline has continued to experience high call volumes. Due to the implementation of a new tobacco cessation law which mandates Medicaid, Managed Care Organizations, and Commercial Insurance provide barrier-free tobacco cessation benefits, Kentucky is now offering free NRT to uninsured and Medicare callers.",
632
+ "quitCalls": "Incoming calls to the Kentucky state quitline increased by an average of 79% during the 2023 Tips From Former Smokers (Tips) Campaign. The Kentucky state quitline received more than 4,853 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023. ",
633
+ "url": "#Kentucky",
634
+ "ProdLost": " $2.7M ",
635
+ "uid": "US-KY"
636
+ },
637
+ {
638
+ "stateName": "Louisiana",
639
+ "stateAbbr": "LA",
640
+ "keyFactOne": "25.5",
641
+ "keyFactTwo": "7.0",
642
+ "keyFactState": "Louisiana",
643
+ "keyFactState2": "Louisiana",
644
+ "activities": "1.6M",
645
+ "smokedCig": "15.7%",
646
+ "adultsDie": "7,200",
647
+ "spentOnHC": "$1.9B",
648
+ "PHResonse": "There is no safe level of exposure to secondhand smoke. It causes stroke, lung cancer, and coronary heart disease in adults. While Louisiana has a statewide smoke-free law that prohibits smoking in workplaces and restaurants, the state law continues to allow smoking in bars and casinos. Upon request, the state provides research, data and analysis, and scientific consultation to communities, multiunit housing operators, hospitals, businesses, and colleges and universities that want to protect residents from secondhand smoke. In 2015, New Orleans adopted a comprehensive smoke-free law that prohibits smoking and electronic cigarette use in all indoor areas of workplaces and public places, including all hotel rooms, restaurants, bars, and casinos. With the adoption of this law, New Orleans became the largest city in the U.S. to prohibit smoking in casinos. With the adoption of the New Orleans law, 11% of Louisiana residents are now protected by comprehensive smoke-free policies.",
649
+ "quitCalls": "Incoming calls to the Louisiana state quitline increased by an average of 84% during the 2023 Tips From Former Smokers (Tips) Campaign. The Louisiana state quitline received more than 4,765 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023. ",
650
+ "url": "#Louisiana",
651
+ "ProdLost": " $2.6M ",
652
+ "uid": "US-LA"
653
+ },
654
+ {
655
+ "stateName": "Maine",
656
+ "stateAbbr": "ME",
657
+ "keyFactOne": "18.1",
658
+ "keyFactTwo": "4.3",
659
+ "keyFactState": "Maine",
660
+ "keyFactState2": "Maine",
661
+ "activities": "1.2M",
662
+ "smokedCig": "14.0%",
663
+ "adultsDie": "2,400",
664
+ "spentOnHC": "$811M",
665
+ "PHResonse": "There is no safe level of exposure to secondhand smoke. It causes stroke, lung cancer, and coronary heart disease in adults. Maine has a comprehensive smoke-free law that prohibits smoking in all indoor areas of workplaces, restaurants, and bars that has been in effect since 2009. Since that law was adopted, Maine has continued to work to reduce tobacco use and protect people from secondhand smoke, with a focus on youth. Upon request, the state provides research, data and analysis, and scientific consultation to communities, multiunit housing operators, hospitals, businesses, and colleges and universities that want to protect residents from secondhand smoke. For example, Bangor City Council recently approved a prohibition on smoking in city parks that includes playgrounds, swimming pools, ball fields, and other amenities for children. Additionally, Portland increased the minimum age allowed to purchase tobacco from 18 to 21 in 2016. These policies will further protect youth from exposure to secondhand smoke in parks and playgrounds and reduce youth access to tobacco products in stores.",
666
+ "quitCalls": "Incoming calls to the Maine state quitline increased by an average of 23% during the 2023 Tips From Former Smokers (Tips) Campaign. The Maine state quitline received more than 3,156 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023. ",
667
+ "url": "#Maine",
668
+ "ProdLost": " $2.3M ",
669
+ "uid": "US-ME"
670
+ },
671
+ {
672
+ "stateName": "Maryland",
673
+ "stateAbbr": "MD",
674
+ "keyFactOne": "15.6",
675
+ "keyFactTwo": "3.6",
676
+ "keyFactState": "Maryland",
677
+ "keyFactState2": "Maryland",
678
+ "activities": "1.7M",
679
+ "smokedCig": "9.1%",
680
+ "adultsDie": "7,500",
681
+ "spentOnHC": "$2.7B",
682
+ "PHResonse": "Despite Maryland's success in lowering youth tobacco use rates, the state program found that many Maryland retailers were illegally selling tobacco to kids at increasing rates. In 2014, just 37% of Maryland youth reported being asked to provide photo ID to purchase cigarettes, and nearly 70% of youth smokers reported being able to purchase cigarettes directly or by proxy. In response, the program launched the Responsible Tobacco Retailer Initiative, which educated retailers, increased the enforcement of youth access laws, and improved partnerships between state, local, public and private entities, including retailers. This concerted effort proved to be successful, illegal tobacco sales to minors declined by 56% from 2014 to 2015. Due to this positive outcome, Maryland continues to implement the Responsible Tobacco Retailer Initiative, sustaining effective programs and partnerships. State compliance inspections from 2016 show the violation rate has declined even further less than 11% of retailers are selling tobacco to minors, a 65% reduction from 2014.",
683
+ "quitCalls": "Incoming calls to the Maryland state quitline increased by an average of 54% during the 2023 Tips From Former Smokers (Tips) Campaign. The Maryland state quitline received more than 8,241 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023. ",
684
+ "url": "#Maryland",
685
+ "ProdLost": " $3.8M ",
686
+ "uid": "US-MD"
687
+ },
688
+ {
689
+ "stateName": "Massachusetts",
690
+ "stateAbbr": "MA",
691
+ "keyFactOne": "18.7",
692
+ "keyFactTwo": "3.5",
693
+ "keyFactState": "US",
694
+ "keyFactState2": "Massachusetts",
695
+ "activities": "1.9M",
696
+ "smokedCig": "9.8%",
697
+ "adultsDie": "9,300",
698
+ "spentOnHC": "$4.1B",
699
+ "PHResonse": "Pharmacies are places where people can receive both medication and health care advice. Tobacco-free pharmacies allow pharmacies to fulfill their primary mission of health promotion. Upon request, Massachusetts provides research, data and analysis, and scientific consultation to communities and pharmacies that want to promote tobacco-free pharmacies. In 2009, Boston and Needham became early adopters of tobacco-free policies for retail outlets with a pharmacy. Removing tobacco sales from pharmacies can change social norms about the acceptability of tobacco use. Additionally, smokers who are trying to quit are not exposed to tobacco products sold from the same place where they are receiving their prescription cessation medication. Since the first two policies in Massachusetts were adopted in 2009, at least 146 jurisdictions in the state have followed suit and adopted tobacco-free pharmacy policies, making Massachusetts a national leader on this issue.",
700
+ "quitCalls": "Incoming calls to the Massachusetts state quitline increased by an average of 59% during the 2023 Tips From Former Smokers (Tips) Campaign. The Massachusetts state quitline received more than 4,994 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023. ",
701
+ "url": "#Massachusets",
702
+ "ProdLost": " $3.3M ",
703
+ "uid": "US-MA"
704
+ },
705
+ {
706
+ "stateName": "Michigan",
707
+ "stateAbbr": "MI",
708
+ "keyFactOne": "14.1",
709
+ "keyFactTwo": "1.7",
710
+ "keyFactState": "Michigan",
711
+ "keyFactState2": "Michigan",
712
+ "activities": "2.3M",
713
+ "smokedCig": "13.6%",
714
+ "adultsDie": "16,200",
715
+ "spentOnHC": "$4.6B",
716
+ "PHResonse": "There is no safe level of exposure to secondhand smoke. It causes stroke, lung cancer, and coronary heart disease in adults. Michigan has a comprehensive smoke-free law that prohibits smoking in all indoor areas of workplaces, restaurants, and bars that has been in effect since 2010. Upon request, the state provides research, data and analysis, and scientific consultation to communities, multiunit housing operators, hospitals, businesses, and colleges and universities that want to protect residents from secondhand smoke. Currently, 25 colleges and universities in the state have adopted tobacco-free campus policies voluntarily, and 77 of 124 public housing authorities have adopted policies making housing units smoke-free.",
717
+ "quitCalls": "Incoming calls to the Michigan state quitline increased by an average of 94% during the 2023 Tips From Former Smokers (Tips) Campaign. The Michigan state quitline received more than 8,412 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023.",
718
+ "url": "#Michigan",
719
+ "ProdLost": " $2.8M ",
720
+ "uid": "US-MI"
721
+ },
722
+ {
723
+ "stateName": "Minnesota",
724
+ "stateAbbr": "MN",
725
+ "keyFactOne": "18.7",
726
+ "keyFactTwo": "3.8",
727
+ "keyFactState": "US",
728
+ "keyFactState2": "US",
729
+ "activities": "1.6M",
730
+ "smokedCig": "12.2%",
731
+ "adultsDie": "5,900",
732
+ "spentOnHC": "$2.5B",
733
+ "PHResonse": "Minnesota's tobacco prevention and control program is working to eliminate barriers to help smokers quit for good. Most smokers try a number of times to quit successfully, so eliminating barriers to quitting, such as copayments for treatment or limits on the number of quit attempts covered by insurance, are critical ways to help smokers quit. To help low-income smokers quit, the Minnesota tobacco program and the state Medicaid program worked to eliminate copayments on tobacco cessation medication for Medicaid recipients. The state also conducted direct outreach to Medicaid providers to train them on the benefit and help them understand how the benefit works. The state also developed public service announcements that emphasized the no-cost benefits of medications and cessation counseling to the state's Medicaid population.",
734
+ "quitCalls": "Incoming calls to the Minnesota state quitline increased by an average of 75% during the 2023 Tips From Former Smokers (Tips) Campaign. The Minnesota state quitline received more than 3,378 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023.",
735
+ "url": "#Minnesota",
736
+ "ProdLost": " $3.2M ",
737
+ "uid": "US-MN"
738
+ },
739
+ {
740
+ "stateName": "Mississippi",
741
+ "stateAbbr": "MS",
742
+ "keyFactOne": "21.6",
743
+ "keyFactTwo": "5.9",
744
+ "keyFactState": "Mississippi",
745
+ "keyFactState2": "Mississippi",
746
+ "activities": "1.3M",
747
+ "smokedCig": "15.6%",
748
+ "adultsDie": "5,400",
749
+ "spentOnHC": "$1.2B",
750
+ "PHResonse": "There is no safe level of exposure to secondhand smoke. It causes stroke, lung cancer, and coronary heart disease in adults. Mississippi has a tradition of adopting local comprehensive smoke-free policies throughout the state. Currently, approximately one-third of the state is protected by comprehensive policies at the city or county level that prohibit smoking in all indoor areas of workplaces, restaurants, and bars. Upon request, the state provides research, data and analysis, and scientific consultation to communities, multiunit housing operators, hospitals, businesses, and colleges and universities that want to protect residents from secondhand smoke. In fact, 10 colleges and universities prohibit tobacco use in buildings and on campus grounds in Mississippi.",
751
+ "quitCalls": "Incoming calls to the Mississippi state quitline increased by an average of 22% during the 2023 Tips From Former Smokers (Tips) Campaign. The Mississippi state quitline received more than 5,443 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023. ",
752
+ "url": "#Mississippi",
753
+ "ProdLost": " $2.3M ",
754
+ "uid": "US-MS"
755
+ },
756
+ {
757
+ "stateName": "Missouri",
758
+ "stateAbbr": "MO",
759
+ "keyFactOne": "21.3",
760
+ "keyFactTwo": "5.1",
761
+ "keyFactState": "Missouri",
762
+ "keyFactState2": "Missouri",
763
+ "activities": "1.9M",
764
+ "smokedCig": "15.3%",
765
+ "adultsDie": "11,000",
766
+ "spentOnHC": "$3.0B",
767
+ "PHResonse": "There is no safe level of exposure to secondhand smoke. It causes stroke, lung cancer, and coronary heart disease in adults. Missouri is focused on increasing tobacco-free and smoke-free campuses at Missouri colleges and universities. Tobacco-free environments mean that no tobacco product is used at any time, whereas smoke-free environments prohibit the use of combusted tobacco products only. Smoke-free and tobacco-free environments prevent initiation, encourage quitting, and protect nonsmokers from the harms of secondhand smoke exposure. Missouri's tobacco control program partnered with colleges and universities to educate stakeholders on the importance of having tobacco-free campuses. By 2016, Missouri had increased the number of colleges or universities that are smoke-free from 26 to 32 and five of these campuses are fully tobacco-free. These policies protect more than 200,000 Missouri students throughout the state from secondhand smoke.",
768
+ "quitCalls": "Incoming calls to the Missouri state quitline increased by an average of 77% during the 2023 Tips From Former Smokers (Tips) Campaign. The Missouri state quitline received more than 6,885 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023.",
769
+ "url": "#Missouri",
770
+ "ProdLost": " $2.6M ",
771
+ "uid": "US-MO"
772
+ },
773
+ {
774
+ "stateName": "Montana",
775
+ "stateAbbr": "MT",
776
+ "keyFactOne": "27.0",
777
+ "keyFactTwo": "7.0",
778
+ "keyFactState": "Montana",
779
+ "keyFactState2": "Montana",
780
+ "activities": "1.4M",
781
+ "smokedCig": "12.4%",
782
+ "adultsDie": "1,600",
783
+ "spentOnHC": "$441M",
784
+ "PHResonse": "Montana has made educating youth about the harms of tobacco use a key component in the state's plan to prevent youth use. From 2014-2016, Montana funded 40 grants for youth workgroups and summits throughout the state. The state also holds an annual Native American Teens Against Commercial Tobacco camp, attended by an average of 70 Native American youth representing several tribes in Montana. The three-day meeting includes opportunities for students to learn about the dangers of commercial tobacco. Three hundred and nine (75%) school districts in the state have comprehensive tobacco-free policies.",
785
+ "quitCalls": "The Montana state quitline received more than 1,799 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023. ",
786
+ "url": "#Montana",
787
+ "ProdLost": " $2.1M ",
788
+ "uid": "US-MT"
789
+ },
790
+ {
791
+ "stateName": "Nebraska",
792
+ "stateAbbr": "NE",
793
+ "keyFactOne": "14.9",
794
+ "keyFactTwo": "3.6",
795
+ "keyFactState": "Nebraska",
796
+ "keyFactState2": "Nebraska",
797
+ "activities": "430K",
798
+ "smokedCig": "12.1%",
799
+ "adultsDie": "2,500",
800
+ "spentOnHC": "$795M",
801
+ "PHResonse": "There is no safe level of exposure to secondhand smoke. It causes stroke, lung cancer, and coronary heart disease in adults. Nebraska has a comprehensive smoke-free law that prohibits smoking in all indoor areas of workplaces, restaurants, and bars that has been in effect since 2009. Since that law was adopted, Nebraska has continued to expand areas where residents are protected from exposure to secondhand smoke. Upon request, the state provides research, data and analysis, and scientific consultation to communities, multiunit housing operators, hospitals, businesses, and colleges and universities that want to protect residents from secondhand smoke. For example, the University of Nebraska Omaha has established a tobacco-free campus. Additionally, Community Alliance, a social service agency with treatment centers that help adults with mental illness, recently implemented a tobacco-free campus which includes 88 housing units for residents. Throughout Nebraska, 39 public housing authorities have made some or all of their housing units smoke-free.",
802
+ "quitCalls": "Incoming calls to the Nebraska state quitline increased by an average of 17% during the 2023 Tips From Former Smokers (Tips) Campaign. The Nebraska state quitline received more than 2,030 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023. ",
803
+ "url": "#Nebraska",
804
+ "ProdLost": " $3.0M ",
805
+ "uid": "US-NE"
806
+ },
807
+ {
808
+ "stateName": "Nevada",
809
+ "stateAbbr": "NV",
810
+ "keyFactOne": "18.7",
811
+ "keyFactTwo": "4.8",
812
+ "keyFactState": "US",
813
+ "keyFactState2": "Nevada",
814
+ "activities": "1.4M",
815
+ "smokedCig": "14.2%",
816
+ "adultsDie": "4,100",
817
+ "spentOnHC": "$1.1B",
818
+ "PHResonse": "There is no safe level of exposure to secondhand smoke. It causes stroke, lung cancer, and coronary heart disease in adults. Nevada funds three local health districts to work on educational media campaigns, educate youth on the dangers of secondhand smoke, expand tobacco-free universities and colleges, and smoke-free multiunit housing. Tobacco-free environments mean that no tobacco product is used at any time, whereas smoke-free environments prohibit the use of combusted tobacco products only. Smoke-free and tobacco-free environments prevent initiation, encourage quitting, and protect nonsmokers from the harms of secondhand smoke exposure. In 2014, the University of Nevada, Reno, enacted a tobacco-free campus policy, which protects approximately 21,000 undergraduate students from secondhand smoke exposure on campus.",
819
+ "quitCalls": "Incoming calls to the Nevada state quitline increased by an average of 85% during the 2023 Tips From Former Smokers (Tips) Campaign. The Nevada state quitline received more than 1,829 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023.",
820
+ "url": "#Nevada",
821
+ "ProdLost": " $2.2M ",
822
+ "uid": "US-NV"
823
+ },
824
+ {
825
+ "stateName": "New Hampshire",
826
+ "stateAbbr": "NH",
827
+ "keyFactOne": "18.7",
828
+ "keyFactTwo": "3.8",
829
+ "keyFactState": "US",
830
+ "keyFactState2": "US",
831
+ "activities": "1.1M",
832
+ "smokedCig": "10.4%",
833
+ "adultsDie": "1,900",
834
+ "spentOnHC": "$729M",
835
+ "PHResonse": "People are more likely to quit smoking successfully if they have access to FDA-approved cessation medications and counseling. New Hampshire works to find opportunities to increase demand for quitting through increased access, availability, and awareness of tools that help smokers quit. In recent years, the state has developed a campaign that has utilized CDC's Tips From Former Smokers (Tips) Campaign materials and provided free nicotine replacement therapy for callers to the state's quitline. The campaigns are designed to occur around the New Year, when 3 out of 5 current smokers in New Hampshire will be making New Year's resolutions to quit.",
836
+ "quitCalls": "Incoming calls to the New Hampshire state quitline increased by a average of 61% during the 2023 Tips From Former Smokers (Tips) Campaign. The New Hampshire state quitline received more than 1,811 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023.",
837
+ "url": "#New Hampshire",
838
+ "ProdLost": " $1.9M ",
839
+ "uid": "US-NH"
840
+ },
841
+ {
842
+ "stateName": "New Jersey",
843
+ "stateAbbr": "NJ",
844
+ "keyFactOne": "18.7",
845
+ "keyFactTwo": "3.7",
846
+ "keyFactState": "US",
847
+ "keyFactState2": "New Jersey",
848
+ "activities": "1.9M",
849
+ "smokedCig": "9.1%",
850
+ "adultsDie": "11,800",
851
+ "spentOnHC": "$4.1B",
852
+ "PHResonse": "There is no safe level of exposure to secondhand smoke. It causes stroke, lung cancer, and coronary heart disease in adults. New Jersey is a state with strong tobacco control policies and one of the initial states to adopt a comprehensive smoke-free law in 2006. Since that law was adopted, New Jersey has continued to inform efforts that protect residents from exposure to secondhand smoke. Upon request, the state provides research, data and analysis, and scientific consultation to communities, multiunit housing operators, hospitals, businesses, and colleges and universities that want to protect residents from second-hand smoke. For example, 313 communities have policies that make parks and recreational areas smoke-free in New Jersey. New Jersey has also been successful in engaging health care providers and systems to expand utilization of proven cessation services. The state works with major hospitals to create systems that increase hospital referrals. During trainings with providers, champions are identified to interface with other allied health providers to encourage patient and client referrals to the state's quitline.",
853
+ "quitCalls": "Incoming calls to the New Jersey state quitline increased by an average of 77% during the 2023 Tips From Former Smokers (Tips) Campaign. The New Jersey state quitline received more than 4,032 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023.",
854
+ "url": "#New Jersey",
855
+ "ProdLost": " $2.3M ",
856
+ "uid": "US-NJ"
857
+ },
858
+ {
859
+ "stateName": "New Mexico",
860
+ "stateAbbr": "NM",
861
+ "keyFactOne": "25.6",
862
+ "keyFactTwo": "3.7",
863
+ "keyFactState": "New Mexico",
864
+ "keyFactState2": "New Mexico",
865
+ "activities": "1.1M",
866
+ "smokedCig": "12.2%",
867
+ "adultsDie": "2,600",
868
+ "spentOnHC": "$844M",
869
+ "PHResonse": "In New Mexico, while 9% of cigarette smokers are Spanish-speaking, they make up only 5% of the state's quitline users. The state observed that cessation services were effective for Spanish speakers who received them, but culturally appropriate education campaigns were critical to reach this population. The state developed a Spanish-language campaign, DEJELO YA, featuring US Olympic Silver Medalist Leo Manzano. The campaign included television, radio, and supportive print and outdoor advertising, which produced a 31% increase in Spanish-speaking enrollees to the state's quitline.",
870
+ "quitCalls": "The New Mexico state quitline received more than 3,626 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023.",
871
+ "url": "#New Mexico",
872
+ "ProdLost": " $1.4M ",
873
+ "uid": "US-NM"
874
+ },
875
+ {
876
+ "stateName": "New York",
877
+ "stateAbbr": "NY",
878
+ "keyFactOne": "16.9",
879
+ "keyFactTwo": "5.0",
880
+ "keyFactState": "New York",
881
+ "keyFactState2": "New York",
882
+ "activities": "2.9M",
883
+ "smokedCig": "9.3%",
884
+ "adultsDie": "28,200",
885
+ "spentOnHC": "$10.4B",
886
+ "PHResonse": "There is no safe level of exposure to secondhand smoke. It causes stroke, lung cancer, and coronary heart disease in adults. New York is a state with strong tobacco control policies and one of the initial states to adopt a comprehensive smoke-free law. Since that law was adopted, New York has continued to inform efforts that protect residents from exposure to secondhand smoke. Upon request, the state provides research, data and analysis, and scientific consultation to communities, multiunit housing operators, hospitals, businesses, and colleges and universities that want to protect residents from secondhand smoke. For example, smoke-free policies in public housing authorities can protect residents in low-income housing from secondhand smoke exposure and prevent illness and death in vulnerable populations. In 2016, continued efforts by the New York State Tobacco Control Program resulted in 31 of 84 public housing authorities adopting 100% smoke-free multiunit housing policies, covering 19,848 housing units across the state.",
887
+ "quitCalls": "Incoming calls to the New York state quitline increased by an average of 70% during the 2023 Tips From Former Smokers (Tips) Campaign. The New York state quitline received more than 9,987 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023. ",
888
+ "url": "#New York",
889
+ "ProdLost": " $2.0M ",
890
+ "uid": "US-NY"
891
+ },
892
+ {
893
+ "stateName": "North Carolina",
894
+ "stateAbbr": "NC",
895
+ "keyFactOne": "18.7",
896
+ "keyFactTwo": "3.9",
897
+ "keyFactState": "US",
898
+ "keyFactState2": "North Carolina",
899
+ "activities": "2.4M",
900
+ "smokedCig": "13.2%",
901
+ "adultsDie": "14,200",
902
+ "spentOnHC": "$3.8B",
903
+ "PHResonse": "People are more likely to quit smoking successfully if they have access to FDA-approved cessation medications and counseling. North Carolina continues to look for opportunities to increase demand for quitting by providing tools to help smokers quit. For example, the state's health foundation signed service agreements with the Appalachian Health District and the Caldwell County Health Department to provide eight weeks of nicotine replacement therapy to residents of these areas. The state continues to increase the number of partnerships to expand capacity of the quitline. Also, the state has worked with partners from Duke Cancer Center and the University of North Carolina School of Medicine's Nicotine Dependence Center to create a Certified Tobacco Treatment Specialist Training for licensed clinic staff.",
904
+ "quitCalls": "Incoming calls to the North Carolina state quitline increased by an average of 32% during the 2023 Tips From Former Smokers (Tips) Campaign. The North Carolina state quitline received more than 14,761 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023.",
905
+ "url": "#North Carolina",
906
+ "ProdLost": " $1.9M ",
907
+ "uid": "US-NC"
908
+ },
909
+ {
910
+ "stateName": "North Dakota",
911
+ "stateAbbr": "ND",
912
+ "keyFactOne": "23.0",
913
+ "keyFactTwo": "5.9",
914
+ "keyFactState": "North Dakota",
915
+ "keyFactState2": "North Dakota",
916
+ "activities": "1.0M",
917
+ "smokedCig": "13.4%",
918
+ "adultsDie": "1,000",
919
+ "spentOnHC": "$326M",
920
+ "PHResonse": "There is no safe level of exposure to secondhand smoke. It causes stroke, lung cancer, and coronary heart disease in adults. North Dakota has a comprehensive smoke-free law that prohibits smoking in all indoor areas of workplaces, restaurants, and bars that has been in effect since 2012. North Dakota also prohibits use of electronic cigarettes in places where smoking is also prohibited. Upon request, the state provides research, data and analysis, and scientific consultation to state and local lawmakers and communities about the latest tobacco prevention and control science. In 2015, the state prohibited electronic cigarette sales and use by minors and also required child-resistant packaging for liquid nicotine containers. Several communities, such as Grand Forks and Bismarck, have also enacted local laws requiring tobacco licenses for stores selling electronic cigarettes and requiring that these products be placed behind the counter.",
921
+ "quitCalls": "Incoming calls to the North Dakota state quitline increased by an average of 23% during the 2023 Tips From Former Smokers (Tips) Campaign. The North Dakota state quitline received more than 899 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023.",
922
+ "url": "#North Dakota",
923
+ "ProdLost": " $2.0M ",
924
+ "uid": "US-ND"
925
+ },
926
+ {
927
+ "stateName": "Ohio",
928
+ "stateAbbr": "OH",
929
+ "keyFactOne": "20.4",
930
+ "keyFactTwo": "3.3",
931
+ "keyFactState": "Ohio",
932
+ "keyFactState2": "Ohio",
933
+ "activities": "2.5M",
934
+ "smokedCig": "15.0%",
935
+ "adultsDie": "20,200",
936
+ "spentOnHC": "$5.6B",
937
+ "PHResonse": "There is no safe level of exposure to secondhand smoke. It causes stroke, lung cancer, and coronary heart disease in adults. Ohio has a comprehensive smoke-free law that prohibits smoking in all indoor areas of workplaces, restaurants, and bars, which has been in effect since 2006. Since that law was adopted, Ohio has continued to inform efforts to protect residents from exposure to secondhand smoke. Upon request, the state provides research, data and analysis, and scientific consultation to communities, multiunit housing operators, hospitals, businesses, and colleges and universities that want to protect residents from secondhand smoke. Currently, 13 colleges and universities have adopted tobacco-free campus policies in the state, and public housing authorities in 8 counties or cities have adopted policies making housing units smoke-free.",
938
+ "quitCalls": "Incoming calls to the Ohio state quitline increased by an average of 41% during the 2023 Tips From Former Smokers (Tips) Campaign. The Ohio state quitline received more than 14,055 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023. ",
939
+ "url": "#Ohio",
940
+ "ProdLost": " $2.0M ",
941
+ "uid": "US-OH"
942
+ },
943
+ {
944
+ "stateName": "Oklahoma",
945
+ "stateAbbr": "OK",
946
+ "keyFactOne": "22.1",
947
+ "keyFactTwo": "4.0",
948
+ "keyFactState": "Oklahoma",
949
+ "keyFactState2": "Oklahoma",
950
+ "activities": "1.6M",
951
+ "smokedCig": "15.8%",
952
+ "adultsDie": "7,500",
953
+ "spentOnHC": "$1.6B",
954
+ "PHResonse": "Oklahoma's tobacco prevention and control program is working to eliminate barriers to help smokers quit for good. Most smokers try a number of times to quit successfully, so eliminating barriers to quitting, such as copayments for treatment or limits on the number of quit attempts covered by insurance, are critical ways to help smokers quit. The Oklahoma tobacco control program identified that one-third of the state's Medicaid population smokes. Seeking to reduce this disparity, the state worked to integrate cessation treatments into routine care for Medicaid patients. The program focused on reducing barriers, such as removing preauthorization. Further, county health departments cooperated by screening all clients for tobacco use and directly referring them to the state's quitline. In less than six months after this integration intervention, utilization of the benefit increased by about 50%. The approach also identified copayments for tobacco cessation treatment as a major barrier for Medicaid smokers. After demonstrating that a change would have minimal fiscal impact on the state budget, the Oklahoma Health Care Authority eliminated copayments for FDA-approved cessation medications.",
955
+ "quitCalls": "Incoming calls to the Oklahoma state quitline increased by an average of 8% during the 2023 Tips From Former Smokers (Tips) Campaign. The Oklahoma state quitline received more than 20,934 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023. ",
956
+ "url": "#Oklahoma",
957
+ "ProdLost": " $1.8M ",
958
+ "uid": "US-OK"
959
+ },
960
+ {
961
+ "stateName": "Oregon",
962
+ "stateAbbr": "OR",
963
+ "keyFactOne": "18.7",
964
+ "keyFactTwo": "3.8",
965
+ "keyFactState": "US",
966
+ "keyFactState2": "US",
967
+ "activities": "1.6M",
968
+ "smokedCig": "10.6%",
969
+ "adultsDie": "5,500",
970
+ "spentOnHC": "$1.5B",
971
+ "PHResonse": "There is no safe level of exposure to secondhand smoke. It causes stroke, lung cancer, and coronary heart disease in adults. Oregon has a comprehensive smoke-free law that prohibits smoking in all indoor areas of workplaces, restaurants, and bars that has been in effect since 2009. In 2015, the state prohibited the use of electronic cigarettes indoors. Since that law was adopted, Oregon has continued to inform efforts to protect residents from exposure to secondhand smoke. Upon request, the state provides research, data and analysis, and scientific consultation to communities, multiunit housing operators, hospitals, businesses, and colleges and universities that want to protect residents from secondhand smoke. Currently, 6 of 7 public universities and 7 of 17 community colleges have tobacco-free or smoke-free campuses in Oregon. Twenty of Oregon's twenty-two public housing authorities prohibit smoking on all their properties. All state parks are smoke-free and all mental health and residential addiction treatment facilities that receive state funds are 100% tobacco-free.",
972
+ "quitCalls": "Incoming calls to the Oregon state quitline increased by an average of 51% during the 2023 Tips From Former Smokers (Tips) Campaign. The Oregon state quitline received more than 3,280 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023. ",
973
+ "url": "#Oregon",
974
+ "ProdLost": " $1.6M ",
975
+ "uid": "US-OR"
976
+ },
977
+ {
978
+ "stateName": "Pennsylvania",
979
+ "stateAbbr": "PA",
980
+ "keyFactOne": "19.7",
981
+ "keyFactTwo": "4.2",
982
+ "keyFactState": "Pennsylvania",
983
+ "keyFactState2": "Pennsylvania",
984
+ "activities": "2.4M",
985
+ "smokedCig": "Data Not Available",
986
+ "adultsDie": "22,000",
987
+ "spentOnHC": "$6.4B",
988
+ "PHResonse": "Pennsylvania has a history of successfully working with youth groups on tobacco prevention, such as the Young Lungs at Play Initiative. Because of work by this group, almost 75% of the state's children live in a city or county with tobacco-free playgrounds. There is no safe level of exposure to secondhand smoke. It causes respiratory infections, ear infections, and more frequent and severe asthma in children, as well as stroke, lung cancer, and coronary heart disease in adults. Upon request, Pennsylvania provides research, data and analysis, and scientific consultation to communities, multiunit housing operators, hospitals, businesses, and colleges and universities that want to protect residents from secondhand smoke. Currently, the Lungs at Play Initiative is working to increase smoke-free multiunit housing in the state.",
989
+ "quitCalls": "Incoming calls to the Pennsylvania state quitline increased by an average of 66% during the 2023 Tips From Former Smokers (Tips) Campaign. The Pennsylvania state quitline received more than 14,846 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023. ",
990
+ "url": "#Pennsylvania",
991
+ "ProdLost": " $1.8M ",
992
+ "uid": "US-PA"
993
+ },
994
+ {
995
+ "stateName": "Rhode Island",
996
+ "stateAbbr": "RI",
997
+ "keyFactOne": "17.5",
998
+ "keyFactTwo": "3.0",
999
+ "keyFactState": "Rhode Island",
1000
+ "keyFactState2": "Rhode Island",
1001
+ "activities": "1.4M",
1002
+ "smokedCig": "9.5%",
1003
+ "adultsDie": "1,800",
1004
+ "spentOnHC": "$640M",
1005
+ "PHResonse": "Rhode Island has a history of strong tobacco control programs. The state was among the first to adopt a comprehensive smoke-free law that prohibits smoking in all indoor areas of workplaces, restaurants, and bars. Because inexpensive and flavored tobacco products appeal to youth, Providence adopted new ordinances in 2012 to address these issues. Enactment of these new ordinances prohibits tobacco retailers from accepting or redeeming any coupons for tobacco products and prohibits the sale of any flavored tobacco products other than menthol. Similar policies have also been adopted in Central Falls and Woonsocket. Today, Rhode Island has the lowest reported youth smoking rate in the country at 4.8%.",
1006
+ "quitCalls": "Incoming calls to the Rhode Island state quitline increased by an average of 47% during the 2023 Tips From Former Smokers (Tips) Campaign. The Rhode Island state quitline received more than 927 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023. ",
1007
+ "url": "#Rhode Island",
1008
+ "ProdLost": " $1.8M ",
1009
+ "uid": "US-RI"
1010
+ },
1011
+ {
1012
+ "stateName": "South Carolina",
1013
+ "stateAbbr": "SC",
1014
+ "keyFactOne": "18.7",
1015
+ "keyFactTwo": "3.3",
1016
+ "keyFactState": "US",
1017
+ "keyFactState2": "South Carolina",
1018
+ "activities": "1.7M",
1019
+ "smokedCig": "12.1%",
1020
+ "adultsDie": "7,200",
1021
+ "spentOnHC": "$1.9B",
1022
+ "PHResonse": "There is no safe level of exposure to secondhand smoke. It causes stroke, lung cancer, and coronary heart disease in adults. South Carolina has a tradition of adopting comprehensive local smoke-free policies throughout the state. As more communities adopt smoke-free laws, the state, upon request, provides research, data and analysis, and scientific consultation to communities, multiunit housing operators, hospitals, businesses, and colleges and universities that want to protect residents from secondhand smoke. For example, 25 colleges and universities prohibit tobacco use in buildings and on campus grounds in South Carolina, including 3 recent policies being adopted at Benedict College, the Citadel, and Orangeburg-Calhoun Technical College. Additionally, 78% of the public school districts have adopted comprehensive tobacco-free policies. These policies aren't limited to schools, as at least 215 faith-based organizations have adopted tobacco-free policies for their buildings and grounds, and more than 36,000 individuals in 726 faith organizations receive monthly bulletins with health promoting tobacco prevention and cessation messages, plus information on resources to help prevent or address chronic diseases.",
1023
+ "quitCalls": "Incoming calls to the South Carolina state quitline increased by an average of 31% during the 2023 Tips From Former Smokers (Tips) Campaign. The South Carolina state quitline received more than 9,553 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023. ",
1024
+ "url": "#South Carolina",
1025
+ "ProdLost": " $1.9M ",
1026
+ "uid": "US-SC"
1027
+ },
1028
+ {
1029
+ "stateName": "South Dakota",
1030
+ "stateAbbr": "SD",
1031
+ "keyFactOne": "16.5",
1032
+ "keyFactTwo": "5.5",
1033
+ "keyFactState": "South Dakota",
1034
+ "keyFactState2": "South Dakota",
1035
+ "activities": "1.0M",
1036
+ "smokedCig": "15.2%",
1037
+ "adultsDie": "1,300",
1038
+ "spentOnHC": "$373M",
1039
+ "PHResonse": "There is no safe level of exposure to secondhand smoke. It causes stroke, lung cancer, and coronary heart disease in adults. South Dakota has a comprehensive smoke-free law that prohibits smoking in all indoor areas of workplaces, restaurants, and bars that has been in effect since 2010. Since that law was adopted, South Dakota has continued to inform efforts that protect residents from exposure to secondhand smoke. Upon request, the state provides research, data and analysis, and scientific consultation to communities, multiunit housing operators, hospitals, businesses, and colleges and universities that want to protect residents from secondhand smoke. Currently, 7 colleges or universities in the state have smoke-free or tobacco-free campus policies, including 4 smoke-free campuses for the University of South Dakota and 13 tobacco-free campuses for Oglala Lakota College, which serves the Pine Ridge Indian Reservation. Tobacco-free environments mean that no tobacco product is used at any time, whereas smoke-free environments prohibit the use of combusted tobacco products only.",
1040
+ "quitCalls": "Incoming calls to the South Dakota state quitline increased by an average of 65% during the 2023 Tips From Former Smokers (Tips) Campaign. The South Dakota state quitline received more than 308 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023. ",
1041
+ "url": "#South Dakota",
1042
+ "ProdLost": " $1.9M ",
1043
+ "uid": "US-SD"
1044
+ },
1045
+ {
1046
+ "stateName": "Tennessee",
1047
+ "stateAbbr": "TN",
1048
+ "keyFactOne": "20.7",
1049
+ "keyFactTwo": "4.9",
1050
+ "keyFactState": "Tennessee",
1051
+ "keyFactState2": "Tennessee",
1052
+ "activities": "1.7M",
1053
+ "smokedCig": "17.0%",
1054
+ "adultsDie": "11,400",
1055
+ "spentOnHC": "$2.7B",
1056
+ "PHResonse": "The Tennessee Governor's office proclaimed February 22-26, 2016, as 2016 Tennessee Quit, to focus multisector efforts on promoting quitting tobacco use in the state. In response, the state health department partnered with rural and metro health departments across the state to identify and engage community partners to promote tobacco cessation. The state also utilized media campaigns, which occurred on radio, television, and social media, to promote quitting during this period. Calls to the state's quitline nearly tripled for the month of February and were the highest number of calls to date for the quitline. Due to the success of the campaign and the engagement of community partners, the state has developed a statewide Tobacco Coalition and will hold a similar themed Quit Week annually.",
1057
+ "quitCalls": "Incoming calls to the Tennessee state quitline increased by an average of 89% during the 2023 Tips From Former Smokers (Tips) Campaign. The Tennessee state quitline received more than 6,692 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023. ",
1058
+ "url": "#Tennessee",
1059
+ "ProdLost": " $2.1M ",
1060
+ "uid": "US-TN"
1061
+ },
1062
+ {
1063
+ "stateName": "Texas",
1064
+ "stateAbbr": "TX",
1065
+ "keyFactOne": "18.8",
1066
+ "keyFactTwo": "3.7",
1067
+ "keyFactState": "Texas",
1068
+ "keyFactState2": "Texas",
1069
+ "activities": "3.3M",
1070
+ "smokedCig": "11.3%",
1071
+ "adultsDie": "28,000",
1072
+ "spentOnHC": "$8.9B",
1073
+ "PHResonse": "Many Community Health Workers (CHW) in Texas work along the border region of the state where many newly immigrated people from across Central and South America are living. Although initial smoking rates can be low in these communities, once people immigrate into the U.S., smoking rates begin to rise. Having CHWs screen and refer tobacco users to the quitline is a critical step in promoting healthy behaviors among this underserved population. To increase quitting, Texas is working with Texas A&M University to incorporate tobacco screening and referral training into CHW certification and is developing continuing education units for CHWs on tobacco screening and cessation referrals. Texas is also working with the University of Texas at Austin to develop and disseminate a telephone app specifically for CHWs to give them the tools they need in the field to educate individuals about tobacco use and make referrals for cessation services.",
1074
+ "quitCalls": "Incoming calls to the Texas state quitline increased by an average of 94% during the 2023 Tips From Former Smokers (Tips) Campaign. The Texas state quitline received more than 13,519 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023. ",
1075
+ "url": "#Texas",
1076
+ "ProdLost": " $2.2M ",
1077
+ "uid": "US-TX"
1078
+ },
1079
+ {
1080
+ "stateName": "Utah",
1081
+ "stateAbbr": "UT",
1082
+ "keyFactOne": "9.5",
1083
+ "keyFactTwo": "1.9",
1084
+ "keyFactState": "Utah",
1085
+ "keyFactState2": "Utah",
1086
+ "activities": "1.3M",
1087
+ "smokedCig": "6.0%",
1088
+ "adultsDie": "1,300",
1089
+ "spentOnHC": "$542M",
1090
+ "PHResonse": "Utah has the lowest cigarette smoking rates in the country. There is no safe level of exposure to secondhand smoke. It causes stroke, lung cancer, and coronary heart disease in adults. Utah implemented a comprehensive smoke-free law prohibiting smoking in all indoor areas of workplaces, restaurants, and bars in 2009. Since that law was enacted, Utah has continued to inform efforts to protect residents from exposure to secondhand smoke. Upon request, the state provides research, data and analysis, and scientific consultation to communities, multiunit housing operators, hospitals, businesses, and colleges and universities that want to protect residents from secondhand smoke. Currently, there are more than 35,000 smoke-free housing units in 18 Utah counties. Further, the state has developed a toolkit and signage to assist communities/property management companies that voluntarily adopt smoke-free housing.",
1091
+ "quitCalls": "Incoming calls to the Utah state quitline increased by an average of 21% during the 2023 Tips From Former Smokers (Tips) Campaign. The Utah state quitline received more than 2,708 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023.",
1092
+ "url": "#Utah",
1093
+ "ProdLost": " $1.8M ",
1094
+ "uid": "US-UT"
1095
+ },
1096
+ {
1097
+ "stateName": "Vermont",
1098
+ "stateAbbr": "VT",
1099
+ "keyFactOne": "16.2",
1100
+ "keyFactTwo": "5.4",
1101
+ "keyFactState": "Vermont",
1102
+ "keyFactState2": "Vermont",
1103
+ "activities": "1.1M",
1104
+ "smokedCig": "11.3%",
1105
+ "adultsDie": "1,000",
1106
+ "spentOnHC": "$348M",
1107
+ "PHResonse": "In Vermont, more low-income adults smoke cigarettes compared to the general population. In order to reach this population, the state began to send mailings to Medicaid users, which included two mailings to Medicaid clients with information on how to receive free counseling and medication through the state's quitline. The state also used targeted media purchases during CDC's Tips From Former Smokers (Tips) Campaign, designed to better reach low-income smokers. Between 2013 and 2015, there was a 55% increase in quitline registrations among Vermont's Medicaid population.",
1108
+ "quitCalls": "The Vermont state quitline received more than 1,269 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023. ",
1109
+ "url": "#Vermont",
1110
+ "ProdLost": " $1.5M ",
1111
+ "uid": "US-VT"
1112
+ },
1113
+ {
1114
+ "stateName": "Virginia",
1115
+ "stateAbbr": "VA",
1116
+ "keyFactOne": "15.5",
1117
+ "keyFactTwo": "2.8",
1118
+ "keyFactState": "Virginia",
1119
+ "keyFactState2": "Virginia",
1120
+ "activities": "1.8M",
1121
+ "smokedCig": "10.9%",
1122
+ "adultsDie": "10,300",
1123
+ "spentOnHC": "$3.1B",
1124
+ "PHResonse": "There is no safe level of exposure to secondhand smoke. It causes stroke, lung cancer, and coronary heart disease in adults. Virginia is a state where local communities are prevented from enacting ordinances to protect people from secondhand smoke in workplaces, restaurants, and bars. However, the state is able to work with locations, such as colleges and public housing authorities, to voluntarily adopt and implement smoke-free building and campus policies. Upon request, the state provides research, data and analysis, and scientific consultation to communities, multiunit housing operators, hospitals, businesses, and colleges and universities that want to protect residents from secondhand smoke. Eight public housing facilities or complexes in Virginia have implemented a smoke-free housing policy. Additionally, 25 public school divisions and 3 colleges or universities in the state have implemented a tobacco-free campus policy.",
1125
+ "quitCalls": "Incoming calls to the Virginia state quitline increased by an average of 76% during the 2023 Tips From Former Smokers (Tips) Campaign. The Virginia state quitline received more than 5,679 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023. ",
1126
+ "url": "#Virginia",
1127
+ "ProdLost": " $2.5M ",
1128
+ "uid": "US-VA"
1129
+ },
1130
+ {
1131
+ "stateName": "Washington",
1132
+ "stateAbbr": "WA",
1133
+ "keyFactOne": "18.7",
1134
+ "keyFactTwo": "3.8",
1135
+ "keyFactState": "US",
1136
+ "keyFactState2": "US",
1137
+ "activities": "1.8M",
1138
+ "smokedCig": "9.0%",
1139
+ "adultsDie": "8,300",
1140
+ "spentOnHC": "$2.8B",
1141
+ "PHResonse": "While Washington has made progress in reducing the number of youth and adults who smoke, there are still opportunities to reach individuals who want to quit, including young adults. To address the issue of young adult smoking rates, Washington's state quitline co-developed a smartphone application designed to reach young adults. The app is designed for adults who want to quit, but who may not be interested in using a telephone quitline and prefer instead a more private, tech-based approach to quitting. Launched in 2015, 36% of users of the smartphone app are age 18-34, compared to the quitline where only 15% of users are age 18-34.",
1142
+ "quitCalls": "Incoming calls to the Washington state quitline increased by an average of 45% during the 2023 Tips From Former Smokers (Tips) Campaign. The Washington state quitline received more than 4,139 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023. ",
1143
+ "url": "#Washington",
1144
+ "ProdLost": " $1.8M ",
1145
+ "uid": "US-WA"
1146
+ },
1147
+ {
1148
+ "stateName": "West Virginia",
1149
+ "stateAbbr": "WV",
1150
+ "keyFactOne": "27.0",
1151
+ "keyFactTwo": "7.6",
1152
+ "keyFactState": "West Virginia",
1153
+ "keyFactState2": "West Virginia",
1154
+ "activities": "1.2M",
1155
+ "smokedCig": "20.4%",
1156
+ "adultsDie": "4,300",
1157
+ "spentOnHC": "$1.0B",
1158
+ "PHResonse": "There is no safe level of exposure to secondhand smoke. It causes stroke, lung cancer, and coronary heart disease in adults. West Virginia has a tradition of adopting comprehensive local smoke-free policies throughout the state. Currently, over 60% of the state is protected by comprehensive county or city ordinances that prohibit smoking in all indoor areas of workplaces, restaurants, and bars. As more communities and counties adopt smoke-free laws, West Virginia has continued to inform efforts that protect residents from exposure to secondhand smoke. Upon request, the state provides research, data and analysis, and scientific consultation to communities, multiunit housing operators, hospitals, businesses, and colleges and universities that want to protect residents from secondhand smoke. For example, 5 colleges and universities prohibit tobacco use in buildings and on campus grounds in West Virginia, including all 3 campuses of Fairmont State University. West Virginia Wesleyan College was the last college to adopt a tobacco-free campus policy in January 2017.",
1159
+ "quitCalls": "Incoming calls to the West Virginia state quitline increased by an average of 32% during the 2023 Tips From Former Smokers (Tips) Campaign. The West Virginia state quitline received more than 7,467 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023.",
1160
+ "url": "#West Virginia",
1161
+ "ProdLost": " $1.6M ",
1162
+ "uid": "US-WV"
1163
+ },
1164
+ {
1165
+ "stateName": "Wisconsin",
1166
+ "stateAbbr": "WI",
1167
+ "keyFactOne": "15.9",
1168
+ "keyFactTwo": "4.5",
1169
+ "keyFactState": "Wisconsin",
1170
+ "keyFactState2": "Wisconsin",
1171
+ "activities": "1.6M",
1172
+ "smokedCig": "12.0%",
1173
+ "adultsDie": "7,900",
1174
+ "spentOnHC": "$2.7B",
1175
+ "PHResonse": "There is no safe level of exposure to secondhand smoke. Secondhand smoke causes stroke, lung cancer, and coronary heart disease in adults. Wisconsin has a comprehensive smoke-free law that prohibits smoking in workplaces, restaurants, and bars, which has been in effect since 2010. Since that law was adopted, Wisconsin has continued to inform efforts to protect residents from exposure to secondhand smoke. The state also provides support to college campuses looking to go tobacco free. To date, there are 25 tobacco-free schools in Wisconsin (including technical schools, and 2 and 4 year colleges). Wisconsin also focuses on smoke-free multi-unit housing and is working with 39 partners from across the state and has helped 57 Wisconsin housing authorities implement smoke-free policies. Finally, the Wisconsin Native American Tobacco Network continues to provide education to casinos on the benefits of smoke-free environments. In addition to this work, Wisconsin is committed to addressing tobacco-related disparities. One example of this commitment is the Wisconsin Nicotine Integration Project (WiNTiP), which works with behavioral health providers to integrate tobacco cessation into the care that they provide.",
1176
+ "quitCalls": "Incoming calls to the Wisconsin state quitline increased by an average of 26% during the 2023 Tips From Former Smokers (Tips) Campaign. The Wisconsin state quitline received more than 5,823 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023.",
1177
+ "url": "#Wisconsin",
1178
+ "ProdLost": " $1.9M ",
1179
+ "uid": "US-WI"
1180
+ },
1181
+ {
1182
+ "stateName": "Wyoming",
1183
+ "stateAbbr": "WY",
1184
+ "keyFactOne": "18.7",
1185
+ "keyFactTwo": "3.8",
1186
+ "keyFactState": "US",
1187
+ "keyFactState2": "US",
1188
+ "activities": "1.0M",
1189
+ "smokedCig": "14.0%",
1190
+ "adultsDie": "800",
1191
+ "spentOnHC": "$258M",
1192
+ "PHResonse": "People are more likely to quit smoking successfully if they have access to counseling and medication. Wyoming's Quit Tobacco Program offers Wyoming residents free access to online quit tools, support from other tobacco users who are trying to quit, and other information to make a quit attempt easier. Individuals who use the quitline also have access to free cessation medication, as well as free counseling with live quit coaches. The likelihood of quitting is even higher when cessation medication is combined with quitline counseling.",
1193
+ "quitCalls": "The Wyoming state quitline received more than 1,224 calls during the 2023 Tips Campaign. More than 100,000 incoming calls nationally to 1-800-QUIT-NOW were associated with the 2023 Tips Campaign which ran from March 6 through September 24, 2023.",
1194
+ "url": "#Wyoming",
1195
+ "ProdLost": " $1.5M ",
1196
+ "uid": "US-WY"
1197
+ }
1198
+ ],
1199
+ "dataFileSize": 69881,
1200
+ "dataFileName": "US-50-states.csv",
1201
+ "dataFileSourceType": "file",
1202
+ "dataFileFormat": "CSV",
1203
+ "preview": true
1204
+ }
1205
+ },
1206
+ "type": "dashboard",
1207
+ "version": "4.25.4",
1208
+ "migrations": {
1209
+ "addColorMigration": true
1210
+ }
1211
+ }