csv2json 0.1.0
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.
- data/.document +5 -0
- data/.gitignore +21 -0
- data/LICENSE +20 -0
- data/README.md +105 -0
- data/Rakefile +55 -0
- data/bin/csv2json +61 -0
- data/lib/csv2json.rb +36 -0
- data/test/fixtures/addresses.csv +16 -0
- data/test/fixtures/addresses.json +167 -0
- data/test/fixtures/photos.csv +13 -0
- data/test/fixtures/photos.json +122 -0
- data/test/fixtures/population.csv +54 -0
- data/test/fixtures/population.json +744 -0
- data/test/helper.rb +10 -0
- data/test/test_csv2json.rb +20 -0
- metadata +80 -0
@@ -0,0 +1,13 @@
|
|
1
|
+
thumbpath,imgpath,imgsrc,width,height,thumbsrc,thumbwidth,thumbheight
|
2
|
+
thumbnails/,images/,paris_01.jpg,350,262,paris_01.jpg,75,56
|
3
|
+
thumbnails/,images/,paris_02.jpg,262,350,paris_02.jpg,75,56
|
4
|
+
thumbnails/,images/,paris_03.jpg,350,262,paris_03.jpg,75,56
|
5
|
+
thumbnails/,images/,paris_04.jpg,262,350,paris_04.jpg,56,75
|
6
|
+
thumbnails/,images/,paris_05.jpg,262,350,paris_05.jpg,56,75
|
7
|
+
thumbnails/,images/,paris_06.jpg,350,262,paris_06.jpg,75,56
|
8
|
+
thumbnails/,images/,paris_07.jpg,262,350,paris_07.jpg,56,75
|
9
|
+
thumbnails/,images/,paris_08.jpg,262,350,paris_08.jpg,56,75
|
10
|
+
thumbnails/,images/,paris_09.jpg,262,350,paris_09.jpg,56,75
|
11
|
+
thumbnails/,images/,paris_10.jpg,350,262,paris_10.jpg,75,56
|
12
|
+
thumbnails/,images/,paris_11.jpg,350,262,paris_11.jpg,75,56
|
13
|
+
thumbnails/,images/,paris_12.jpg,350,262,paris_12.jpg,75,56
|
@@ -0,0 +1,122 @@
|
|
1
|
+
[
|
2
|
+
{
|
3
|
+
"thumbwidth": 75,
|
4
|
+
"imgsrc": "paris_01.jpg",
|
5
|
+
"thumbsrc": "paris_01.jpg",
|
6
|
+
"height": 262,
|
7
|
+
"imgpath": "images/",
|
8
|
+
"thumbheight": 56,
|
9
|
+
"thumbpath": "thumbnails/",
|
10
|
+
"width": 350
|
11
|
+
},
|
12
|
+
{
|
13
|
+
"thumbwidth": 75,
|
14
|
+
"imgsrc": "paris_02.jpg",
|
15
|
+
"thumbsrc": "paris_02.jpg",
|
16
|
+
"height": 350,
|
17
|
+
"imgpath": "images/",
|
18
|
+
"thumbheight": 56,
|
19
|
+
"thumbpath": "thumbnails/",
|
20
|
+
"width": 262
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"thumbwidth": 75,
|
24
|
+
"imgsrc": "paris_03.jpg",
|
25
|
+
"thumbsrc": "paris_03.jpg",
|
26
|
+
"height": 262,
|
27
|
+
"imgpath": "images/",
|
28
|
+
"thumbheight": 56,
|
29
|
+
"thumbpath": "thumbnails/",
|
30
|
+
"width": 350
|
31
|
+
},
|
32
|
+
{
|
33
|
+
"thumbwidth": 56,
|
34
|
+
"imgsrc": "paris_04.jpg",
|
35
|
+
"thumbsrc": "paris_04.jpg",
|
36
|
+
"height": 350,
|
37
|
+
"imgpath": "images/",
|
38
|
+
"thumbheight": 75,
|
39
|
+
"thumbpath": "thumbnails/",
|
40
|
+
"width": 262
|
41
|
+
},
|
42
|
+
{
|
43
|
+
"thumbwidth": 56,
|
44
|
+
"imgsrc": "paris_05.jpg",
|
45
|
+
"thumbsrc": "paris_05.jpg",
|
46
|
+
"height": 350,
|
47
|
+
"imgpath": "images/",
|
48
|
+
"thumbheight": 75,
|
49
|
+
"thumbpath": "thumbnails/",
|
50
|
+
"width": 262
|
51
|
+
},
|
52
|
+
{
|
53
|
+
"thumbwidth": 75,
|
54
|
+
"imgsrc": "paris_06.jpg",
|
55
|
+
"thumbsrc": "paris_06.jpg",
|
56
|
+
"height": 262,
|
57
|
+
"imgpath": "images/",
|
58
|
+
"thumbheight": 56,
|
59
|
+
"thumbpath": "thumbnails/",
|
60
|
+
"width": 350
|
61
|
+
},
|
62
|
+
{
|
63
|
+
"thumbwidth": 56,
|
64
|
+
"imgsrc": "paris_07.jpg",
|
65
|
+
"thumbsrc": "paris_07.jpg",
|
66
|
+
"height": 350,
|
67
|
+
"imgpath": "images/",
|
68
|
+
"thumbheight": 75,
|
69
|
+
"thumbpath": "thumbnails/",
|
70
|
+
"width": 262
|
71
|
+
},
|
72
|
+
{
|
73
|
+
"thumbwidth": 56,
|
74
|
+
"imgsrc": "paris_08.jpg",
|
75
|
+
"thumbsrc": "paris_08.jpg",
|
76
|
+
"height": 350,
|
77
|
+
"imgpath": "images/",
|
78
|
+
"thumbheight": 75,
|
79
|
+
"thumbpath": "thumbnails/",
|
80
|
+
"width": 262
|
81
|
+
},
|
82
|
+
{
|
83
|
+
"thumbwidth": 56,
|
84
|
+
"imgsrc": "paris_09.jpg",
|
85
|
+
"thumbsrc": "paris_09.jpg",
|
86
|
+
"height": 350,
|
87
|
+
"imgpath": "images/",
|
88
|
+
"thumbheight": 75,
|
89
|
+
"thumbpath": "thumbnails/",
|
90
|
+
"width": 262
|
91
|
+
},
|
92
|
+
{
|
93
|
+
"thumbwidth": 75,
|
94
|
+
"imgsrc": "paris_10.jpg",
|
95
|
+
"thumbsrc": "paris_10.jpg",
|
96
|
+
"height": 262,
|
97
|
+
"imgpath": "images/",
|
98
|
+
"thumbheight": 56,
|
99
|
+
"thumbpath": "thumbnails/",
|
100
|
+
"width": 350
|
101
|
+
},
|
102
|
+
{
|
103
|
+
"thumbwidth": 75,
|
104
|
+
"imgsrc": "paris_11.jpg",
|
105
|
+
"thumbsrc": "paris_11.jpg",
|
106
|
+
"height": 262,
|
107
|
+
"imgpath": "images/",
|
108
|
+
"thumbheight": 56,
|
109
|
+
"thumbpath": "thumbnails/",
|
110
|
+
"width": 350
|
111
|
+
},
|
112
|
+
{
|
113
|
+
"thumbwidth": 75,
|
114
|
+
"imgsrc": "paris_12.jpg",
|
115
|
+
"thumbsrc": "paris_12.jpg",
|
116
|
+
"height": 262,
|
117
|
+
"imgpath": "images/",
|
118
|
+
"thumbheight": 56,
|
119
|
+
"thumbpath": "thumbnails/",
|
120
|
+
"width": 350
|
121
|
+
}
|
122
|
+
]
|
@@ -0,0 +1,54 @@
|
|
1
|
+
Geographic area,Total population,Under 18 years,18 to 24 years,25 to 44 years,45 to 64 years,65 years and over,Median age (years),All ages,18 years and over,Flag,Website
|
2
|
+
United States, 281421906, 25.7, 9.6, 30.2, 22.0, 12.4, 35.3, 96.3, 93.4,flag_unitedstates.gif, http://www.usa.gov/
|
3
|
+
Alabama, 4447100, 25.3, 9.9, 29.0, 22.8, 13.0, 35.8, 93.3, 89.6,flag_alabama.gif, http://www.alabama.gov/
|
4
|
+
Alaska, 626932, 30.4, 9.1, 32.5, 22.3, 5.7, 32.4, 107.0, 107.6,flag_alaska.gif,http://www.alaska.gov/
|
5
|
+
Arizona, 5130632, 26.6, 10.0, 29.5, 20.9, 13.0, 34.2, 99.7, 97.7,flag_arizona.gif,http://www.arizona.gov/
|
6
|
+
Arkansas, 2673400, 25.4, 9.8, 28.1, 22.7, 14.0, 36.0, 95.3, 92.1,flag_arkansas.gif,http://www.arkansas.gov/
|
7
|
+
California, 33871648, 27.3, 9.9, 31.6, 20.5, 10.6, 33.3, 99.3, 97.1,flag_california.gif,http://www.california.gov/
|
8
|
+
Colorado, 4301261, 25.6, 10.0, 32.6, 22.2, 9.7, 34.3, 101.4, 100.0,flag_colorado.gif,http://www.colorado.gov/
|
9
|
+
Connecticut, 3405565, 24.7, 8.0, 30.3, 23.2, 13.8, 37.4, 93.9, 90.5,flag_connecticut.gif,http://www.connecticut.gov/
|
10
|
+
Delaware, 783600, 24.8, 9.6, 30.2, 22.4, 13.0, 36.0, 94.4, 91.0,flag_delaware.gif,http://www.delaware.gov/
|
11
|
+
District of Columbia, 572059, 20.1, 12.7, 33.1, 21.9, 12.2, 34.6, 89.0, 86.1,,http://www.districtofcolumbia.gov/
|
12
|
+
Florida, 15982378, 22.8, 8.3, 28.6, 22.7, 17.6, 38.7, 95.3, 92.5,flag_florida.gif,http://www.florida.gov/
|
13
|
+
Georgia, 8186453, 26.5, 10.2, 32.4, 21.3, 9.6, 33.4, 96.8, 94.0,flag_georgia.gif,http://www.georgia.gov/
|
14
|
+
Hawaii, 1211537, 24.4, 9.5, 29.9, 22.9, 13.3, 36.2, 101.0, 99.4,flag_hawaii.gif,http://www.hawaii.gov/
|
15
|
+
Idaho, 1293953, 28.5, 10.7, 28.0, 21.5, 11.3, 33.2, 100.5, 98.5,flag_idaho.gif,http://www.idaho.gov/
|
16
|
+
Illinois, 12419293, 26.1, 9.8, 30.6, 21.5, 12.1, 34.7, 95.9, 92.9,flag_illinois.gif,http://www.illinois.gov/
|
17
|
+
Indiana, 6080485, 25.9, 10.1, 29.5, 22.1, 12.4, 35.2, 96.3, 93.3,flag_indiana.gif,http://www.indiana.gov/
|
18
|
+
Iowa, 2926324, 25.1, 10.2, 27.6, 22.2, 14.9, 36.6, 96.3, 93.4,flag_iowa.gif,http://www.iowa.gov/
|
19
|
+
Kansas, 2688418, 26.5, 10.3, 28.6, 21.4, 13.3, 35.2, 97.7, 95.0,flag_kansas.gif,http://www.kansas.gov/
|
20
|
+
Kentucky, 4041769, 24.6, 9.9, 30.0, 23.0, 12.5, 35.9, 95.6, 92.5,flag_kentucky.gif,http://www.kentucky.gov/
|
21
|
+
Louisiana, 4468976, 27.3, 10.6, 28.9, 21.6, 11.6, 34.0, 93.8, 90.1,flag_louisiana.gif,http://www.louisiana.gov/
|
22
|
+
Maine, 1274923, 23.6, 8.1, 29.1, 24.8, 14.4, 38.6, 94.8, 91.7,flag_maine.gif,http://www.maine.gov/
|
23
|
+
Maryland, 5296486, 25.6, 8.5, 31.4, 23.1, 11.3, 36.0, 93.4, 89.8,flag_maryland.gif,http://www.maryland.gov/
|
24
|
+
Massachusetts, 6349097, 23.6, 9.1, 31.3, 22.4, 13.5, 36.5, 93.0, 89.5,flag_massachusetts.gif,http://www.massachusetts.gov/
|
25
|
+
Michigan, 9938444, 26.1, 9.4, 29.8, 22.4, 12.3, 35.5, 96.2, 93.2,flag_michigan.gif,http://www.michigan.gov/
|
26
|
+
Minnesota, 4919479, 26.2, 9.6, 30.4, 21.8, 12.1, 35.4, 98.1, 95.6,flag_minnesota.gif,http://www.minnesota.gov/
|
27
|
+
Mississippi, 2844658, 27.3, 10.9, 28.4, 21.4, 12.1, 33.8, 93.4, 89.6,flag_mississippi.gif,http://www.mississippi.gov/
|
28
|
+
Missouri, 5595211, 25.5, 9.6, 29.1, 22.3, 13.5, 36.1, 94.6, 91.3,flag_missouri.gif,http://www.missouri.gov/
|
29
|
+
Montana, 902195, 25.5, 9.5, 27.2, 24.4, 13.4, 37.5, 99.3, 97.2,flag_montana.gif,http://www.montana.gov/
|
30
|
+
Nebraska, 1711263, 26.3, 10.2, 28.5, 21.5, 13.6, 35.3, 97.2, 94.6,flag_nebraska.gif,http://www.nebraska.gov/
|
31
|
+
Nevada, 1998257, 25.6, 9.0, 31.5, 23.0, 11.0, 35.0, 103.9, 103.2,flag_nevada.gif,http://www.nevada.gov/
|
32
|
+
New Hampshire, 1235786, 25.0, 8.4, 30.9, 23.8, 12.0, 37.1, 96.8, 94.1,flag_newhampshire.gif,http://www.newhampshire.gov/
|
33
|
+
New Jersey, 8414350, 24.8, 8.0, 31.2, 22.7, 13.2, 36.7, 94.3, 90.9,flag_newjersey.gif,http://www.newjersey.gov/
|
34
|
+
New Mexico, 1819046, 28.0, 9.8, 28.4, 22.2, 11.7, 34.6, 96.7, 94.0,flag_newmexico.gif,http://www.newmexico.gov/
|
35
|
+
New York, 18976457, 24.7, 9.3, 30.7, 22.3, 12.9, 35.9, 93.1, 89.4,flag_newyork.gif,http://www.newyork.gov/
|
36
|
+
North Carolina, 8049313, 24.4, 10.0, 31.1, 22.5, 12.0, 35.3, 96.0, 93.3,flag_northcarolina.gif,http://www.northcarolina.gov/
|
37
|
+
North Dakota, 642200, 25.0, 11.4, 27.2, 21.6, 14.7, 36.2, 99.6, 97.8,flag_northdakota.gif,http://www.northdakota.gov/
|
38
|
+
Ohio, 11353140, 25.4, 9.3, 29.3, 22.7, 13.3, 36.2, 94.4, 91.1,flag_ohio.gif,http://www.ohio.gov/
|
39
|
+
Oklahoma, 3450654, 25.9, 10.3, 28.3, 22.3, 13.2, 35.5, 96.6, 93.8,flag_oklahoma.gif,http://www.oklahoma.gov/
|
40
|
+
Oregon, 3421399, 24.7, 9.6, 29.1, 23.7, 12.8, 36.3, 98.4, 96.2,flag_oregon.gif,http://www.oregon.gov/
|
41
|
+
Pennsylvania, 12281054, 23.8, 8.9, 28.6, 23.1, 15.6, 38.0, 93.4, 89.9,flag_pennsylvania.gif,http://www.pennsylvania.gov/
|
42
|
+
Rhode Island, 1048319, 23.6, 10.2, 29.6, 22.0, 14.5, 36.7, 92.5, 88.8,flag_rhodeisland.gif,http://www.rhodeisland.gov/
|
43
|
+
South Carolina, 4012012, 25.2, 10.2, 29.6, 23.0, 12.1, 35.4, 94.5, 91.2,flag_southcarolina.gif,http://www.southcarolina.gov/
|
44
|
+
South Dakota, 754844, 26.8, 10.3, 27.3, 21.2, 14.3, 35.6, 98.5, 96.1,flag_southdakota.gif,http://www.southdakota.gov/
|
45
|
+
Tennessee, 5689283, 24.6, 9.6, 30.2, 23.2, 12.4, 35.9, 94.9, 91.6,flag_tennessee.gif,http://www.tennessee.gov/
|
46
|
+
Texas, 20851820, 28.2, 10.5, 31.1, 20.2, 9.9, 32.3, 98.6, 96.2,flag_texas.gif,http://www.texas.gov/
|
47
|
+
Utah, 2233169, 32.2, 14.2, 28.1, 17.0, 8.5, 27.1, 100.4, 97.9,flag_utah.gif,http://www.utah.gov/
|
48
|
+
Vermont, 608827, 24.2, 9.3, 29.0, 24.8, 12.7, 37.7, 96.1, 93.3,flag_vermont.gif,http://www.vermont.gov/
|
49
|
+
Virginia, 7078515, 24.6, 9.6, 31.6, 23.0, 11.2, 35.7, 96.3, 93.7,flag_virginia.gif,http://www.virginia.gov/
|
50
|
+
Washington, 5894121, 25.7, 9.5, 30.8, 22.8, 11.2, 35.3, 99.1, 97.0,flag_washington.gif,http://www.washington.gov/
|
51
|
+
West Virginia, 1808344, 22.3, 9.5, 27.7, 25.2, 15.3, 38.9, 94.6, 91.7,flag_westvirginia.gif,http://www.west virginia.gov/
|
52
|
+
Wisconsin, 5363675, 25.5, 9.7, 29.5, 22.2, 13.1, 36.0, 97.6, 95.1,flag_wisconsin.gif,http://www.wisconsin.gov/
|
53
|
+
Wyoming, 493782, 26.1, 10.1, 28.1, 24.0, 11.7, 36.2, 101.2, 99.7,flag_wyoming.gif,http://www.wyoming.gov/
|
54
|
+
Puerto Rico, 3808610, 28.7, 11.3, 27.6, 21.3, 11.2, 32.1, 92.8, 88.4,flag_puertorico.gif,http://www.gobierno.pr/
|
@@ -0,0 +1,744 @@
|
|
1
|
+
[
|
2
|
+
{
|
3
|
+
"18 years and over": 93.4,
|
4
|
+
"Total population": 281421906.0,
|
5
|
+
"Geographic area": "United States",
|
6
|
+
"Flag": "flag_unitedstates.gif",
|
7
|
+
"45 to 64 years": 22.0,
|
8
|
+
"Website": " http://www.usa.gov/",
|
9
|
+
"Under 18 years": 25.7,
|
10
|
+
"65 years and over": 12.4,
|
11
|
+
"25 to 44 years": 30.2,
|
12
|
+
"18 to 24 years": 9.6,
|
13
|
+
"All ages": 96.3,
|
14
|
+
"Median age (years)": 35.3
|
15
|
+
},
|
16
|
+
{
|
17
|
+
"18 years and over": 89.6,
|
18
|
+
"Total population": 4447100.0,
|
19
|
+
"Geographic area": "Alabama",
|
20
|
+
"Flag": "flag_alabama.gif",
|
21
|
+
"45 to 64 years": 22.8,
|
22
|
+
"Website": " http://www.alabama.gov/",
|
23
|
+
"Under 18 years": 25.3,
|
24
|
+
"65 years and over": 13.0,
|
25
|
+
"25 to 44 years": 29.0,
|
26
|
+
"18 to 24 years": 9.9,
|
27
|
+
"All ages": 93.3,
|
28
|
+
"Median age (years)": 35.8
|
29
|
+
},
|
30
|
+
{
|
31
|
+
"18 years and over": 107.6,
|
32
|
+
"Total population": 626932.0,
|
33
|
+
"Geographic area": "Alaska",
|
34
|
+
"Flag": "flag_alaska.gif",
|
35
|
+
"45 to 64 years": 22.3,
|
36
|
+
"Website": "http://www.alaska.gov/",
|
37
|
+
"Under 18 years": 30.4,
|
38
|
+
"65 years and over": 5.7,
|
39
|
+
"25 to 44 years": 32.5,
|
40
|
+
"18 to 24 years": 9.1,
|
41
|
+
"All ages": 107.0,
|
42
|
+
"Median age (years)": 32.4
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"18 years and over": 97.7,
|
46
|
+
"Total population": 5130632.0,
|
47
|
+
"Geographic area": "Arizona",
|
48
|
+
"Flag": "flag_arizona.gif",
|
49
|
+
"45 to 64 years": 20.9,
|
50
|
+
"Website": "http://www.arizona.gov/",
|
51
|
+
"Under 18 years": 26.6,
|
52
|
+
"65 years and over": 13.0,
|
53
|
+
"25 to 44 years": 29.5,
|
54
|
+
"18 to 24 years": 10.0,
|
55
|
+
"All ages": 99.7,
|
56
|
+
"Median age (years)": 34.2
|
57
|
+
},
|
58
|
+
{
|
59
|
+
"18 years and over": 92.1,
|
60
|
+
"Total population": 2673400.0,
|
61
|
+
"Geographic area": "Arkansas",
|
62
|
+
"Flag": "flag_arkansas.gif",
|
63
|
+
"45 to 64 years": 22.7,
|
64
|
+
"Website": "http://www.arkansas.gov/",
|
65
|
+
"Under 18 years": 25.4,
|
66
|
+
"65 years and over": 14.0,
|
67
|
+
"25 to 44 years": 28.1,
|
68
|
+
"18 to 24 years": 9.8,
|
69
|
+
"All ages": 95.3,
|
70
|
+
"Median age (years)": 36.0
|
71
|
+
},
|
72
|
+
{
|
73
|
+
"18 years and over": 97.1,
|
74
|
+
"Total population": 33871648.0,
|
75
|
+
"Geographic area": "California",
|
76
|
+
"Flag": "flag_california.gif",
|
77
|
+
"45 to 64 years": 20.5,
|
78
|
+
"Website": "http://www.california.gov/",
|
79
|
+
"Under 18 years": 27.3,
|
80
|
+
"65 years and over": 10.6,
|
81
|
+
"25 to 44 years": 31.6,
|
82
|
+
"18 to 24 years": 9.9,
|
83
|
+
"All ages": 99.3,
|
84
|
+
"Median age (years)": 33.3
|
85
|
+
},
|
86
|
+
{
|
87
|
+
"18 years and over": 100.0,
|
88
|
+
"Total population": 4301261.0,
|
89
|
+
"Geographic area": "Colorado",
|
90
|
+
"Flag": "flag_colorado.gif",
|
91
|
+
"45 to 64 years": 22.2,
|
92
|
+
"Website": "http://www.colorado.gov/",
|
93
|
+
"Under 18 years": 25.6,
|
94
|
+
"65 years and over": 9.7,
|
95
|
+
"25 to 44 years": 32.6,
|
96
|
+
"18 to 24 years": 10.0,
|
97
|
+
"All ages": 101.4,
|
98
|
+
"Median age (years)": 34.3
|
99
|
+
},
|
100
|
+
{
|
101
|
+
"18 years and over": 90.5,
|
102
|
+
"Total population": 3405565.0,
|
103
|
+
"Geographic area": "Connecticut",
|
104
|
+
"Flag": "flag_connecticut.gif",
|
105
|
+
"45 to 64 years": 23.2,
|
106
|
+
"Website": "http://www.connecticut.gov/",
|
107
|
+
"Under 18 years": 24.7,
|
108
|
+
"65 years and over": 13.8,
|
109
|
+
"25 to 44 years": 30.3,
|
110
|
+
"18 to 24 years": 8.0,
|
111
|
+
"All ages": 93.9,
|
112
|
+
"Median age (years)": 37.4
|
113
|
+
},
|
114
|
+
{
|
115
|
+
"18 years and over": 91.0,
|
116
|
+
"Total population": 783600.0,
|
117
|
+
"Geographic area": "Delaware",
|
118
|
+
"Flag": "flag_delaware.gif",
|
119
|
+
"45 to 64 years": 22.4,
|
120
|
+
"Website": "http://www.delaware.gov/",
|
121
|
+
"Under 18 years": 24.8,
|
122
|
+
"65 years and over": 13.0,
|
123
|
+
"25 to 44 years": 30.2,
|
124
|
+
"18 to 24 years": 9.6,
|
125
|
+
"All ages": 94.4,
|
126
|
+
"Median age (years)": 36.0
|
127
|
+
},
|
128
|
+
{
|
129
|
+
"18 years and over": 86.1,
|
130
|
+
"Total population": 572059.0,
|
131
|
+
"Geographic area": "District of Columbia",
|
132
|
+
"Flag": null,
|
133
|
+
"45 to 64 years": 21.9,
|
134
|
+
"Website": "http://www.districtofcolumbia.gov/",
|
135
|
+
"Under 18 years": 20.1,
|
136
|
+
"65 years and over": 12.2,
|
137
|
+
"25 to 44 years": 33.1,
|
138
|
+
"18 to 24 years": 12.7,
|
139
|
+
"All ages": 89.0,
|
140
|
+
"Median age (years)": 34.6
|
141
|
+
},
|
142
|
+
{
|
143
|
+
"18 years and over": 92.5,
|
144
|
+
"Total population": 15982378.0,
|
145
|
+
"Geographic area": "Florida",
|
146
|
+
"Flag": "flag_florida.gif",
|
147
|
+
"45 to 64 years": 22.7,
|
148
|
+
"Website": "http://www.florida.gov/",
|
149
|
+
"Under 18 years": 22.8,
|
150
|
+
"65 years and over": 17.6,
|
151
|
+
"25 to 44 years": 28.6,
|
152
|
+
"18 to 24 years": 8.3,
|
153
|
+
"All ages": 95.3,
|
154
|
+
"Median age (years)": 38.7
|
155
|
+
},
|
156
|
+
{
|
157
|
+
"18 years and over": 94.0,
|
158
|
+
"Total population": 8186453.0,
|
159
|
+
"Geographic area": "Georgia",
|
160
|
+
"Flag": "flag_georgia.gif",
|
161
|
+
"45 to 64 years": 21.3,
|
162
|
+
"Website": "http://www.georgia.gov/",
|
163
|
+
"Under 18 years": 26.5,
|
164
|
+
"65 years and over": 9.6,
|
165
|
+
"25 to 44 years": 32.4,
|
166
|
+
"18 to 24 years": 10.2,
|
167
|
+
"All ages": 96.8,
|
168
|
+
"Median age (years)": 33.4
|
169
|
+
},
|
170
|
+
{
|
171
|
+
"18 years and over": 99.4,
|
172
|
+
"Total population": 1211537.0,
|
173
|
+
"Geographic area": "Hawaii",
|
174
|
+
"Flag": "flag_hawaii.gif",
|
175
|
+
"45 to 64 years": 22.9,
|
176
|
+
"Website": "http://www.hawaii.gov/",
|
177
|
+
"Under 18 years": 24.4,
|
178
|
+
"65 years and over": 13.3,
|
179
|
+
"25 to 44 years": 29.9,
|
180
|
+
"18 to 24 years": 9.5,
|
181
|
+
"All ages": 101.0,
|
182
|
+
"Median age (years)": 36.2
|
183
|
+
},
|
184
|
+
{
|
185
|
+
"18 years and over": 98.5,
|
186
|
+
"Total population": 1293953.0,
|
187
|
+
"Geographic area": "Idaho",
|
188
|
+
"Flag": "flag_idaho.gif",
|
189
|
+
"45 to 64 years": 21.5,
|
190
|
+
"Website": "http://www.idaho.gov/",
|
191
|
+
"Under 18 years": 28.5,
|
192
|
+
"65 years and over": 11.3,
|
193
|
+
"25 to 44 years": 28.0,
|
194
|
+
"18 to 24 years": 10.7,
|
195
|
+
"All ages": 100.5,
|
196
|
+
"Median age (years)": 33.2
|
197
|
+
},
|
198
|
+
{
|
199
|
+
"18 years and over": 92.9,
|
200
|
+
"Total population": 12419293.0,
|
201
|
+
"Geographic area": "Illinois",
|
202
|
+
"Flag": "flag_illinois.gif",
|
203
|
+
"45 to 64 years": 21.5,
|
204
|
+
"Website": "http://www.illinois.gov/",
|
205
|
+
"Under 18 years": 26.1,
|
206
|
+
"65 years and over": 12.1,
|
207
|
+
"25 to 44 years": 30.6,
|
208
|
+
"18 to 24 years": 9.8,
|
209
|
+
"All ages": 95.9,
|
210
|
+
"Median age (years)": 34.7
|
211
|
+
},
|
212
|
+
{
|
213
|
+
"18 years and over": 93.3,
|
214
|
+
"Total population": 6080485.0,
|
215
|
+
"Geographic area": "Indiana",
|
216
|
+
"Flag": "flag_indiana.gif",
|
217
|
+
"45 to 64 years": 22.1,
|
218
|
+
"Website": "http://www.indiana.gov/",
|
219
|
+
"Under 18 years": 25.9,
|
220
|
+
"65 years and over": 12.4,
|
221
|
+
"25 to 44 years": 29.5,
|
222
|
+
"18 to 24 years": 10.1,
|
223
|
+
"All ages": 96.3,
|
224
|
+
"Median age (years)": 35.2
|
225
|
+
},
|
226
|
+
{
|
227
|
+
"18 years and over": 93.4,
|
228
|
+
"Total population": 2926324.0,
|
229
|
+
"Geographic area": "Iowa",
|
230
|
+
"Flag": "flag_iowa.gif",
|
231
|
+
"45 to 64 years": 22.2,
|
232
|
+
"Website": "http://www.iowa.gov/",
|
233
|
+
"Under 18 years": 25.1,
|
234
|
+
"65 years and over": 14.9,
|
235
|
+
"25 to 44 years": 27.6,
|
236
|
+
"18 to 24 years": 10.2,
|
237
|
+
"All ages": 96.3,
|
238
|
+
"Median age (years)": 36.6
|
239
|
+
},
|
240
|
+
{
|
241
|
+
"18 years and over": 95.0,
|
242
|
+
"Total population": 2688418.0,
|
243
|
+
"Geographic area": "Kansas",
|
244
|
+
"Flag": "flag_kansas.gif",
|
245
|
+
"45 to 64 years": 21.4,
|
246
|
+
"Website": "http://www.kansas.gov/",
|
247
|
+
"Under 18 years": 26.5,
|
248
|
+
"65 years and over": 13.3,
|
249
|
+
"25 to 44 years": 28.6,
|
250
|
+
"18 to 24 years": 10.3,
|
251
|
+
"All ages": 97.7,
|
252
|
+
"Median age (years)": 35.2
|
253
|
+
},
|
254
|
+
{
|
255
|
+
"18 years and over": 92.5,
|
256
|
+
"Total population": 4041769.0,
|
257
|
+
"Geographic area": "Kentucky",
|
258
|
+
"Flag": "flag_kentucky.gif",
|
259
|
+
"45 to 64 years": 23.0,
|
260
|
+
"Website": "http://www.kentucky.gov/",
|
261
|
+
"Under 18 years": 24.6,
|
262
|
+
"65 years and over": 12.5,
|
263
|
+
"25 to 44 years": 30.0,
|
264
|
+
"18 to 24 years": 9.9,
|
265
|
+
"All ages": 95.6,
|
266
|
+
"Median age (years)": 35.9
|
267
|
+
},
|
268
|
+
{
|
269
|
+
"18 years and over": 90.1,
|
270
|
+
"Total population": 4468976.0,
|
271
|
+
"Geographic area": "Louisiana",
|
272
|
+
"Flag": "flag_louisiana.gif",
|
273
|
+
"45 to 64 years": 21.6,
|
274
|
+
"Website": "http://www.louisiana.gov/",
|
275
|
+
"Under 18 years": 27.3,
|
276
|
+
"65 years and over": 11.6,
|
277
|
+
"25 to 44 years": 28.9,
|
278
|
+
"18 to 24 years": 10.6,
|
279
|
+
"All ages": 93.8,
|
280
|
+
"Median age (years)": 34.0
|
281
|
+
},
|
282
|
+
{
|
283
|
+
"18 years and over": 91.7,
|
284
|
+
"Total population": 1274923.0,
|
285
|
+
"Geographic area": "Maine",
|
286
|
+
"Flag": "flag_maine.gif",
|
287
|
+
"45 to 64 years": 24.8,
|
288
|
+
"Website": "http://www.maine.gov/",
|
289
|
+
"Under 18 years": 23.6,
|
290
|
+
"65 years and over": 14.4,
|
291
|
+
"25 to 44 years": 29.1,
|
292
|
+
"18 to 24 years": 8.1,
|
293
|
+
"All ages": 94.8,
|
294
|
+
"Median age (years)": 38.6
|
295
|
+
},
|
296
|
+
{
|
297
|
+
"18 years and over": 89.8,
|
298
|
+
"Total population": 5296486.0,
|
299
|
+
"Geographic area": "Maryland",
|
300
|
+
"Flag": "flag_maryland.gif",
|
301
|
+
"45 to 64 years": 23.1,
|
302
|
+
"Website": "http://www.maryland.gov/",
|
303
|
+
"Under 18 years": 25.6,
|
304
|
+
"65 years and over": 11.3,
|
305
|
+
"25 to 44 years": 31.4,
|
306
|
+
"18 to 24 years": 8.5,
|
307
|
+
"All ages": 93.4,
|
308
|
+
"Median age (years)": 36.0
|
309
|
+
},
|
310
|
+
{
|
311
|
+
"18 years and over": 89.5,
|
312
|
+
"Total population": 6349097.0,
|
313
|
+
"Geographic area": "Massachusetts",
|
314
|
+
"Flag": "flag_massachusetts.gif",
|
315
|
+
"45 to 64 years": 22.4,
|
316
|
+
"Website": "http://www.massachusetts.gov/",
|
317
|
+
"Under 18 years": 23.6,
|
318
|
+
"65 years and over": 13.5,
|
319
|
+
"25 to 44 years": 31.3,
|
320
|
+
"18 to 24 years": 9.1,
|
321
|
+
"All ages": 93.0,
|
322
|
+
"Median age (years)": 36.5
|
323
|
+
},
|
324
|
+
{
|
325
|
+
"18 years and over": 93.2,
|
326
|
+
"Total population": 9938444.0,
|
327
|
+
"Geographic area": "Michigan",
|
328
|
+
"Flag": "flag_michigan.gif",
|
329
|
+
"45 to 64 years": 22.4,
|
330
|
+
"Website": "http://www.michigan.gov/",
|
331
|
+
"Under 18 years": 26.1,
|
332
|
+
"65 years and over": 12.3,
|
333
|
+
"25 to 44 years": 29.8,
|
334
|
+
"18 to 24 years": 9.4,
|
335
|
+
"All ages": 96.2,
|
336
|
+
"Median age (years)": 35.5
|
337
|
+
},
|
338
|
+
{
|
339
|
+
"18 years and over": 95.6,
|
340
|
+
"Total population": 4919479.0,
|
341
|
+
"Geographic area": "Minnesota",
|
342
|
+
"Flag": "flag_minnesota.gif",
|
343
|
+
"45 to 64 years": 21.8,
|
344
|
+
"Website": "http://www.minnesota.gov/",
|
345
|
+
"Under 18 years": 26.2,
|
346
|
+
"65 years and over": 12.1,
|
347
|
+
"25 to 44 years": 30.4,
|
348
|
+
"18 to 24 years": 9.6,
|
349
|
+
"All ages": 98.1,
|
350
|
+
"Median age (years)": 35.4
|
351
|
+
},
|
352
|
+
{
|
353
|
+
"18 years and over": 89.6,
|
354
|
+
"Total population": 2844658.0,
|
355
|
+
"Geographic area": "Mississippi",
|
356
|
+
"Flag": "flag_mississippi.gif",
|
357
|
+
"45 to 64 years": 21.4,
|
358
|
+
"Website": "http://www.mississippi.gov/",
|
359
|
+
"Under 18 years": 27.3,
|
360
|
+
"65 years and over": 12.1,
|
361
|
+
"25 to 44 years": 28.4,
|
362
|
+
"18 to 24 years": 10.9,
|
363
|
+
"All ages": 93.4,
|
364
|
+
"Median age (years)": 33.8
|
365
|
+
},
|
366
|
+
{
|
367
|
+
"18 years and over": 91.3,
|
368
|
+
"Total population": 5595211.0,
|
369
|
+
"Geographic area": "Missouri",
|
370
|
+
"Flag": "flag_missouri.gif",
|
371
|
+
"45 to 64 years": 22.3,
|
372
|
+
"Website": "http://www.missouri.gov/",
|
373
|
+
"Under 18 years": 25.5,
|
374
|
+
"65 years and over": 13.5,
|
375
|
+
"25 to 44 years": 29.1,
|
376
|
+
"18 to 24 years": 9.6,
|
377
|
+
"All ages": 94.6,
|
378
|
+
"Median age (years)": 36.1
|
379
|
+
},
|
380
|
+
{
|
381
|
+
"18 years and over": 97.2,
|
382
|
+
"Total population": 902195.0,
|
383
|
+
"Geographic area": "Montana",
|
384
|
+
"Flag": "flag_montana.gif",
|
385
|
+
"45 to 64 years": 24.4,
|
386
|
+
"Website": "http://www.montana.gov/",
|
387
|
+
"Under 18 years": 25.5,
|
388
|
+
"65 years and over": 13.4,
|
389
|
+
"25 to 44 years": 27.2,
|
390
|
+
"18 to 24 years": 9.5,
|
391
|
+
"All ages": 99.3,
|
392
|
+
"Median age (years)": 37.5
|
393
|
+
},
|
394
|
+
{
|
395
|
+
"18 years and over": 94.6,
|
396
|
+
"Total population": 1711263.0,
|
397
|
+
"Geographic area": "Nebraska",
|
398
|
+
"Flag": "flag_nebraska.gif",
|
399
|
+
"45 to 64 years": 21.5,
|
400
|
+
"Website": "http://www.nebraska.gov/",
|
401
|
+
"Under 18 years": 26.3,
|
402
|
+
"65 years and over": 13.6,
|
403
|
+
"25 to 44 years": 28.5,
|
404
|
+
"18 to 24 years": 10.2,
|
405
|
+
"All ages": 97.2,
|
406
|
+
"Median age (years)": 35.3
|
407
|
+
},
|
408
|
+
{
|
409
|
+
"18 years and over": 103.2,
|
410
|
+
"Total population": 1998257.0,
|
411
|
+
"Geographic area": "Nevada",
|
412
|
+
"Flag": "flag_nevada.gif",
|
413
|
+
"45 to 64 years": 23.0,
|
414
|
+
"Website": "http://www.nevada.gov/",
|
415
|
+
"Under 18 years": 25.6,
|
416
|
+
"65 years and over": 11.0,
|
417
|
+
"25 to 44 years": 31.5,
|
418
|
+
"18 to 24 years": 9.0,
|
419
|
+
"All ages": 103.9,
|
420
|
+
"Median age (years)": 35.0
|
421
|
+
},
|
422
|
+
{
|
423
|
+
"18 years and over": 94.1,
|
424
|
+
"Total population": 1235786.0,
|
425
|
+
"Geographic area": "New Hampshire",
|
426
|
+
"Flag": "flag_newhampshire.gif",
|
427
|
+
"45 to 64 years": 23.8,
|
428
|
+
"Website": "http://www.newhampshire.gov/",
|
429
|
+
"Under 18 years": 25.0,
|
430
|
+
"65 years and over": 12.0,
|
431
|
+
"25 to 44 years": 30.9,
|
432
|
+
"18 to 24 years": 8.4,
|
433
|
+
"All ages": 96.8,
|
434
|
+
"Median age (years)": 37.1
|
435
|
+
},
|
436
|
+
{
|
437
|
+
"18 years and over": 90.9,
|
438
|
+
"Total population": 8414350.0,
|
439
|
+
"Geographic area": "New Jersey",
|
440
|
+
"Flag": "flag_newjersey.gif",
|
441
|
+
"45 to 64 years": 22.7,
|
442
|
+
"Website": "http://www.newjersey.gov/",
|
443
|
+
"Under 18 years": 24.8,
|
444
|
+
"65 years and over": 13.2,
|
445
|
+
"25 to 44 years": 31.2,
|
446
|
+
"18 to 24 years": 8.0,
|
447
|
+
"All ages": 94.3,
|
448
|
+
"Median age (years)": 36.7
|
449
|
+
},
|
450
|
+
{
|
451
|
+
"18 years and over": 94.0,
|
452
|
+
"Total population": 1819046.0,
|
453
|
+
"Geographic area": "New Mexico",
|
454
|
+
"Flag": "flag_newmexico.gif",
|
455
|
+
"45 to 64 years": 22.2,
|
456
|
+
"Website": "http://www.newmexico.gov/",
|
457
|
+
"Under 18 years": 28.0,
|
458
|
+
"65 years and over": 11.7,
|
459
|
+
"25 to 44 years": 28.4,
|
460
|
+
"18 to 24 years": 9.8,
|
461
|
+
"All ages": 96.7,
|
462
|
+
"Median age (years)": 34.6
|
463
|
+
},
|
464
|
+
{
|
465
|
+
"18 years and over": 89.4,
|
466
|
+
"Total population": 18976457.0,
|
467
|
+
"Geographic area": "New York",
|
468
|
+
"Flag": "flag_newyork.gif",
|
469
|
+
"45 to 64 years": 22.3,
|
470
|
+
"Website": "http://www.newyork.gov/",
|
471
|
+
"Under 18 years": 24.7,
|
472
|
+
"65 years and over": 12.9,
|
473
|
+
"25 to 44 years": 30.7,
|
474
|
+
"18 to 24 years": 9.3,
|
475
|
+
"All ages": 93.1,
|
476
|
+
"Median age (years)": 35.9
|
477
|
+
},
|
478
|
+
{
|
479
|
+
"18 years and over": 93.3,
|
480
|
+
"Total population": 8049313.0,
|
481
|
+
"Geographic area": "North Carolina",
|
482
|
+
"Flag": "flag_northcarolina.gif",
|
483
|
+
"45 to 64 years": 22.5,
|
484
|
+
"Website": "http://www.northcarolina.gov/",
|
485
|
+
"Under 18 years": 24.4,
|
486
|
+
"65 years and over": 12.0,
|
487
|
+
"25 to 44 years": 31.1,
|
488
|
+
"18 to 24 years": 10.0,
|
489
|
+
"All ages": 96.0,
|
490
|
+
"Median age (years)": 35.3
|
491
|
+
},
|
492
|
+
{
|
493
|
+
"18 years and over": 97.8,
|
494
|
+
"Total population": 642200.0,
|
495
|
+
"Geographic area": "North Dakota",
|
496
|
+
"Flag": "flag_northdakota.gif",
|
497
|
+
"45 to 64 years": 21.6,
|
498
|
+
"Website": "http://www.northdakota.gov/",
|
499
|
+
"Under 18 years": 25.0,
|
500
|
+
"65 years and over": 14.7,
|
501
|
+
"25 to 44 years": 27.2,
|
502
|
+
"18 to 24 years": 11.4,
|
503
|
+
"All ages": 99.6,
|
504
|
+
"Median age (years)": 36.2
|
505
|
+
},
|
506
|
+
{
|
507
|
+
"18 years and over": 91.1,
|
508
|
+
"Total population": 11353140.0,
|
509
|
+
"Geographic area": "Ohio",
|
510
|
+
"Flag": "flag_ohio.gif",
|
511
|
+
"45 to 64 years": 22.7,
|
512
|
+
"Website": "http://www.ohio.gov/",
|
513
|
+
"Under 18 years": 25.4,
|
514
|
+
"65 years and over": 13.3,
|
515
|
+
"25 to 44 years": 29.3,
|
516
|
+
"18 to 24 years": 9.3,
|
517
|
+
"All ages": 94.4,
|
518
|
+
"Median age (years)": 36.2
|
519
|
+
},
|
520
|
+
{
|
521
|
+
"18 years and over": 93.8,
|
522
|
+
"Total population": 3450654.0,
|
523
|
+
"Geographic area": "Oklahoma",
|
524
|
+
"Flag": "flag_oklahoma.gif",
|
525
|
+
"45 to 64 years": 22.3,
|
526
|
+
"Website": "http://www.oklahoma.gov/",
|
527
|
+
"Under 18 years": 25.9,
|
528
|
+
"65 years and over": 13.2,
|
529
|
+
"25 to 44 years": 28.3,
|
530
|
+
"18 to 24 years": 10.3,
|
531
|
+
"All ages": 96.6,
|
532
|
+
"Median age (years)": 35.5
|
533
|
+
},
|
534
|
+
{
|
535
|
+
"18 years and over": 96.2,
|
536
|
+
"Total population": 3421399.0,
|
537
|
+
"Geographic area": "Oregon",
|
538
|
+
"Flag": "flag_oregon.gif",
|
539
|
+
"45 to 64 years": 23.7,
|
540
|
+
"Website": "http://www.oregon.gov/",
|
541
|
+
"Under 18 years": 24.7,
|
542
|
+
"65 years and over": 12.8,
|
543
|
+
"25 to 44 years": 29.1,
|
544
|
+
"18 to 24 years": 9.6,
|
545
|
+
"All ages": 98.4,
|
546
|
+
"Median age (years)": 36.3
|
547
|
+
},
|
548
|
+
{
|
549
|
+
"18 years and over": 89.9,
|
550
|
+
"Total population": 12281054.0,
|
551
|
+
"Geographic area": "Pennsylvania",
|
552
|
+
"Flag": "flag_pennsylvania.gif",
|
553
|
+
"45 to 64 years": 23.1,
|
554
|
+
"Website": "http://www.pennsylvania.gov/",
|
555
|
+
"Under 18 years": 23.8,
|
556
|
+
"65 years and over": 15.6,
|
557
|
+
"25 to 44 years": 28.6,
|
558
|
+
"18 to 24 years": 8.9,
|
559
|
+
"All ages": 93.4,
|
560
|
+
"Median age (years)": 38.0
|
561
|
+
},
|
562
|
+
{
|
563
|
+
"18 years and over": 88.8,
|
564
|
+
"Total population": 1048319.0,
|
565
|
+
"Geographic area": "Rhode Island",
|
566
|
+
"Flag": "flag_rhodeisland.gif",
|
567
|
+
"45 to 64 years": 22.0,
|
568
|
+
"Website": "http://www.rhodeisland.gov/",
|
569
|
+
"Under 18 years": 23.6,
|
570
|
+
"65 years and over": 14.5,
|
571
|
+
"25 to 44 years": 29.6,
|
572
|
+
"18 to 24 years": 10.2,
|
573
|
+
"All ages": 92.5,
|
574
|
+
"Median age (years)": 36.7
|
575
|
+
},
|
576
|
+
{
|
577
|
+
"18 years and over": 91.2,
|
578
|
+
"Total population": 4012012.0,
|
579
|
+
"Geographic area": "South Carolina",
|
580
|
+
"Flag": "flag_southcarolina.gif",
|
581
|
+
"45 to 64 years": 23.0,
|
582
|
+
"Website": "http://www.southcarolina.gov/",
|
583
|
+
"Under 18 years": 25.2,
|
584
|
+
"65 years and over": 12.1,
|
585
|
+
"25 to 44 years": 29.6,
|
586
|
+
"18 to 24 years": 10.2,
|
587
|
+
"All ages": 94.5,
|
588
|
+
"Median age (years)": 35.4
|
589
|
+
},
|
590
|
+
{
|
591
|
+
"18 years and over": 96.1,
|
592
|
+
"Total population": 754844.0,
|
593
|
+
"Geographic area": "South Dakota",
|
594
|
+
"Flag": "flag_southdakota.gif",
|
595
|
+
"45 to 64 years": 21.2,
|
596
|
+
"Website": "http://www.southdakota.gov/",
|
597
|
+
"Under 18 years": 26.8,
|
598
|
+
"65 years and over": 14.3,
|
599
|
+
"25 to 44 years": 27.3,
|
600
|
+
"18 to 24 years": 10.3,
|
601
|
+
"All ages": 98.5,
|
602
|
+
"Median age (years)": 35.6
|
603
|
+
},
|
604
|
+
{
|
605
|
+
"18 years and over": 91.6,
|
606
|
+
"Total population": 5689283.0,
|
607
|
+
"Geographic area": "Tennessee",
|
608
|
+
"Flag": "flag_tennessee.gif",
|
609
|
+
"45 to 64 years": 23.2,
|
610
|
+
"Website": "http://www.tennessee.gov/",
|
611
|
+
"Under 18 years": 24.6,
|
612
|
+
"65 years and over": 12.4,
|
613
|
+
"25 to 44 years": 30.2,
|
614
|
+
"18 to 24 years": 9.6,
|
615
|
+
"All ages": 94.9,
|
616
|
+
"Median age (years)": 35.9
|
617
|
+
},
|
618
|
+
{
|
619
|
+
"18 years and over": 96.2,
|
620
|
+
"Total population": 20851820.0,
|
621
|
+
"Geographic area": "Texas",
|
622
|
+
"Flag": "flag_texas.gif",
|
623
|
+
"45 to 64 years": 20.2,
|
624
|
+
"Website": "http://www.texas.gov/",
|
625
|
+
"Under 18 years": 28.2,
|
626
|
+
"65 years and over": 9.9,
|
627
|
+
"25 to 44 years": 31.1,
|
628
|
+
"18 to 24 years": 10.5,
|
629
|
+
"All ages": 98.6,
|
630
|
+
"Median age (years)": 32.3
|
631
|
+
},
|
632
|
+
{
|
633
|
+
"18 years and over": 97.9,
|
634
|
+
"Total population": 2233169.0,
|
635
|
+
"Geographic area": "Utah",
|
636
|
+
"Flag": "flag_utah.gif",
|
637
|
+
"45 to 64 years": 17.0,
|
638
|
+
"Website": "http://www.utah.gov/",
|
639
|
+
"Under 18 years": 32.2,
|
640
|
+
"65 years and over": 8.5,
|
641
|
+
"25 to 44 years": 28.1,
|
642
|
+
"18 to 24 years": 14.2,
|
643
|
+
"All ages": 100.4,
|
644
|
+
"Median age (years)": 27.1
|
645
|
+
},
|
646
|
+
{
|
647
|
+
"18 years and over": 93.3,
|
648
|
+
"Total population": 608827.0,
|
649
|
+
"Geographic area": "Vermont",
|
650
|
+
"Flag": "flag_vermont.gif",
|
651
|
+
"45 to 64 years": 24.8,
|
652
|
+
"Website": "http://www.vermont.gov/",
|
653
|
+
"Under 18 years": 24.2,
|
654
|
+
"65 years and over": 12.7,
|
655
|
+
"25 to 44 years": 29.0,
|
656
|
+
"18 to 24 years": 9.3,
|
657
|
+
"All ages": 96.1,
|
658
|
+
"Median age (years)": 37.7
|
659
|
+
},
|
660
|
+
{
|
661
|
+
"18 years and over": 93.7,
|
662
|
+
"Total population": 7078515.0,
|
663
|
+
"Geographic area": "Virginia",
|
664
|
+
"Flag": "flag_virginia.gif",
|
665
|
+
"45 to 64 years": 23.0,
|
666
|
+
"Website": "http://www.virginia.gov/",
|
667
|
+
"Under 18 years": 24.6,
|
668
|
+
"65 years and over": 11.2,
|
669
|
+
"25 to 44 years": 31.6,
|
670
|
+
"18 to 24 years": 9.6,
|
671
|
+
"All ages": 96.3,
|
672
|
+
"Median age (years)": 35.7
|
673
|
+
},
|
674
|
+
{
|
675
|
+
"18 years and over": 97.0,
|
676
|
+
"Total population": 5894121.0,
|
677
|
+
"Geographic area": "Washington",
|
678
|
+
"Flag": "flag_washington.gif",
|
679
|
+
"45 to 64 years": 22.8,
|
680
|
+
"Website": "http://www.washington.gov/",
|
681
|
+
"Under 18 years": 25.7,
|
682
|
+
"65 years and over": 11.2,
|
683
|
+
"25 to 44 years": 30.8,
|
684
|
+
"18 to 24 years": 9.5,
|
685
|
+
"All ages": 99.1,
|
686
|
+
"Median age (years)": 35.3
|
687
|
+
},
|
688
|
+
{
|
689
|
+
"18 years and over": 91.7,
|
690
|
+
"Total population": 1808344.0,
|
691
|
+
"Geographic area": "West Virginia",
|
692
|
+
"Flag": "flag_westvirginia.gif",
|
693
|
+
"45 to 64 years": 25.2,
|
694
|
+
"Website": "http://www.west virginia.gov/",
|
695
|
+
"Under 18 years": 22.3,
|
696
|
+
"65 years and over": 15.3,
|
697
|
+
"25 to 44 years": 27.7,
|
698
|
+
"18 to 24 years": 9.5,
|
699
|
+
"All ages": 94.6,
|
700
|
+
"Median age (years)": 38.9
|
701
|
+
},
|
702
|
+
{
|
703
|
+
"18 years and over": 95.1,
|
704
|
+
"Total population": 5363675.0,
|
705
|
+
"Geographic area": "Wisconsin",
|
706
|
+
"Flag": "flag_wisconsin.gif",
|
707
|
+
"45 to 64 years": 22.2,
|
708
|
+
"Website": "http://www.wisconsin.gov/",
|
709
|
+
"Under 18 years": 25.5,
|
710
|
+
"65 years and over": 13.1,
|
711
|
+
"25 to 44 years": 29.5,
|
712
|
+
"18 to 24 years": 9.7,
|
713
|
+
"All ages": 97.6,
|
714
|
+
"Median age (years)": 36.0
|
715
|
+
},
|
716
|
+
{
|
717
|
+
"18 years and over": 99.7,
|
718
|
+
"Total population": 493782.0,
|
719
|
+
"Geographic area": "Wyoming",
|
720
|
+
"Flag": "flag_wyoming.gif",
|
721
|
+
"45 to 64 years": 24.0,
|
722
|
+
"Website": "http://www.wyoming.gov/",
|
723
|
+
"Under 18 years": 26.1,
|
724
|
+
"65 years and over": 11.7,
|
725
|
+
"25 to 44 years": 28.1,
|
726
|
+
"18 to 24 years": 10.1,
|
727
|
+
"All ages": 101.2,
|
728
|
+
"Median age (years)": 36.2
|
729
|
+
},
|
730
|
+
{
|
731
|
+
"18 years and over": 88.4,
|
732
|
+
"Total population": 3808610.0,
|
733
|
+
"Geographic area": "Puerto Rico",
|
734
|
+
"Flag": "flag_puertorico.gif",
|
735
|
+
"45 to 64 years": 21.3,
|
736
|
+
"Website": "http://www.gobierno.pr/",
|
737
|
+
"Under 18 years": 28.7,
|
738
|
+
"65 years and over": 11.2,
|
739
|
+
"25 to 44 years": 27.6,
|
740
|
+
"18 to 24 years": 11.3,
|
741
|
+
"All ages": 92.8,
|
742
|
+
"Median age (years)": 32.1
|
743
|
+
}
|
744
|
+
]
|