-
Notifications
You must be signed in to change notification settings - Fork 27
/
us-governors.xml
2253 lines (2253 loc) · 119 KB
/
us-governors.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version='1.0'?>
<us-governors>
<councilor>
<state_name>Alabama</state_name>
<state_name_slug>alabama</state_name_slug>
<state_code>AL</state_code>
<state_code_slug>al</state_code_slug>
<votesmart>27642</votesmart>
<title>governor</title>
<party>republican</party>
<name>Kay Ivey</name>
<name_slug>kay-ivey</name_slug>
<first_name>Kay</first_name>
<middle_name>null</middle_name>
<last_name>Ivey</last_name>
<name_suffix>null</name_suffix>
<goes_by>null</goes_by>
<pronunciation>KAY EYE-vee</pronunciation>
<gender>female</gender>
<ethnicity>white-american</ethnicity>
<religion>baptist</religion>
<openly_lgbtq>null</openly_lgbtq>
<date_of_birth>1944-10-15</date_of_birth>
<entered_office>2017-04-10</entered_office>
<term_end>2019-01-01</term_end>
<biography>Kay Ellen Ivey (born October 15, 1944) is an American politician and educator who is the 54th and current Governor of Alabama since April 2017. Ivey, a member of the Republican Party, served as the 38th Alabama State Treasurer from 2003 to 2011, and later became the 30th Lieutenant Governor of Alabama; she was the first Republican woman elected in this state, serving from January 2011 until April 2017.</biography>
<phone>334-242-7900</phone>
<fax>334-242-4661</fax>
<latitude>32.3773052</latitude>
<longitude>-86.3010403</longitude>
<address_complete>600 Dexter Avenue, Montgomery, AL 36130</address_complete>
<address_number>600</address_number>
<address_prefix>null</address_prefix>
<address_street>Dexter</address_street>
<address_sec_unit_type>null</address_sec_unit_type>
<address_sec_unit_num>null</address_sec_unit_num>
<address_city>Montgomery</address_city>
<address_state>AL</address_state>
<address_zipcode>36130</address_zipcode>
<address_type>Avenue</address_type>
<website>http://governor.alabama.gov</website>
<contact_page>http://governor.alabama.gov/contact</contact_page>
<facebook_url>https://www.facebook.com/KayIveyAL</facebook_url>
<twitter_handle>LtGovIvey</twitter_handle>
<twitter_url>https://twitter.com/LtGovIvey</twitter_url>
<photo_url>https://cdn.civil.services/us-governors/headshots/512x512/kay-ivey.jpg</photo_url>
</councilor>
<councilor>
<state_name>Alaska</state_name>
<state_name_slug>alaska</state_name_slug>
<state_code>AK</state_code>
<state_code_slug>ak</state_code_slug>
<votesmart>123219</votesmart>
<title>governor</title>
<party>independent</party>
<name>William Walker</name>
<name_slug>william-walker</name_slug>
<first_name>William</first_name>
<middle_name>null</middle_name>
<last_name>Walker</last_name>
<name_suffix>null</name_suffix>
<goes_by>Bill</goes_by>
<pronunciation>BIL WAH-ker</pronunciation>
<gender>male</gender>
<ethnicity>white-american</ethnicity>
<religion>christian</religion>
<openly_lgbtq>null</openly_lgbtq>
<date_of_birth>1951-04-16</date_of_birth>
<entered_office>2014-12-01</entered_office>
<term_end>2019-01-01</term_end>
<biography>William Martin "Bill" Walker (born April 16, 1951) is an American attorney and politician who is the 13th and current Governor of Alaska. He is the second native-born governor of Alaska after William A. Egan (1959–1966 and 1970–1974).</biography>
<phone>907-465-3500</phone>
<fax>407-465-3532</fax>
<latitude>27.7812652</latitude>
<longitude>-82.6321373</longitude>
<address_complete>Office of Governor Bill Walker, 3rd Floor, State Capitol, P.O Box 110001, Juneau, AK 99811</address_complete>
<address_number>null</address_number>
<address_prefix>null</address_prefix>
<address_street>of</address_street>
<address_sec_unit_type>Office</address_sec_unit_type>
<address_sec_unit_num>null</address_sec_unit_num>
<address_city>null</address_city>
<address_state>null</address_state>
<address_zipcode>null</address_zipcode>
<address_type>null</address_type>
<website>https://gov.alaska.gov</website>
<contact_page>https://gov.alaska.gov/contact/email-the-governor/</contact_page>
<facebook_url>https://www.facebook.com/Governor.BillWalker</facebook_url>
<twitter_handle>AkGovBillWalker</twitter_handle>
<twitter_url>https://twitter.com/AkGovBillWalker</twitter_url>
<photo_url>https://cdn.civil.services/us-governors/headshots/512x512/william-walker.jpg</photo_url>
</councilor>
<councilor>
<state_name>Arizona</state_name>
<state_name_slug>arizona</state_name_slug>
<state_code>AZ</state_code>
<state_code_slug>az</state_code_slug>
<votesmart>123548</votesmart>
<title>governor</title>
<party>republican</party>
<name>Douglas Ducey</name>
<name_slug>douglas-ducey</name_slug>
<first_name>Douglas</first_name>
<middle_name>Anthony</middle_name>
<last_name>Ducey</last_name>
<name_suffix>null</name_suffix>
<goes_by>Doug</goes_by>
<pronunciation>DOAG DOO-see</pronunciation>
<gender>male</gender>
<ethnicity>white-american</ethnicity>
<religion>roman-catholic</religion>
<openly_lgbtq>null</openly_lgbtq>
<date_of_birth>1964-04-09</date_of_birth>
<entered_office>2015-01-05</entered_office>
<term_end>2019-01-01</term_end>
<biography>Douglas Anthony "Doug" Ducey (born April 9, 1964) is an American businessman who is the 23rd and current governor of the U.S. State of Arizona. He is a member of the Republican Party, and was sworn in as governor on January 5, 2015. Prior to his governorship, he served as the state's 42nd treasurer. He is also the first man to serve as Arizona Governor in over 17 years.</biography>
<phone>520-628-6580</phone>
<fax>null</fax>
<latitude>33.4481208</latitude>
<longitude>-112.0992236</longitude>
<address_complete>1700 West Washington Street, Phoenix, AZ 85007</address_complete>
<address_number>1700</address_number>
<address_prefix>West</address_prefix>
<address_street>Washington</address_street>
<address_sec_unit_type>null</address_sec_unit_type>
<address_sec_unit_num>null</address_sec_unit_num>
<address_city>Phoenix</address_city>
<address_state>AZ</address_state>
<address_zipcode>85007</address_zipcode>
<address_type>Street</address_type>
<website>http://azgovernor.gov</website>
<contact_page>http://azgovernor.gov/engage/form/contact-governor-ducey</contact_page>
<facebook_url>https://www.facebook.com/dougducey</facebook_url>
<twitter_handle>dougducey</twitter_handle>
<twitter_url>https://twitter.com/dougducey</twitter_url>
<photo_url>https://cdn.civil.services/us-governors/headshots/512x512/douglas-ducey.jpg</photo_url>
</councilor>
<councilor>
<state_name>Arkansas</state_name>
<state_name_slug>arkansas</state_name_slug>
<state_code>AR</state_code>
<state_code_slug>ar</state_code_slug>
<votesmart>732</votesmart>
<title>governor</title>
<party>republican</party>
<name>Asa Hutchinson</name>
<name_slug>asa-hutchinson</name_slug>
<first_name>Asa</first_name>
<middle_name>null</middle_name>
<last_name>Hutchinson</last_name>
<name_suffix>null</name_suffix>
<goes_by>null</goes_by>
<pronunciation>AY-suh HU-chin-sun</pronunciation>
<gender>male</gender>
<ethnicity>white-american</ethnicity>
<religion>baptist</religion>
<openly_lgbtq>null</openly_lgbtq>
<date_of_birth>1950-12-03</date_of_birth>
<entered_office>2015-01-13</entered_office>
<term_end>2019-01-01</term_end>
<biography>William Asa Hutchinson II (born December 3, 1950) is an American businessman, attorney, politician who has been the 46th Governor of Arkansas since 2015. Previously he was U.S. Attorney for the Fort Smith-based Western District of Arkansas, U.S. Congressman from the Third District of Arkansas, Administrator of the U.S. Drug Enforcement Administration (DEA) and the first Undersecretary for Border & Transportation Security at the U.S. Department of Homeland Security.</biography>
<phone>501-682-2345</phone>
<fax>34.746779</fax>
<latitude>34.746779</latitude>
<longitude>-92.2912417</longitude>
<address_complete>State Capitol Room 250, 500 Woodlane Street, Little Rock, AR 72201</address_complete>
<address_number>null</address_number>
<address_prefix>null</address_prefix>
<address_street>State</address_street>
<address_sec_unit_type>null</address_sec_unit_type>
<address_sec_unit_num>null</address_sec_unit_num>
<address_city>null</address_city>
<address_state>null</address_state>
<address_zipcode>null</address_zipcode>
<address_type>null</address_type>
<website>http://governor.arkansas.gov</website>
<contact_page>http://governor.arkansas.gov/contact-info</contact_page>
<facebook_url>https://www.facebook.com/asaforarkansas</facebook_url>
<twitter_handle>AsaHutchinson</twitter_handle>
<twitter_url>https://twitter.com/AsaHutchinson</twitter_url>
<photo_url>https://cdn.civil.services/us-governors/headshots/512x512/asa-hutchinson.jpg</photo_url>
</councilor>
<councilor>
<state_name>California</state_name>
<state_name_slug>california</state_name_slug>
<state_code>CA</state_code>
<state_code_slug>ca</state_code_slug>
<votesmart>69557</votesmart>
<title>governor</title>
<party>democrat</party>
<name>Edmund Brown</name>
<name_slug>edmund-brown</name_slug>
<first_name>Edmund</first_name>
<middle_name>G.</middle_name>
<last_name>Brown</last_name>
<name_suffix>Jr.</name_suffix>
<goes_by>Jerry</goes_by>
<pronunciation>JE-ree BROWN</pronunciation>
<gender>male</gender>
<ethnicity>white-american</ethnicity>
<religion>unspecified</religion>
<openly_lgbtq>null</openly_lgbtq>
<date_of_birth>1938-04-07</date_of_birth>
<entered_office>2011-01-03</entered_office>
<term_end>2019-01-01</term_end>
<biography>Edmund Gerald "Jerry" Brown Jr. (born April 7, 1938) is an American politician and lawyer who has served as the 39th Governor of California since 2011. A member of the Democratic Party, Brown previously served as the 34th governor from 1975 to 1983, and is the longest-serving governor in California history. Prior to and following his first governorship, Brown served in numerous state, local and party positions, including three times a candidate for the Democratic nomination for President of the United States.</biography>
<phone>916-445-2841</phone>
<fax>916-558-3160</fax>
<latitude>38.5789026</latitude>
<longitude>-121.4965295</longitude>
<address_complete>State Capitol, Suite 1173, Sacramento, CA 95814</address_complete>
<address_number>null</address_number>
<address_prefix>null</address_prefix>
<address_street>State</address_street>
<address_sec_unit_type>null</address_sec_unit_type>
<address_sec_unit_num>null</address_sec_unit_num>
<address_city>null</address_city>
<address_state>null</address_state>
<address_zipcode>null</address_zipcode>
<address_type>null</address_type>
<website>http://gov.ca.gov</website>
<contact_page>https://govnews.gov.ca.gov/gov39mail/mail.php</contact_page>
<facebook_url>https://www.facebook.com/jerrybrown</facebook_url>
<twitter_handle>JerryBrownGov</twitter_handle>
<twitter_url>https://twitter.com/JerryBrownGov</twitter_url>
<photo_url>https://cdn.civil.services/us-governors/headshots/512x512/edmund-brown.jpg</photo_url>
</councilor>
<councilor>
<state_name>Colorado</state_name>
<state_name_slug>colorado</state_name_slug>
<state_code>CO</state_code>
<state_code_slug>co</state_code_slug>
<votesmart>71547</votesmart>
<title>governor</title>
<party>democrat</party>
<name>John Hickenlooper</name>
<name_slug>john-hickenlooper</name_slug>
<first_name>John</first_name>
<middle_name>null</middle_name>
<last_name>Hickenlooper</last_name>
<name_suffix>null</name_suffix>
<goes_by>null</goes_by>
<pronunciation>JOAN HIK-en-LOO-per</pronunciation>
<gender>male</gender>
<ethnicity>white-american</ethnicity>
<religion>unspecified</religion>
<openly_lgbtq>null</openly_lgbtq>
<date_of_birth>1952-02-07</date_of_birth>
<entered_office>2011-01-11</entered_office>
<term_end>2019-01-01</term_end>
<biography>John Wright Hickenlooper, Jr. (born February 7, 1952), is an American politician, and the 42nd and current Governor of Colorado, in office since 2011. He is a member of the Democratic Party. Born in Narberth, Pennsylvania, Hickenlooper is a graduate of Wesleyan University. After his career as a geologist, Hickenlooper entered a career in business and cofounded the Wynkoop Brewing Company in Denver. Hickenlooper was elected the 43rd mayor of Denver in 2003, serving two terms, until 2011.</biography>
<phone>303-866-2471</phone>
<fax>303-866-2003</fax>
<latitude>39.7393292</latitude>
<longitude>-104.9870009</longitude>
<address_complete>200 East Colfax Avenue, 136 State Capitol Building, Denver, CO 80203</address_complete>
<address_number>200</address_number>
<address_prefix>East</address_prefix>
<address_street>Colfax</address_street>
<address_sec_unit_type>null</address_sec_unit_type>
<address_sec_unit_num>null</address_sec_unit_num>
<address_city>null</address_city>
<address_state>null</address_state>
<address_zipcode>null</address_zipcode>
<address_type>Avenue</address_type>
<website>http://www.colorado.gov/governor/</website>
<contact_page>https://www.colorado.gov/governor/contact</contact_page>
<facebook_url>https://www.facebook.com/JohnHickenlooper</facebook_url>
<twitter_handle>hickforco</twitter_handle>
<twitter_url>https://twitter.com/hickforco</twitter_url>
<photo_url>https://cdn.civil.services/us-governors/headshots/512x512/john-hickenlooper.jpg</photo_url>
</councilor>
<councilor>
<state_name>Connecticut</state_name>
<state_name_slug>connecticut</state_name_slug>
<state_code>CT</state_code>
<state_code_slug>ct</state_code_slug>
<votesmart>66223</votesmart>
<title>governor</title>
<party>democrat</party>
<name>Dannel Malloy</name>
<name_slug>dannel-malloy</name_slug>
<first_name>Dannel</first_name>
<middle_name>null</middle_name>
<last_name>Malloy</last_name>
<name_suffix>null</name_suffix>
<goes_by>null</goes_by>
<pronunciation>DA-nel MA-loy</pronunciation>
<gender>male</gender>
<ethnicity>white-american</ethnicity>
<religion>unspecified</religion>
<openly_lgbtq>null</openly_lgbtq>
<date_of_birth>1955-07-21</date_of_birth>
<entered_office>2011-01-05</entered_office>
<term_end>2019-01-01</term_end>
<biography>Dannel Patrick "Dan" Malloy (born July 21, 1955) is an American politician who is the 88th and current Governor of Connecticut. A member of the Democratic Party, Malloy has served as governor since 2011. He is currently the chair of the Democratic Governors Association.</biography>
<phone>860-566-4840</phone>
<fax>860-524-7395</fax>
<latitude>41.7638385</latitude>
<longitude>-72.6863461</longitude>
<address_complete>State Capitol, 210 Capitol Ave, Hartford, CT 06106</address_complete>
<address_number>null</address_number>
<address_prefix>null</address_prefix>
<address_street>State</address_street>
<address_sec_unit_type>null</address_sec_unit_type>
<address_sec_unit_num>null</address_sec_unit_num>
<address_city>null</address_city>
<address_state>null</address_state>
<address_zipcode>null</address_zipcode>
<address_type>null</address_type>
<website>http://portal.ct.gov/governor</website>
<contact_page>http://portal.ct.gov/en/Contact-and-Help/Ask-a-Question</contact_page>
<facebook_url>https://www.facebook.com/GovMalloyOffice</facebook_url>
<twitter_handle>GovMalloyOffice</twitter_handle>
<twitter_url>https://twitter.com/GovMalloyOffice</twitter_url>
<photo_url>https://cdn.civil.services/us-governors/headshots/512x512/dannel-malloy.jpg</photo_url>
</councilor>
<councilor>
<state_name>Delaware</state_name>
<state_name_slug>delaware</state_name_slug>
<state_code>DE</state_code>
<state_code_slug>de</state_code_slug>
<votesmart>53658</votesmart>
<title>governor</title>
<party>democrat</party>
<name>John Carney</name>
<name_slug>john-carney</name_slug>
<first_name>John</first_name>
<middle_name>null</middle_name>
<last_name>Carney</last_name>
<name_suffix>null</name_suffix>
<goes_by>null</goes_by>
<pronunciation>JOAN KARR-nee</pronunciation>
<gender>male</gender>
<ethnicity>white-american</ethnicity>
<religion>roman-catholic</religion>
<openly_lgbtq>null</openly_lgbtq>
<date_of_birth>1956-05-20</date_of_birth>
<entered_office>2017-01-17</entered_office>
<term_end>2019-01-01</term_end>
<biography>John Charles Carney Jr. (born May 20, 1956) is an American politician who is the 74th and current Governor of Delaware since January 2017. A member of the Democratic Party, he served as the U.S. Representative for Delaware's at-large congressional district from 2011 to 2017 prior to his governorship. Carney was also the 24th Lieutenant Governor of Delaware from 2001 to 2009 and served as Delaware's Secretary of Finance.</biography>
<phone>302-577-4101</phone>
<fax>null</fax>
<latitude>39.743532</latitude>
<longitude>-75.5484957</longitude>
<address_complete>Carvel State Office Building, 820 North French Street, 12th Floor, Wilmington, DE 19801</address_complete>
<address_number>null</address_number>
<address_prefix>null</address_prefix>
<address_street>Carvel</address_street>
<address_sec_unit_type>null</address_sec_unit_type>
<address_sec_unit_num>null</address_sec_unit_num>
<address_city>null</address_city>
<address_state>null</address_state>
<address_zipcode>null</address_zipcode>
<address_type>null</address_type>
<website>http://governor.delaware.gov</website>
<contact_page>http://delaware.gov/help/degov-contact.shtml</contact_page>
<facebook_url>https://www.facebook.com/JohnCarneyDE</facebook_url>
<twitter_handle>johncarneyde</twitter_handle>
<twitter_url>https://twitter.com/johncarneyde</twitter_url>
<photo_url>https://cdn.civil.services/us-governors/headshots/512x512/john-carney.jpg</photo_url>
</councilor>
<councilor>
<state_name>Florida</state_name>
<state_name_slug>florida</state_name_slug>
<state_code>FL</state_code>
<state_code_slug>fl</state_code_slug>
<votesmart>124204</votesmart>
<title>governor</title>
<party>republican</party>
<name>Rick Scott</name>
<name_slug>rick-scott</name_slug>
<first_name>Rick</first_name>
<middle_name>null</middle_name>
<last_name>Scott</last_name>
<name_suffix>null</name_suffix>
<goes_by>null</goes_by>
<pronunciation>RIK SKAHT</pronunciation>
<gender>male</gender>
<ethnicity>white-american</ethnicity>
<religion>christian</religion>
<openly_lgbtq>null</openly_lgbtq>
<date_of_birth>1952-12-01</date_of_birth>
<entered_office>2011-01-04</entered_office>
<term_end>2019-01-01</term_end>
<biography>Richard Lynn "Rick" Scott (born December 1, 1952) is an American businessman and politician who has been the 45th Governor of Florida, since 2011. He is a member of the Republican Party of Florida.</biography>
<phone>850-488-7146</phone>
<fax>null</fax>
<latitude>30.437722</latitude>
<longitude>-84.2836701</longitude>
<address_complete>State of Florida, The Capitol, 400 South Monroe Street, Tallahassee, FL 32399</address_complete>
<address_number>null</address_number>
<address_prefix>null</address_prefix>
<address_street>State</address_street>
<address_sec_unit_type>null</address_sec_unit_type>
<address_sec_unit_num>null</address_sec_unit_num>
<address_city>of</address_city>
<address_state>Florida</address_state>
<address_zipcode>null</address_zipcode>
<address_type>null</address_type>
<website>http://www.flgov.com</website>
<contact_page>http://www.flgov.com/contact-governor/</contact_page>
<facebook_url>https://www.facebook.com/governorrickscott</facebook_url>
<twitter_handle>FLGovScott</twitter_handle>
<twitter_url>https://twitter.com/FLGovScott</twitter_url>
<photo_url>https://cdn.civil.services/us-governors/headshots/512x512/rick-scott.jpg</photo_url>
</councilor>
<councilor>
<state_name>Georgia</state_name>
<state_name_slug>georgia</state_name_slug>
<state_code>GA</state_code>
<state_code_slug>ga</state_code_slug>
<votesmart>26824</votesmart>
<title>governor</title>
<party>republican</party>
<name>Nathan Deal</name>
<name_slug>nathan-deal</name_slug>
<first_name>Nathan</first_name>
<middle_name>null</middle_name>
<last_name>Deal</last_name>
<name_suffix>null</name_suffix>
<goes_by>null</goes_by>
<pronunciation>NAY-then DE-al</pronunciation>
<gender>male</gender>
<ethnicity>white-american</ethnicity>
<religion>christian</religion>
<openly_lgbtq>null</openly_lgbtq>
<date_of_birth>1942-08-25</date_of_birth>
<entered_office>2011-01-10</entered_office>
<term_end>2019-01-01</term_end>
<biography>John Nathan Deal (born August 25, 1942) is an American politician who is the 82nd and current Governor of the U.S. state of Georgia since January 2011. He was elected to the U.S. House of Representatives as a Democrat in 1992, but switched to the Republican Party in 1995. On March 1, 2010, Deal announced his resignation from Congress to run for governor of Georgia.</biography>
<phone>404-656-1776</phone>
<fax>404-657-7332</fax>
<latitude>33.7489981</latitude>
<longitude>-84.3903046</longitude>
<address_complete>206 Washington Street, 111 State Capitol, Atlanta, GA 30334</address_complete>
<address_number>206</address_number>
<address_prefix>null</address_prefix>
<address_street>Washington</address_street>
<address_sec_unit_type>null</address_sec_unit_type>
<address_sec_unit_num>null</address_sec_unit_num>
<address_city>null</address_city>
<address_state>null</address_state>
<address_zipcode>null</address_zipcode>
<address_type>Street</address_type>
<website>http://gov.georgia.gov</website>
<contact_page>https://gov.georgia.gov/webform/contact-governor-domestic-form</contact_page>
<facebook_url>https://www.facebook.com/GovernorDeal</facebook_url>
<twitter_handle>GovernorDeal</twitter_handle>
<twitter_url>https://twitter.com/GovernorDeal</twitter_url>
<photo_url>https://cdn.civil.services/us-governors/headshots/512x512/nathan-deal.jpg</photo_url>
</councilor>
<councilor>
<state_name>Hawaii</state_name>
<state_name_slug>hawaii</state_name_slug>
<state_code>HI</state_code>
<state_code_slug>hi</state_code_slug>
<votesmart>3406</votesmart>
<title>governor</title>
<party>democrat</party>
<name>David Ige</name>
<name_slug>david-ige</name_slug>
<first_name>David</first_name>
<middle_name>null</middle_name>
<last_name>Ige</last_name>
<name_suffix>null</name_suffix>
<goes_by>null</goes_by>
<pronunciation>DAY-vid EE-gay</pronunciation>
<gender>male</gender>
<ethnicity>pacific-islander</ethnicity>
<religion>unspecified</religion>
<openly_lgbtq>null</openly_lgbtq>
<date_of_birth>1957-01-15</date_of_birth>
<entered_office>2014-12-01</entered_office>
<term_end>2019-01-01</term_end>
<biography>David Yutaka Ige (born January 15, 1957) is an American politician who serves as the eighth and current Governor of Hawaii, in office since 2014. A Democrat, he previously served in the Hawaii State Senate, representing the 16th district, from 1995 to 2014. In the 2014 Hawaii gubernatorial election, he won the Democratic primary by defeating incumbent Governor Neil Abercrombie with 66% of the vote.</biography>
<phone>808-586-0034</phone>
<fax>808-586-0006</fax>
<latitude>21.307764</latitude>
<longitude>-157.8594961</longitude>
<address_complete>415 South Beretania Street, Honolulu, HI 96813</address_complete>
<address_number>415</address_number>
<address_prefix>South</address_prefix>
<address_street>Beretania</address_street>
<address_sec_unit_type>null</address_sec_unit_type>
<address_sec_unit_num>null</address_sec_unit_num>
<address_city>Honolulu</address_city>
<address_state>HI</address_state>
<address_zipcode>96813</address_zipcode>
<address_type>Street</address_type>
<website>http://governor.hawaii.gov</website>
<contact_page>https://governor.hawaii.gov/contact-us/contact-the-governor/</contact_page>
<facebook_url>https://www.facebook.com/GovernorDavidIge</facebook_url>
<twitter_handle>GovHawaii</twitter_handle>
<twitter_url>https://twitter.com/GovHawaii</twitter_url>
<photo_url>https://cdn.civil.services/us-governors/headshots/512x512/david-ige.jpg</photo_url>
</councilor>
<councilor>
<state_name>Idaho</state_name>
<state_name_slug>idaho</state_name_slug>
<state_code>ID</state_code>
<state_code_slug>id</state_code_slug>
<votesmart>1679</votesmart>
<title>governor</title>
<party>republican</party>
<name>Clement Otter</name>
<name_slug>clement-otter</name_slug>
<first_name>Clement</first_name>
<middle_name>Leroy</middle_name>
<last_name>Otter</last_name>
<name_suffix>null</name_suffix>
<goes_by>Butch</goes_by>
<pronunciation>BUUCH AH-ter</pronunciation>
<gender>male</gender>
<ethnicity>white-american</ethnicity>
<religion>roman-catholic</religion>
<openly_lgbtq>null</openly_lgbtq>
<date_of_birth>1942-05-03</date_of_birth>
<entered_office>2007-01-01</entered_office>
<term_end>2019-01-01</term_end>
<biography>Clement Leroy "Butch" Otter (born May 3, 1942) is an American businessman and politician who has served as the 32nd Governor of Idaho since January 2007. He is a member of the Republican Party. Having served for 10 years, 116 days, Otter is currently the longest-serving incumbent Governor in the United States whose time in office has run consecutively.</biography>
<phone>208-334-2100</phone>
<fax>208-334-3454</fax>
<latitude>43.6174911</latitude>
<longitude>-116.2025323</longitude>
<address_complete>P.O. Box 83720, Boise, ID 83720</address_complete>
<address_number>null</address_number>
<address_prefix>null</address_prefix>
<address_street>Boise</address_street>
<address_sec_unit_type>PO. Box</address_sec_unit_type>
<address_sec_unit_num>83720</address_sec_unit_num>
<address_city>null</address_city>
<address_state>null</address_state>
<address_zipcode>null</address_zipcode>
<address_type>null</address_type>
<website>http://gov.idaho.gov/</website>
<contact_page>https://gov.idaho.gov/ourgov/contact.html</contact_page>
<facebook_url>https://www.facebook.com/Governor-C-L-Butch-Otter-292986829831/</facebook_url>
<twitter_handle>butchotter</twitter_handle>
<twitter_url>https://twitter.com/butchotter</twitter_url>
<photo_url>https://cdn.civil.services/us-governors/headshots/512x512/clement-otter.jpg</photo_url>
</councilor>
<councilor>
<state_name>Illinois</state_name>
<state_name_slug>illinois</state_name_slug>
<state_code>IL</state_code>
<state_code_slug>il</state_code_slug>
<votesmart>147492</votesmart>
<title>governor</title>
<party>republican</party>
<name>Bruce Rauner</name>
<name_slug>bruce-rauner</name_slug>
<first_name>Bruce</first_name>
<middle_name>null</middle_name>
<last_name>Rauner</last_name>
<name_suffix>null</name_suffix>
<goes_by>null</goes_by>
<pronunciation>BROOS ROW-ner</pronunciation>
<gender>male</gender>
<ethnicity>white-american</ethnicity>
<religion>unspecified</religion>
<openly_lgbtq>null</openly_lgbtq>
<date_of_birth>1957-01-12</date_of_birth>
<entered_office>2015-01-12</entered_office>
<term_end>2019-01-01</term_end>
<biography>Bruce Vincent Rauner (born February 18, 1957) is an American businessman, philanthropist, and politician. He is the 42nd and current Governor of Illinois, serving since January 12, 2015. Prior to his election, he was the Chairman of R8 Capital Partners and Chairman of the private equity firm GTCR, based in Chicago.</biography>
<phone>312-814-2121</phone>
<fax>null</fax>
<latitude>39.7984385</latitude>
<longitude>-89.6573079</longitude>
<address_complete>207 State House, Springfield, IL 62706</address_complete>
<address_number>207</address_number>
<address_prefix>null</address_prefix>
<address_street>State House</address_street>
<address_sec_unit_type>null</address_sec_unit_type>
<address_sec_unit_num>null</address_sec_unit_num>
<address_city>Springfield</address_city>
<address_state>IL</address_state>
<address_zipcode>62706</address_zipcode>
<address_type>null</address_type>
<website>https://www.illinois.gov/gov/pages/default.aspx</website>
<contact_page>https://www.illinois.gov/gov/contactus/Pages/default.aspx</contact_page>
<facebook_url>https://www.facebook.com/GovRauner</facebook_url>
<twitter_handle>GovRauner</twitter_handle>
<twitter_url>https://twitter.com/GovRauner</twitter_url>
<photo_url>https://cdn.civil.services/us-governors/headshots/512x512/bruce-rauner.jpg</photo_url>
</councilor>
<councilor>
<state_name>Indiana</state_name>
<state_name_slug>indiana</state_name_slug>
<state_code>IN</state_code>
<state_code_slug>in</state_code_slug>
<votesmart>34349</votesmart>
<title>governor</title>
<party>republican</party>
<name>Eric Holcomb</name>
<name_slug>eric-holcomb</name_slug>
<first_name>Eric</first_name>
<middle_name>Joseph</middle_name>
<last_name>Holcomb</last_name>
<name_suffix>null</name_suffix>
<goes_by>null</goes_by>
<pronunciation>E-rik HAWL-koam</pronunciation>
<gender>male</gender>
<ethnicity>white-american</ethnicity>
<religion>church-of-god</religion>
<openly_lgbtq>null</openly_lgbtq>
<date_of_birth>1968-05-02</date_of_birth>
<entered_office>2017-01-09</entered_office>
<term_end>2019-01-01</term_end>
<biography>Eric Joseph Holcomb (born May 2, 1968) is an American politician who serves as the 51st and current Governor of Indiana since January 2017. Prior to his election to the governorship, he was also the 51st Lieutenant Governor of Indiana under Governor Mike Pence, now the 48th and current Vice President of the United States.</biography>
<phone>317-232-4567</phone>
<fax>317-232-3443</fax>
<latitude>39.7984385</latitude>
<longitude>-89.6573079</longitude>
<address_complete>State House, Room 206 Indianapolis, IN 46204</address_complete>
<address_number>null</address_number>
<address_prefix>null</address_prefix>
<address_street>State</address_street>
<address_sec_unit_type>null</address_sec_unit_type>
<address_sec_unit_num>null</address_sec_unit_num>
<address_city>null</address_city>
<address_state>null</address_state>
<address_zipcode>null</address_zipcode>
<address_type>null</address_type>
<website>http://www.in.gov/gov/</website>
<contact_page>http://www.in.gov/core/help.html</contact_page>
<facebook_url>https://www.facebook.com/GovHolcomb</facebook_url>
<twitter_handle>GovHolcomb</twitter_handle>
<twitter_url>https://twitter.com/GovHolcomb</twitter_url>
<photo_url>https://cdn.civil.services/us-governors/headshots/512x512/eric-holcomb.jpg</photo_url>
</councilor>
<councilor>
<state_name>Iowa</state_name>
<state_name_slug>iowa</state_name_slug>
<state_code>IA</state_code>
<state_code_slug>ia</state_code_slug>
<votesmart>103324</votesmart>
<title>governor</title>
<party>republican</party>
<name>Kimberly Reynolds</name>
<name_slug>kimberly-reynolds</name_slug>
<first_name>Kimberly</first_name>
<middle_name>Kay</middle_name>
<last_name>Reynolds</last_name>
<name_suffix>null</name_suffix>
<goes_by>Kim</goes_by>
<pronunciation>KIM RE-neldz</pronunciation>
<gender>female</gender>
<ethnicity>white-american</ethnicity>
<religion>unspecified</religion>
<openly_lgbtq>null</openly_lgbtq>
<date_of_birth>1959-08-04</date_of_birth>
<entered_office>2017-05-24</entered_office>
<term_end>2019-01-01</term_end>
<biography>Kimberly Kay Reynold is an American politician serving as the 43rd and current Governor of Iowa since 2017. A Republican, she previously served as the Lieutenant Governor of Iowa from 2011 to 2017 and assumed the governorship when incumbent Governor Terry Branstad became the United States Ambassador to China. Reynolds is the first female Governor of Iowa.</biography>
<phone>515-281-5211</phone>
<fax>null</fax>
<latitude>41.5912077</latitude>
<longitude>-93.6059486</longitude>
<address_complete>1007 East Grand Ave., Des Moines, IA 50319</address_complete>
<address_number>1007</address_number>
<address_prefix>East</address_prefix>
<address_street>Grand</address_street>
<address_sec_unit_type>null</address_sec_unit_type>
<address_sec_unit_num>null</address_sec_unit_num>
<address_city>Des Moines</address_city>
<address_state>IA</address_state>
<address_zipcode>50319</address_zipcode>
<address_type>Ave</address_type>
<website>https://governor.iowa.gov</website>
<contact_page>https://governor.iowa.gov/contact</contact_page>
<facebook_url>https://www.facebook.com/IAGovernor</facebook_url>
<twitter_handle>kimreynoldsia</twitter_handle>
<twitter_url>https://twitter.com/kimreynoldsia</twitter_url>
<photo_url>https://cdn.civil.services/us-governors/headshots/512x512/kimberly-reynolds.jpg</photo_url>
</councilor>
<councilor>
<state_name>Kansas</state_name>
<state_name_slug>kansas</state_name_slug>
<state_code>KS</state_code>
<state_code_slug>ks</state_code_slug>
<votesmart>34449</votesmart>
<title>governor</title>
<party>republican</party>
<name>Jeffrey Colyer</name>
<name_slug>jeffrey-colyer</name_slug>
<first_name>Jeffrey</first_name>
<middle_name>William</middle_name>
<last_name>Colyer</last_name>
<name_suffix>null</name_suffix>
<goes_by>Jeff</goes_by>
<pronunciation>JEF KAWL-ee-er</pronunciation>
<gender>male</gender>
<ethnicity>white-american</ethnicity>
<religion>unspecified</religion>
<openly_lgbtq>null</openly_lgbtq>
<date_of_birth>1960-06-03</date_of_birth>
<entered_office>2018-01-31</entered_office>
<term_end>2019-01-01</term_end>
<biography>Jeffrey William Colyer (born June 3, 1960) is an American surgeon and politician who has served as the 47th Governor of Kansas since 2018. A member of the Republican Party, he previously served as the 49th Lieutenant Governor of Kansas from 2011 until 2018, as a member of the Kansas Senate from 2009 to 2011, and in the Kansas House of Representatives from 2007 to 2009.</biography>
<phone>785-296-3232</phone>
<fax>null</fax>
<latitude>39.0481528</latitude>
<longitude>-95.6803429</longitude>
<address_complete>300 Southwest, 10th Avenue, Suite 241S, Topeka, KS 66612</address_complete>
<address_number>300</address_number>
<address_prefix>Southwest</address_prefix>
<address_street>10th</address_street>
<address_sec_unit_type>Suite</address_sec_unit_type>
<address_sec_unit_num>241S</address_sec_unit_num>
<address_city>Topeka</address_city>
<address_state>KS</address_state>
<address_zipcode>66612</address_zipcode>
<address_type>Avenue</address_type>
<website>https://governor.kansas.gov/</website>
<contact_page>https://governor.kansas.gov/contact/contact-the-governor/</contact_page>
<facebook_url>https://www.facebook.com/DrJeffColyer/</facebook_url>
<twitter_handle>drjeffcolyer</twitter_handle>
<twitter_url>https://twitter.com/drjeffcolyer</twitter_url>
<photo_url>https://cdn.civil.services/us-governors/headshots/512x512/jeffrey-colyer.jpg</photo_url>
</councilor>
<councilor>
<state_name>Kentucky</state_name>
<state_name_slug>kentucky</state_name_slug>
<state_code>KY</state_code>
<state_code_slug>ky</state_code_slug>
<votesmart>146094</votesmart>
<title>governor</title>
<party>republican</party>
<name>Matthew Bevin</name>
<name_slug>matthew-bevin</name_slug>
<first_name>Matthew</first_name>
<middle_name>Griswold</middle_name>
<last_name>Bevin</last_name>
<name_suffix>null</name_suffix>
<goes_by>Matt</goes_by>
<pronunciation>MAT BE-vin</pronunciation>
<gender>male</gender>
<ethnicity>white-american</ethnicity>
<religion>christian</religion>
<openly_lgbtq>null</openly_lgbtq>
<date_of_birth>1967-01-09</date_of_birth>
<entered_office>2015-12-08</entered_office>
<term_end>2019-01-01</term_end>
<biography>Matthew Griswold "Matt" Bevin (born January 9, 1967) is an American businessman and politician who currently serves as the 62nd Governor of Kentucky. He is the third Republican elected Governor of Kentucky since World War II, after Ernie Fletcher (2003–2007) and Louie B. Nunn (1967–1971).</biography>
<phone>502-564-2611</phone>
<fax>502-564-2517</fax>
<latitude>38.1867792</latitude>
<longitude>-84.877415</longitude>
<address_complete>700 Capitol Avenue, Suite 100, Frankfort, KY 40601</address_complete>
<address_number>700</address_number>
<address_prefix>null</address_prefix>
<address_street>Capitol</address_street>
<address_sec_unit_type>Suite</address_sec_unit_type>
<address_sec_unit_num>100</address_sec_unit_num>
<address_city>Frankfort</address_city>
<address_state>KY</address_state>
<address_zipcode>40601</address_zipcode>
<address_type>Avenue</address_type>
<website>http://governor.ky.gov</website>
<contact_page>http://governor.ky.gov/pages/contact.aspx</contact_page>
<facebook_url>https://www.facebook.com/GovMattBevin</facebook_url>
<twitter_handle>GovMattBevin</twitter_handle>
<twitter_url>https://twitter.com/GovMattBevin</twitter_url>
<photo_url>https://cdn.civil.services/us-governors/headshots/512x512/matthew-bevin.jpg</photo_url>
</councilor>
<councilor>
<state_name>Louisiana</state_name>
<state_name_slug>louisiana</state_name_slug>
<state_code>LA</state_code>
<state_code_slug>la</state_code_slug>
<votesmart>72012</votesmart>
<title>governor</title>
<party>democrat</party>
<name>John Edwards</name>
<name_slug>john-edwards</name_slug>
<first_name>John</first_name>
<middle_name>Bel</middle_name>
<last_name>Edwards</last_name>
<name_suffix>null</name_suffix>
<goes_by>null</goes_by>
<pronunciation>JOAN ED-werdz</pronunciation>
<gender>male</gender>
<ethnicity>white-american</ethnicity>
<religion>unspecified</religion>
<openly_lgbtq>null</openly_lgbtq>
<date_of_birth>1966-09-16</date_of_birth>
<entered_office>2016-01-11</entered_office>
<term_end>2019-01-01</term_end>
<biography>John Bel Edwards (born September 16, 1966) is an American politician and lawyer who is the 56th and current Governor of Louisiana, in office since January 11, 2016. He was previously the Minority Leader of the Louisiana House of Representatives and represented the 72nd District for two terms. He left the state legislature to run for governor in 2015.</biography>
<phone>623-773-7328</phone>
<fax>null</fax>
<latitude>33.5766177</latitude>
<longitude>-112.242531</longitude>
<address_complete>8401 West Monroe Street, Peoria, AZ 85345</address_complete>
<address_number>8401</address_number>
<address_prefix>West</address_prefix>
<address_street>Monroe</address_street>
<address_sec_unit_type>null</address_sec_unit_type>
<address_sec_unit_num>null</address_sec_unit_num>
<address_city>Peoria</address_city>
<address_state>AZ</address_state>
<address_zipcode>85345</address_zipcode>
<address_type>Street</address_type>
<website>http://gov.louisiana.gov/</website>
<contact_page>http://gov.louisiana.gov/page/contact</contact_page>
<facebook_url>https://www.facebook.com/LouisianaGov</facebook_url>
<twitter_handle>louisianagov</twitter_handle>
<twitter_url>https://twitter.com/louisianagov</twitter_url>
<photo_url>https://cdn.civil.services/us-governors/headshots/512x512/john-edwards.jpg</photo_url>
</councilor>
<councilor>
<state_name>Maine</state_name>
<state_name_slug>maine</state_name_slug>
<state_code>ME</state_code>
<state_code_slug>me</state_code_slug>
<votesmart>120907</votesmart>
<title>governor</title>
<party>republican</party>
<name>Paul LePage</name>
<name_slug>paul-lepage</name_slug>
<first_name>Paul</first_name>
<middle_name>Richard</middle_name>
<last_name>LePage</last_name>
<name_suffix>null</name_suffix>
<goes_by>null</goes_by>
<pronunciation>PA-ul LEE-payj</pronunciation>
<gender>male</gender>
<ethnicity>white-american</ethnicity>
<religion>unspecified</religion>
<openly_lgbtq>null</openly_lgbtq>
<date_of_birth>1948-10-09</date_of_birth>
<entered_office>2011-01-05</entered_office>
<term_end>2019-01-01</term_end>
<biography>Paul Richard LePage (born October 9, 1948) is an American businessman and Republican Party politician who is currently the 74th Governor of Maine. Born in Lewiston, LePage grew up with seventeen siblings. After some initial difficulty entering college due to speaking French as his first language, he succeeded in obtaining a Bachelor of Science in business administration in finance and accounting from Husson College, later earning a Master of Business Administration from the University of Maine.</biography>
<phone>207-287-3531</phone>
<fax>207-287-1034</fax>
<latitude>44.3044824</latitude>
<longitude>-69.7835823</longitude>
<address_complete>Office of the Governor, Number 1, State House Station, Augusta, ME 04333</address_complete>
<address_number>null</address_number>
<address_prefix>null</address_prefix>
<address_street>of</address_street>
<address_sec_unit_type>Office</address_sec_unit_type>
<address_sec_unit_num>null</address_sec_unit_num>
<address_city>null</address_city>
<address_state>null</address_state>
<address_zipcode>null</address_zipcode>
<address_type>null</address_type>
<website>http://www.maine.gov/governor/lepage/</website>
<contact_page>http://www.maine.gov/governor/lepage/citizen_services/ideas-suggestions.shtml</contact_page>
<facebook_url>https://www.facebook.com/mainesgov</facebook_url>
<twitter_handle>Governor_LePage</twitter_handle>
<twitter_url>https://twitter.com/Governor_LePage</twitter_url>
<photo_url>https://cdn.civil.services/us-governors/headshots/512x512/paul-lepage.jpg</photo_url>
</councilor>
<councilor>
<state_name>Maryland</state_name>
<state_name_slug>maryland</state_name_slug>
<state_code>MD</state_code>
<state_code_slug>md</state_code_slug>
<votesmart>147764</votesmart>
<title>governor</title>
<party>republican</party>
<name>Lawrence Hogan</name>
<name_slug>lawrence-hogan</name_slug>
<first_name>Lawrence</first_name>
<middle_name>Joseph</middle_name>
<last_name>Hogan</last_name>
<name_suffix>Jr.</name_suffix>
<goes_by>Larry</goes_by>
<pronunciation>LA-ree HOH-gen</pronunciation>
<gender>male</gender>
<ethnicity>white-american</ethnicity>
<religion>unspecified</religion>
<openly_lgbtq>null</openly_lgbtq>
<date_of_birth>1956-05-25</date_of_birth>
<entered_office>2015-01-21</entered_office>
<term_end>2019-01-01</term_end>
<biography>Lawrence Joseph "Larry" Hogan Jr. (born May 25, 1956) is an American politician who currently serves as the 62nd Governor of Maryland, in office since January 2015. He is only the second Republican governor in Maryland in nearly 50 years, and the first Maryland governor from Anne Arundel County to be elected in over 100 years.</biography>
<phone>410-974-3901</phone>
<fax>null</fax>
<latitude>38.9788597</latitude>
<longitude>-76.4932177</longitude>
<address_complete>100 State Circle, Annapolis, MD 21401</address_complete>
<address_number>100</address_number>
<address_prefix>null</address_prefix>
<address_street>State</address_street>
<address_sec_unit_type>null</address_sec_unit_type>
<address_sec_unit_num>null</address_sec_unit_num>
<address_city>Annapolis</address_city>
<address_state>MD</address_state>
<address_zipcode>21401</address_zipcode>
<address_type>Circle</address_type>
<website>http://governor.maryland.gov/</website>
<contact_page>http://governor.maryland.gov/mail/default.asp</contact_page>
<facebook_url>https://www.facebook.com/larryhoganmd</facebook_url>
<twitter_handle>LarryHogan</twitter_handle>
<twitter_url>https://twitter.com/LarryHogan</twitter_url>
<photo_url>https://cdn.civil.services/us-governors/headshots/512x512/lawrence-hogan.jpg</photo_url>
</councilor>
<councilor>
<state_name>Massachusetts</state_name>
<state_name_slug>massachusetts</state_name_slug>
<state_code>MA</state_code>
<state_code_slug>ma</state_code_slug>
<votesmart>124824</votesmart>
<title>governor</title>
<party>republican</party>
<name>Charles Baker</name>
<name_slug>charles-baker</name_slug>
<first_name>Charles</first_name>
<middle_name>Duane</middle_name>
<last_name>Baker</last_name>
<name_suffix>Jr.</name_suffix>
<goes_by>Charlie</goes_by>
<pronunciation>CHARR-lee BAY-ker</pronunciation>
<gender>male</gender>
<ethnicity>white-american</ethnicity>
<religion>protestant</religion>
<openly_lgbtq>null</openly_lgbtq>
<date_of_birth>1956-11-13</date_of_birth>
<entered_office>2015-01-08</entered_office>
<term_end>2019-01-01</term_end>
<biography>Charles Duane "Charlie" Baker Jr. (born November 13, 1956), is an American businessman and the 72nd and current Governor of Massachusetts, having been sworn into office on January 8, 2015. He was a cabinet official under two Massachusetts governors, spent ten years as CEO of Harvard Pilgrim Health Care and was also the Republican nominee for governor of Massachusetts in an unsuccessful 2010 bid.</biography>
<phone>617-725-4005</phone>
<fax>617-727-9725</fax>
<latitude>42.3587723</latitude>
<longitude>-71.0660006</longitude>
<address_complete>Massachusetts State House, Office of the Governor, Room 280 Boston, MA 02133</address_complete>
<address_number>null</address_number>
<address_prefix>null</address_prefix>
<address_street>Massachusetts</address_street>
<address_sec_unit_type>null</address_sec_unit_type>
<address_sec_unit_num>null</address_sec_unit_num>
<address_city>null</address_city>
<address_state>null</address_state>
<address_zipcode>null</address_zipcode>
<address_type>null</address_type>
<website>http://www.mass.gov/governor/</website>
<contact_page>http://www.mass.gov/governor/constituent-services/contact-governor-office/</contact_page>
<facebook_url>https://www.facebook.com/CharlieBakerMA</facebook_url>
<twitter_handle>massgovernor</twitter_handle>
<twitter_url>https://twitter.com/massgovernor</twitter_url>
<photo_url>https://cdn.civil.services/us-governors/headshots/512x512/charles-baker.jpg</photo_url>
</councilor>
<councilor>
<state_name>Michigan</state_name>
<state_name_slug>michigan</state_name_slug>
<state_code>MI</state_code>
<state_code_slug>mi</state_code_slug>
<votesmart>124011</votesmart>
<title>governor</title>
<party>republican</party>
<name>Richard Snyder</name>
<name_slug>richard-snyder</name_slug>
<first_name>Richard</first_name>
<middle_name>Dale</middle_name>
<last_name>Snyder</last_name>
<name_suffix>null</name_suffix>
<goes_by>Rick</goes_by>
<pronunciation>RIK SNY-der</pronunciation>
<gender>male</gender>
<ethnicity>white-american</ethnicity>
<religion>unspecified</religion>
<openly_lgbtq>null</openly_lgbtq>
<date_of_birth>1958-08-19</date_of_birth>
<entered_office>2011-01-01</entered_office>
<term_end>2019-01-01</term_end>
<biography>Richard Dale "Rick" Snyder (born August 19, 1958) is an American politician, business executive, venture capitalist, and accountant. He is the 48th and current Governor of Michigan. A member of the Republican Party, he assumed office as governor on January 1, 2011. From 2005 to 2007, Snyder served as the chairman of the board of Gateway, Inc., based in Irvine, California.</biography>
<phone>517-373-3400</phone>
<fax>517-335-6863</fax>
<latitude>42.6800039</latitude>
<longitude>-84.502194</longitude>
<address_complete>Post Office Box 30013, Lansing, MI 48909</address_complete>
<address_number>null</address_number>
<address_prefix>null</address_prefix>
<address_street>Post</address_street>
<address_sec_unit_type>Office</address_sec_unit_type>
<address_sec_unit_num>null</address_sec_unit_num>
<address_city>null</address_city>
<address_state>null</address_state>
<address_zipcode>null</address_zipcode>
<address_type>null</address_type>
<website>http://www.michigan.gov/snyder</website>
<contact_page>https://somgovweb.state.mi.us/GovRelations/ShareOpinion.aspx</contact_page>
<facebook_url>https://www.facebook.com/GovernorRickSnyder</facebook_url>
<twitter_handle>onetoughnerd</twitter_handle>
<twitter_url>https://twitter.com/onetoughnerd</twitter_url>
<photo_url>https://cdn.civil.services/us-governors/headshots/512x512/richard-snyder.jpg</photo_url>
</councilor>
<councilor>
<state_name>Minnesota</state_name>
<state_name_slug>minnesota</state_name_slug>
<state_code>MN</state_code>
<state_code_slug>mn</state_code_slug>
<votesmart>20301</votesmart>
<title>governor</title>
<party>democrat</party>